blob: 653326be5f0b0190005889234818d329c7195e3d [file] [log] [blame]
puthuparambil.adityaf71e3652021-08-18 13:57:24 +01001{{/*
2# ============LICENSE_START=======================================================
Bruno Sakoto79a0a142022-04-08 06:27:06 -04003# Copyright (c) 2021-2022 Bell Canada.
puthuparambil.adityaf71e3652021-08-18 13:57:24 +01004# ================================================================================
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
8
9# http://www.apache.org/licenses/LICENSE-2.0
10
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.
16#
17# SPDX-License-Identifier: Apache-2.0
18# ============LICENSE_END=========================================================
19*/}}
20
21apiVersion: apps/v1
22kind: StatefulSet
23metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
24spec:
25 replicas: {{ .Values.replicaCount }}
26 selector: {{- include "common.selectors" . | nindent 4 }}
27 serviceName: {{ include "common.servicename" . }}
28 template:
Bruno Sakoto79a0a142022-04-08 06:27:06 -040029 metadata: {{- include "common.templateMetadata" (dict "ignoreHelmChart" true "dot" . ) | nindent 6 }}
puthuparambil.adityaf71e3652021-08-18 13:57:24 +010030 spec:
31 serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . ) }}
Renu Kumaribc6eede2021-10-08 13:03:10 -040032 {{ include "common.podSecurityContext" . | indent 10 | trim}}
Renu Kumari3507fdc2021-10-13 10:51:53 -040033 initContainers:
34 # we shouldn't need this but for unknown reason, it's fsGroup is not
35 # applied
36 - name: fix-permission
37 command:
38 - /bin/sh
39 args:
40 - -c
41 - chown -R {{ .Values.securityContext.user_id }}:{{ .Values.securityContext.group_id }} /var/lib/postgresql/data
42 image: {{ include "repositoryGenerator.image.busybox" . }}
43 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
44 securityContext:
45 runAsUser: 0
46 volumeMounts:
47 - mountPath: /var/lib/postgresql/data
48 name: {{ include "common.fullname" . }}
puthuparambil.adityaf71e3652021-08-18 13:57:24 +010049 containers:
50 - name: {{ include "common.name" . }}
51 image: {{ include "repositoryGenerator.dockerHubRepository" . }}/{{ .Values.image }}
puthuparambil.adityaf71e3652021-08-18 13:57:24 +010052 imagePullPolicy: {{ .Values.pullPolicy }}
53 ports: {{ include "common.containerPorts" . | nindent 12 }}
54 livenessProbe:
55 exec:
56 command: ["psql", "-w", "-U", "{{ .Values.config.pgRootUserName }}", "-c", "select 1"]
57 initialDelaySeconds: 5
58 periodSeconds: 60
59 readinessProbe:
60 exec:
61 command: ["psql", "-w", "-U", "{{ .Values.config.pgRootUserName }}", "-c", "select 1"]
62 initialDelaySeconds: 5
63 periodSeconds: 30
64 env:
65 - name: DB_USERNAME
66 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "user-creds" "key" "login") | indent 14 }}
67 - name: DB_PASSWORD
68 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "user-creds" "key" "password") | indent 14 }}
69 - name: POSTGRES_DB
70 value: {{ .Values.config.pgDatabase }}
71 - name: POSTGRES_USER
72 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "root-creds" "key" "login") | indent 14 }}
73 - name: POSTGRES_PASSWORD
74 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "root-creds" "key" "password") | indent 14 }}
75 - name: PGDATA
76 value: /var/lib/postgresql/data/pgdata
miroslavmasaryka7ac7f02023-03-01 14:12:26 +010077 resources: {{ include "common.resources" . | nindent 12 }}
puthuparambil.adityaf71e3652021-08-18 13:57:24 +010078 volumeMounts:
79 - name: {{ include "common.fullname" . }}-init
80 mountPath: /docker-entrypoint-initdb.d
81 - name: {{ include "common.fullname" . }}
82 mountPath: /var/lib/postgresql/data
83 volumes:
84 - name: {{ include "common.fullname" . }}-init
85 configMap:
86 name: {{ include "common.fullname" . }}-init
87 {{- with .Values.nodeSelector }}
88 nodeSelector:
89 {{- toYaml . | nindent 8 }}
90 {{- end }}
91 {{- with .Values.affinity }}
92 affinity:
93 {{- toYaml . | nindent 8 }}
94 {{- end }}
95 {{- with .Values.tolerations }}
96 tolerations:
97 {{- toYaml . | nindent 8 }}
98 {{- end }}
99 {{if and .Values.persistence.enabled (not .Values.persistence.existingClaim) }}
100 volumeClaimTemplates:
Bruno Sakoto79a0a142022-04-08 06:27:06 -0400101 - {{ include "common.PVCTemplate" (dict "dot" . "suffix" "data" "persistenceInfos" .Values.persistence "ignoreHelmChart" true) | indent 6 | trim }}
puthuparambil.adityaf71e3652021-08-18 13:57:24 +0100102{{- end }}