2 # Copyright © 2018 Amdocs, AT&T, Bell Canada
3 # Copyright © 2020 Samsung Electronics
5 # # Licensed under the Apache License, Version 2.0 (the "License");
6 # # you may not use this file except in compliance with the License.
7 # # You may obtain a copy of the License at
9 # # http://www.apache.org/licenses/LICENSE-2.0
11 # # Unless required by applicable law or agreed to in writing, software
12 # # distributed under the License is distributed on an "AS IS" BASIS,
13 # # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # # See the License for the specific language governing permissions and
15 # # limitations under the License.
18 {{- define "common.postgres.deployment" -}}
20 {{- $pgMode := .pgMode }}
21 apiVersion: apps/v1beta1
24 name: {{ include "common.fullname" $dot }}-{{ $pgMode }}
25 namespace: {{ include "common.namespace" $dot }}
27 app: {{ include "common.name" $dot }}-{{ $pgMode }}
28 chart: {{ $dot.Chart.Name }}-{{ $dot.Chart.Version | replace "+" "_" }}
29 release: {{ include "common.release" $dot }}
30 heritage: {{ $dot.Release.Service }}
31 name: "{{ index $dot.Values "container" "name" $pgMode }}"
33 serviceName: {{ $dot.Values.service.name }}
38 app: {{ include "common.name" $dot }}-{{ $pgMode }}
39 release: {{ include "common.release" $dot }}
40 name: "{{ index $dot.Values "container" "name" $pgMode }}"
48 chown 26:26 /podroot/;
50 image: {{ $dot.Values.global.busyboxRepository | default $dot.Values.busyboxRepository }}/{{ $dot.Values.busyboxImage }}
51 imagePullPolicy: {{ $dot.Values.global.pullPolicy | default $dot.Values.pullPolicy }}
53 - name: {{ include "common.fullname" $dot }}-data
56 - name: {{ include "common.name" $dot }}
57 image: "{{ $dot.Values.postgresRepository }}/{{ $dot.Values.image }}"
58 imagePullPolicy: {{ $dot.Values.global.pullPolicy | default $dot.Values.pullPolicy }}
60 - containerPort: {{ $dot.Values.service.internalPort }}
61 name: {{ $dot.Values.service.portName }}
62 # disable liveness probe when breakpoints set in debugger
63 # so K8s doesn't restart unresponsive container
64 {{- if eq $dot.Values.liveness.enabled true }}
67 port: {{ $dot.Values.service.internalPort }}
68 initialDelaySeconds: {{ $dot.Values.liveness.initialDelaySeconds }}
69 periodSeconds: {{ $dot.Values.liveness.periodSeconds }}
70 timeoutSeconds: {{ $dot.Values.liveness.timeoutSeconds }}
74 port: {{ $dot.Values.service.internalPort }}
75 initialDelaySeconds: {{ $dot.Values.readiness.initialDelaySeconds }}
76 periodSeconds: {{ $dot.Values.readiness.periodSeconds }}
80 - name: PG_PRIMARY_USER
84 - name: PG_PRIMARY_HOST
85 value: "{{ $dot.Values.container.name.primary }}"
86 - name: PG_REPLICA_HOST
87 value: "{{ $dot.Values.container.name.replica }}"
88 - name: PG_PRIMARY_PORT
89 value: "{{ $dot.Values.service.internalPort }}"
90 - name: PG_PRIMARY_PASSWORD
91 {{- include "common.secret.envFromSecret" (dict "global" $dot "uid" (include "common.postgres.secret.primaryPasswordUID" .) "key" "password") | indent 10 }}
93 {{- include "common.secret.envFromSecret" (dict "global" $dot "uid" (include "common.postgres.secret.userCredentialsUID" .) "key" "login") | indent 10 }}
95 {{- include "common.secret.envFromSecret" (dict "global" $dot "uid" (include "common.postgres.secret.userCredentialsUID" .) "key" "password") | indent 10 }}
97 value: "{{ $dot.Values.config.pgDatabase }}"
98 - name: PG_ROOT_PASSWORD
99 {{- include "common.secret.envFromSecret" (dict "global" $dot "uid" (include "common.postgres.secret.rootPassUID" .) "key" "password") | indent 10 }}
101 - name: pool-hba-conf
102 mountPath: /pgconf/pool_hba.conf
103 subPath: pool_hba.conf
105 name: {{ include "common.fullname" $dot }}-data
107 name: {{ include "common.fullname" $dot }}-backup
110 {{ include "common.resources" $dot | indent 12 }}
111 {{- if $dot.Values.nodeSelector }}
113 {{ toYaml $dot.Values.nodeSelector | indent 10 }}
115 {{- if $dot.Values.affinity }}
117 {{ toYaml $dot.Values.affinity | indent 10 }}
123 - name: {{ include "common.fullname" $dot }}-backup
125 - name: {{ include "common.fullname" $dot }}-data
126 {{- if $dot.Values.persistence.enabled }}
127 persistentVolumeClaim:
128 claimName: {{ include "common.fullname" $dot }}-{{ $pgMode }}
132 - name: pool-hba-conf
134 name: {{ include "common.fullname" $dot }}