pgadmin-configmap.yaml 493 B

1234567891011121314151617181920212223
  1. apiVersion: v1
  2. kind: ConfigMap
  3. metadata:
  4. name: pgadmin-config
  5. namespace: postgres
  6. data:
  7. servers.json: |
  8. {
  9. "Servers": {
  10. "1": {
  11. "Name": "PostgreSQL DB",
  12. "Group": "Servers",
  13. "Port": 5432,
  14. "Username": "postgres",
  15. "Host": "postgres",
  16. "SSLMode": "prefer",
  17. "MaintenanceDB": "postgres"
  18. }
  19. }
  20. }
  21. config_local.py: |
  22. SECURITY_EMAIL_VALIDATOR_ARGS={"check_deliverability": False}