Krzysztof Opasiak | 56ca885 | 2020-02-04 16:07:20 +0100 | [diff] [blame] | 1 | {{/* |
| 2 | # Copyright © 2018 Amdocs, AT&T, Bell Canada |
| 3 | # Copyright © 2020 Samsung Electronics |
Bruno Sakoto | 1ed3d26 | 2021-03-05 18:11:00 -0500 | [diff] [blame] | 4 | # Modifications Copyright (C) 2021 Bell Canada. |
Krzysztof Opasiak | 56ca885 | 2020-02-04 16:07:20 +0100 | [diff] [blame] | 5 | # # |
| 6 | # # Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | # # you may not use this file except in compliance with the License. |
| 8 | # # You may obtain a copy of the License at |
| 9 | # # |
| 10 | # # http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | # # |
| 12 | # # Unless required by applicable law or agreed to in writing, software |
| 13 | # # distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | # # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | # # See the License for the specific language governing permissions and |
| 16 | # # limitations under the License. |
| 17 | */}} |
| 18 | |
| 19 | {{- define "common.postgres.deployment" -}} |
| 20 | {{- $dot := .dot }} |
| 21 | {{- $pgMode := .pgMode }} |
milaszki | bdcb416 | 2020-07-07 11:28:15 +0000 | [diff] [blame] | 22 | apiVersion: apps/v1 |
Krzysztof Opasiak | 56ca885 | 2020-02-04 16:07:20 +0100 | [diff] [blame] | 23 | kind: Deployment |
| 24 | metadata: |
| 25 | name: {{ include "common.fullname" $dot }}-{{ $pgMode }} |
| 26 | namespace: {{ include "common.namespace" $dot }} |
| 27 | labels: |
| 28 | app: {{ include "common.name" $dot }}-{{ $pgMode }} |
| 29 | chart: {{ $dot.Chart.Name }}-{{ $dot.Chart.Version | replace "+" "_" }} |
| 30 | release: {{ include "common.release" $dot }} |
| 31 | heritage: {{ $dot.Release.Service }} |
| 32 | name: "{{ index $dot.Values "container" "name" $pgMode }}" |
| 33 | spec: |
Krzysztof Opasiak | 56ca885 | 2020-02-04 16:07:20 +0100 | [diff] [blame] | 34 | replicas: 1 |
milaszki | bdcb416 | 2020-07-07 11:28:15 +0000 | [diff] [blame] | 35 | selector: |
| 36 | matchLabels: |
| 37 | app: {{ include "common.name" $dot }}-{{ $pgMode }} |
Krzysztof Opasiak | 56ca885 | 2020-02-04 16:07:20 +0100 | [diff] [blame] | 38 | template: |
| 39 | metadata: |
| 40 | labels: |
| 41 | app: {{ include "common.name" $dot }}-{{ $pgMode }} |
| 42 | release: {{ include "common.release" $dot }} |
| 43 | name: "{{ index $dot.Values "container" "name" $pgMode }}" |
| 44 | spec: |
| 45 | initContainers: |
Krzysztof Opasiak | 1754734 | 2020-03-10 23:53:31 +0100 | [diff] [blame] | 46 | - command: |
| 47 | - sh |
| 48 | args: |
| 49 | - -c |
Krzysztof Opasiak | b0a2d3b | 2020-05-25 15:38:48 +0200 | [diff] [blame] | 50 | - | |
| 51 | function prepare_password { |
| 52 | echo -n $1 | sed -e "s/'/''/g" |
| 53 | } |
| 54 | export PG_PRIMARY_PASSWORD=`prepare_password $PG_PRIMARY_PASSWORD_INPUT`; |
| 55 | export PG_PASSWORD=`prepare_password $PG_PASSWORD_INPUT`; |
| 56 | export PG_ROOT_PASSWORD=`prepare_password $PG_ROOT_PASSWORD_INPUT`; |
| 57 | cd /config-input && for PFILE in `ls -1 .`; do envsubst <${PFILE} >/config/${PFILE}; done |
Krzysztof Opasiak | 1754734 | 2020-03-10 23:53:31 +0100 | [diff] [blame] | 58 | env: |
| 59 | - name: PG_PRIMARY_USER |
| 60 | value: primaryuser |
Krzysztof Opasiak | b0a2d3b | 2020-05-25 15:38:48 +0200 | [diff] [blame] | 61 | - name: PG_PRIMARY_PASSWORD_INPUT |
Krzysztof Opasiak | c0a57f8 | 2020-03-23 15:50:13 +0100 | [diff] [blame] | 62 | {{- include "common.secret.envFromSecretFast" (dict "global" $dot "uid" (include "common.postgres.secret.primaryPasswordUID" .) "key" "password") | indent 10 }} |
Krzysztof Opasiak | 1754734 | 2020-03-10 23:53:31 +0100 | [diff] [blame] | 63 | - name: PG_USER |
Krzysztof Opasiak | c0a57f8 | 2020-03-23 15:50:13 +0100 | [diff] [blame] | 64 | {{- include "common.secret.envFromSecretFast" (dict "global" $dot "uid" (include "common.postgres.secret.userCredentialsUID" .) "key" "login") | indent 10 }} |
Krzysztof Opasiak | b0a2d3b | 2020-05-25 15:38:48 +0200 | [diff] [blame] | 65 | - name: PG_PASSWORD_INPUT |
Krzysztof Opasiak | c0a57f8 | 2020-03-23 15:50:13 +0100 | [diff] [blame] | 66 | {{- include "common.secret.envFromSecretFast" (dict "global" $dot "uid" (include "common.postgres.secret.userCredentialsUID" .) "key" "password") | indent 10 }} |
Krzysztof Opasiak | 1754734 | 2020-03-10 23:53:31 +0100 | [diff] [blame] | 67 | - name: PG_DATABASE |
| 68 | value: "{{ $dot.Values.config.pgDatabase }}" |
Krzysztof Opasiak | b0a2d3b | 2020-05-25 15:38:48 +0200 | [diff] [blame] | 69 | - name: PG_ROOT_PASSWORD_INPUT |
Krzysztof Opasiak | c0a57f8 | 2020-03-23 15:50:13 +0100 | [diff] [blame] | 70 | {{- include "common.secret.envFromSecretFast" (dict "global" $dot "uid" (include "common.postgres.secret.rootPassUID" .) "key" "password") | indent 10 }} |
Krzysztof Opasiak | 1754734 | 2020-03-10 23:53:31 +0100 | [diff] [blame] | 71 | volumeMounts: |
| 72 | - mountPath: /config-input/setup.sql |
| 73 | name: config |
| 74 | subPath: setup.sql |
| 75 | - mountPath: /config |
| 76 | name: pgconf |
Sylvain Desbureaux | 6a1ae6c | 2020-11-19 17:23:14 +0100 | [diff] [blame] | 77 | image: {{ include "repositoryGenerator.image.envsubst" $dot }} |
Krzysztof Opasiak | 1754734 | 2020-03-10 23:53:31 +0100 | [diff] [blame] | 78 | imagePullPolicy: {{ $dot.Values.global.pullPolicy | default $dot.Values.pullPolicy }} |
| 79 | name: {{ include "common.name" $dot }}-update-config |
| 80 | |
Krzysztof Opasiak | 56ca885 | 2020-02-04 16:07:20 +0100 | [diff] [blame] | 81 | - name: init-sysctl |
| 82 | command: |
| 83 | - /bin/sh |
| 84 | - -c |
| 85 | - | |
| 86 | chown 26:26 /podroot/; |
| 87 | chmod 700 /podroot/; |
Sylvain Desbureaux | 6a1ae6c | 2020-11-19 17:23:14 +0100 | [diff] [blame] | 88 | image: {{ include "repositoryGenerator.image.busybox" $dot }} |
Krzysztof Opasiak | 56ca885 | 2020-02-04 16:07:20 +0100 | [diff] [blame] | 89 | imagePullPolicy: {{ $dot.Values.global.pullPolicy | default $dot.Values.pullPolicy }} |
| 90 | volumeMounts: |
| 91 | - name: {{ include "common.fullname" $dot }}-data |
| 92 | mountPath: /podroot/ |
| 93 | containers: |
| 94 | - name: {{ include "common.name" $dot }} |
Sylvain Desbureaux | 6a1ae6c | 2020-11-19 17:23:14 +0100 | [diff] [blame] | 95 | image: {{ include "repositoryGenerator.image.postgres" $dot }} |
Krzysztof Opasiak | 56ca885 | 2020-02-04 16:07:20 +0100 | [diff] [blame] | 96 | imagePullPolicy: {{ $dot.Values.global.pullPolicy | default $dot.Values.pullPolicy }} |
| 97 | ports: |
| 98 | - containerPort: {{ $dot.Values.service.internalPort }} |
| 99 | name: {{ $dot.Values.service.portName }} |
| 100 | # disable liveness probe when breakpoints set in debugger |
| 101 | # so K8s doesn't restart unresponsive container |
| 102 | {{- if eq $dot.Values.liveness.enabled true }} |
| 103 | livenessProbe: |
| 104 | tcpSocket: |
| 105 | port: {{ $dot.Values.service.internalPort }} |
| 106 | initialDelaySeconds: {{ $dot.Values.liveness.initialDelaySeconds }} |
| 107 | periodSeconds: {{ $dot.Values.liveness.periodSeconds }} |
| 108 | timeoutSeconds: {{ $dot.Values.liveness.timeoutSeconds }} |
| 109 | {{- end }} |
| 110 | readinessProbe: |
| 111 | tcpSocket: |
| 112 | port: {{ $dot.Values.service.internalPort }} |
| 113 | initialDelaySeconds: {{ $dot.Values.readiness.initialDelaySeconds }} |
| 114 | periodSeconds: {{ $dot.Values.readiness.periodSeconds }} |
| 115 | env: |
| 116 | - name: PGHOST |
| 117 | value: /tmp |
| 118 | - name: PG_PRIMARY_USER |
| 119 | value: primaryuser |
| 120 | - name: PG_MODE |
| 121 | value: {{ $pgMode }} |
| 122 | - name: PG_PRIMARY_HOST |
| 123 | value: "{{ $dot.Values.container.name.primary }}" |
| 124 | - name: PG_REPLICA_HOST |
| 125 | value: "{{ $dot.Values.container.name.replica }}" |
| 126 | - name: PG_PRIMARY_PORT |
| 127 | value: "{{ $dot.Values.service.internalPort }}" |
| 128 | - name: PG_PRIMARY_PASSWORD |
Krzysztof Opasiak | c0a57f8 | 2020-03-23 15:50:13 +0100 | [diff] [blame] | 129 | {{- include "common.secret.envFromSecretFast" (dict "global" $dot "uid" (include "common.postgres.secret.primaryPasswordUID" .) "key" "password") | indent 10 }} |
Krzysztof Opasiak | 56ca885 | 2020-02-04 16:07:20 +0100 | [diff] [blame] | 130 | - name: PG_USER |
Krzysztof Opasiak | c0a57f8 | 2020-03-23 15:50:13 +0100 | [diff] [blame] | 131 | {{- include "common.secret.envFromSecretFast" (dict "global" $dot "uid" (include "common.postgres.secret.userCredentialsUID" .) "key" "login") | indent 10 }} |
Krzysztof Opasiak | 56ca885 | 2020-02-04 16:07:20 +0100 | [diff] [blame] | 132 | - name: PG_PASSWORD |
Krzysztof Opasiak | c0a57f8 | 2020-03-23 15:50:13 +0100 | [diff] [blame] | 133 | {{- include "common.secret.envFromSecretFast" (dict "global" $dot "uid" (include "common.postgres.secret.userCredentialsUID" .) "key" "password") | indent 10 }} |
Krzysztof Opasiak | 56ca885 | 2020-02-04 16:07:20 +0100 | [diff] [blame] | 134 | - name: PG_DATABASE |
| 135 | value: "{{ $dot.Values.config.pgDatabase }}" |
| 136 | - name: PG_ROOT_PASSWORD |
Krzysztof Opasiak | c0a57f8 | 2020-03-23 15:50:13 +0100 | [diff] [blame] | 137 | {{- include "common.secret.envFromSecretFast" (dict "global" $dot "uid" (include "common.postgres.secret.rootPassUID" .) "key" "password") | indent 10 }} |
Bruno Sakoto | 1ed3d26 | 2021-03-05 18:11:00 -0500 | [diff] [blame] | 138 | - name: PGDATA_PATH_OVERRIDE |
| 139 | value: "{{ $dot.Values.config.pgDataPath }}" |
Krzysztof Opasiak | 56ca885 | 2020-02-04 16:07:20 +0100 | [diff] [blame] | 140 | volumeMounts: |
Krzysztof Opasiak | 1754734 | 2020-03-10 23:53:31 +0100 | [diff] [blame] | 141 | - name: config |
Krzysztof Opasiak | 56ca885 | 2020-02-04 16:07:20 +0100 | [diff] [blame] | 142 | mountPath: /pgconf/pool_hba.conf |
| 143 | subPath: pool_hba.conf |
Krzysztof Opasiak | 1754734 | 2020-03-10 23:53:31 +0100 | [diff] [blame] | 144 | - name: pgconf |
| 145 | mountPath: /pgconf/setup.sql |
| 146 | subPath: setup.sql |
Krzysztof Opasiak | 56ca885 | 2020-02-04 16:07:20 +0100 | [diff] [blame] | 147 | - mountPath: /pgdata |
| 148 | name: {{ include "common.fullname" $dot }}-data |
| 149 | - mountPath: /backup |
| 150 | name: {{ include "common.fullname" $dot }}-backup |
| 151 | readOnly: true |
Sylvain Desbureaux | 335781f | 2020-09-23 10:31:50 +0200 | [diff] [blame] | 152 | resources: {{ include "common.resources" $dot | nindent 12 }} |
Krzysztof Opasiak | 56ca885 | 2020-02-04 16:07:20 +0100 | [diff] [blame] | 153 | {{- if $dot.Values.nodeSelector }} |
| 154 | nodeSelector: |
| 155 | {{ toYaml $dot.Values.nodeSelector | indent 10 }} |
| 156 | {{- end -}} |
| 157 | {{- if $dot.Values.affinity }} |
| 158 | affinity: |
| 159 | {{ toYaml $dot.Values.affinity | indent 10 }} |
| 160 | {{- end }} |
| 161 | volumes: |
| 162 | - name: localtime |
| 163 | hostPath: |
| 164 | path: /etc/localtime |
| 165 | - name: {{ include "common.fullname" $dot }}-backup |
| 166 | emptyDir: {} |
| 167 | - name: {{ include "common.fullname" $dot }}-data |
| 168 | {{- if $dot.Values.persistence.enabled }} |
| 169 | persistentVolumeClaim: |
| 170 | claimName: {{ include "common.fullname" $dot }}-{{ $pgMode }} |
| 171 | {{- else }} |
| 172 | emptyDir: {} |
| 173 | {{ end }} |
Krzysztof Opasiak | 1754734 | 2020-03-10 23:53:31 +0100 | [diff] [blame] | 174 | - name: config |
Krzysztof Opasiak | 56ca885 | 2020-02-04 16:07:20 +0100 | [diff] [blame] | 175 | configMap: |
| 176 | name: {{ include "common.fullname" $dot }} |
Krzysztof Opasiak | 1754734 | 2020-03-10 23:53:31 +0100 | [diff] [blame] | 177 | - name: pgconf |
| 178 | emptyDir: |
| 179 | medium: Memory |
| 180 | {{- end -}} |