# MariaDB secret # Replace CHANGEME with your actual password before applying. # Generate a good one with: openssl rand -base64 24 # # Apply with: # kubectl apply -f mariadb-secret.yaml # # NOTE: Do not commit this file with a real password to git. apiVersion: v1 kind: Secret metadata: name: mariadb-secret namespace: databases type: Opaque stringData: root-password: CHANGEME