Describe the feature request
Provide ConfigMap mounting support for external database configuration
Background
It has been discovered that configuration can only be mounted via "secret". But in fact, DATABASE_HOST and DATABASE_PORT do not fall under the category of secrets.
databaseSecrets:
- name: DATABASE_HOST
valueFrom:
secretKeyRef: ⚠️ Support configMapKeyRef
name: pgsql-host
key: domain
- name: DATABASE_PORT
valueFrom:
secretKeyRef: ⚠️ Support configMapKeyRef
name: pgsql-host
key: port
Solution suggestions
No response