initial commit
All checks were successful
Build k8s-mgmt-pod image / Build & Push (push) Successful in 2m21s
All checks were successful
Build k8s-mgmt-pod image / Build & Push (push) Successful in 2m21s
This commit is contained in:
commit
4dbcde381f
20 changed files with 1151 additions and 0 deletions
15
k8s/secret.yaml.example
Normal file
15
k8s/secret.yaml.example
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
# 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"
|
||||
Loading…
Add table
Add a link
Reference in a new issue