Postgresql – How to add protocol prefix in Kubernetes ConfigMap
In my Kubernetes cluster, I have a ConfigMap object containing the address of my Postgres pod. It was created with the following YAML: apiVersion: v1 kind: ConfigMap metadata: name: postgres-configmap data: database_url: postgres-service Now I reference this value in one…