apiVersion: v1
kind: Secret
metadata:
  name: proxysql-credentials
  namespace: everest
type: Opaque
stringData:
  # Admin password for the local admin interface.
  admin-pass: "changeme-admin"
  # Remote admin password — required to connect to port 6132 from outside the container.
  radmin-pass: "changeme-radmin"
  # ProxySQL monitor user password — create this user in PostgreSQL first (see configmap comment).
  monitor-pass: "changeme-monitor"
  # Application user password — this user must exist in PostgreSQL with appropriate grants.
  app-user-pass: "changeme-appuser"
  # Postgres superuser password — only needed if proxying postgres user connections.
  postgres-user-pass: "changeme-postgres"
