# Ghost DB passwords # Replace CHANGEME values before applying. # Generate with: openssl rand -base64 24 # # Apply with: # kubectl apply -f ghost-secrets.yaml # # Or create directly without a file: # kubectl create secret generic ghost-secrets \ # --namespace ghost \ # --from-literal=ghost1-db-password='' \ # --from-literal=ghost2-db-password='' \ # --from-literal=ghost3-db-password='' # # NOTE: Do not commit this file with real passwords to git. apiVersion: v1 kind: Secret metadata: name: ghost-secrets namespace: ghost type: Opaque stringData: ghost1-db-password: CHANGEME ghost2-db-password: CHANGEME ghost3-db-password: CHANGEME