Quick Reference Card
One-page cheat sheet for common commands.
Get your API key
Sign in to the Securelytix portal with your company email → Generate API key → verify with the email code → copy and store the key.
Test locally (Docker)
bash · terminal
1docker run -d --name pg -e POSTGRES_USER=vault -e POSTGRES_PASSWORD=vault \2-e POSTGRES_DB=vault -p 5432:5432 postgres:153docker login -u securelytix20264docker pull securelytix2026/vault-key:1.0.55docker run -d --name securelytix-vault-key -p 8080:8080 \6-v /etc/machine-id:/host-machine-id:ro \7-e VAULT_PORT=8080 \8-e DATABASE_URL="postgresql://vault:vault@host.docker.internal:5432/vault?sslmode=disable" \9-e API_KEY="<your-api-key>" \10securelytix2026/vault-key:1.0.511curl http://localhost:8080/health
Deploy to Kubernetes
bash · terminal
1helm repo add securelytix https://charts.securelytix.tech2helm repo update34kubectl create secret docker-registry securelytix-dockerhub \5--docker-server=https://index.docker.io/v1/ \6--docker-username=securelytix2026 \7--docker-password=<YOUR_PAT_TOKEN>89helm install vault-key securelytix/vault-key \10--set secrets.apiKey="<your-api-key>" \11--set postgresql.enabled=true \12--set machineId.hostPath="/etc/machine-id" \13--set "imagePullSecrets[0].name=securelytix-dockerhub"1415kubectl port-forward svc/vault-key 8080:80801617curl http://localhost:8080/health18# Expected:19{20"status": "ok",21"timestamp": "...",22"postgres": "ok"23}
Tokenize
bash · terminal
1curl -sS -X POST "http://localhost:8080/api/v1/tokenize" \2-H "Content-Type: application/json" \3-d '{"data":{"email":"user@example.com","name":"user example"}}'
Detokenize
bash · terminal
1curl -sS -X POST "http://localhost:8080/api/v1/detokenize" \2-H "Content-Type: application/json" \3-d '{4"data": {5"email": "bujd@xhpsmhg.wiw_stx",6"name": "kngw uanitan_stx"7}8}'
Common diagnostic commands
javascript · terminal
1kubectl get pods -l app.kubernetes.io/instance=vault-key2kubectl logs -l app.kubernetes.io/instance=vault-key --tail=503kubectl describe pod <pod-name>4helm list5helm get values vault-key
Support
support.s@securelytix.tech · https://securelytix.tech