All checks were successful
Build k8s-mgmt-pod image / Build & Push (push) Successful in 2m21s
15 lines
552 B
Text
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"
|