Merge "[AAI] Add model-loader tracing config"
[oom.git] / kubernetes / common / timescaledb / templates / statefulset.yaml
1 {{/*
2 # ============LICENSE_START=======================================================
3 #  Copyright (c) 2021-2022 Bell Canada.
4 # ================================================================================
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
21 apiVersion: apps/v1
22 kind: StatefulSet
23 metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
24 spec:
25   replicas: {{ .Values.replicaCount }}
26   selector: {{- include "common.selectors" . | nindent 4 }}
27   serviceName: {{ include "common.servicename" . }}
28   template:
29     metadata: {{- include "common.templateMetadata" (dict "ignoreHelmChart" true "dot" . ) | nindent 6 }}
30     spec:
31       serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . ) }}
32       {{ include "common.podSecurityContext" . | indent 10 | trim}}
33       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" . }}
49       containers:
50         - name: {{ include "common.name" . }}
51           image: {{ include "repositoryGenerator.dockerHubRepository" . }}/{{ .Values.image }}
52           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
77           resources: {{ include "common.resources" . | nindent 12 }}
78           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:
101     - {{ include "common.PVCTemplate" (dict "dot" . "suffix" "data" "persistenceInfos" .Values.persistence "ignoreHelmChart" true) | indent 6 | trim }}
102 {{- end }}