k8s-mgmt-pod/k8s/secret.yaml.example
Michael Trip 4dbcde381f
All checks were successful
Build k8s-mgmt-pod image / Build & Push (push) Successful in 2m21s
initial commit
2026-06-23 15:06:17 +02:00

15 lines
552 B
Text

# Example only. Do not commit a real Secret object with live credentials or keys.
# Create the real secret out-of-band with kubectl, Sealed Secrets, External Secrets,
# or your preferred secret manager.
apiVersion: v1
kind: Secret
metadata:
name: k8s-mgmt-pod-auth
type: Opaque
stringData:
ADMIN_SSH_PUBKEY: |
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIexample admin@example
USER_SSH_PUBKEY: |
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIexample user@example
ADMIN_PASSWORD: "change-this-admin-password"
USER_PASSWORD: "change-this-user-password"