skip to Main Content

Setup PostgreSql configuration with Helm

I've setup a PostgreSQL database with Helm with this ConfigMap, that contains the initial script allows to create the databases and schemas I need: apiVersion: v1 kind: ConfigMap metadata: name: {{ .Values.postgres.configmap }} namespace: {{ .Release.Namespace }} data: init_script.sh: |+…

VIEW QUESTION
Back To Top
Search