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:15
3docker login -u securelytix2026
4docker pull securelytix2026/vault-key:1.0.5
5docker 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>" \
10 securelytix2026/vault-key:1.0.5
11curl http://localhost:8080/health

Deploy to Kubernetes

bash · terminal
1helm repo add securelytix https://charts.securelytix.tech
2helm repo update
3
4kubectl create secret docker-registry securelytix-dockerhub \
5 --docker-server=https://index.docker.io/v1/ \
6 --docker-username=securelytix2026 \
7 --docker-password=<YOUR_PAT_TOKEN>
8
9helm 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"
14
15kubectl port-forward svc/vault-key 8080:8080
16
17curl http://localhost:8080/health
18# 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-key
2kubectl logs -l app.kubernetes.io/instance=vault-key --tail=50
3kubectl describe pod <pod-name>
4helm list
5helm get values vault-key

Support

support.s@securelytix.tech · https://securelytix.tech

Was this page helpful?