blob: 4bb57063ad02e8763cbde2295f270262925d95e1 [file] [log] [blame]
Jakub Latusek67f4e8d2020-10-21 13:36:29 +02001{{/*
Fiachra Corcoranbe966552018-08-07 16:58:45 +01002# Copyright © 2017 Amdocs, Bell Canada
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
Jakub Latusek67f4e8d2020-10-21 13:36:29 +020015*/}}
Sylvain Desbureauxf7768e82020-03-23 16:48:20 +010016apiVersion: apps/v1
efiacor4808baa2019-03-11 23:36:05 +000017kind: StatefulSet
Sylvain Desbureauxf7768e82020-03-23 16:48:20 +010018metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
Fiachra Corcoranbe966552018-08-07 16:58:45 +010019spec:
Sylvain Desbureauxf7768e82020-03-23 16:48:20 +010020 selector: {{- include "common.selectors" . | nindent 4 }}
21 serviceName: {{ include "common.servicename" . }}
Fiachra Corcoranbe966552018-08-07 16:58:45 +010022 replicas: {{ .Values.replicaCount }}
23 template:
Sylvain Desbureauxf7768e82020-03-23 16:48:20 +010024 metadata: {{- include "common.templateMetadata" . | nindent 6 }}
Fiachra Corcoranbe966552018-08-07 16:58:45 +010025 spec:
Andreas Geisslerdc8c0542024-05-08 15:18:55 +020026 # temporarily use less restrictions
27 securityContext:
28 runAsUser: {{ .Values.securityContext.user_id }}
29 runAsGroup: {{ .Values.securityContext.group_id }}
30 fsGroup: {{ .Values.securityContext.group_id }}
efiacor2123fec2022-12-09 13:40:55 +000031 initContainers: {{ include "common.readinessCheck.waitFor" . | nindent 8 }}
econwar4d9f35f2019-04-16 08:02:13 +000032 - name: {{ include "common.name" . }}-permission-fixer
rope252f2db5c12022-01-10 14:15:16 +000033 securityContext:
34 runAsUser: 0
Sylvain Desbureaux6b096542020-11-21 22:51:24 +010035 image: {{ include "repositoryGenerator.image.busybox" . }}
econwar4d9f35f2019-04-16 08:02:13 +000036 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
efiacore62958b2019-09-27 16:54:36 +010037 command: ["chown","-Rf","1000:1001", "/opt/app/"]
efiacor2123fec2022-12-09 13:40:55 +000038 volumeMounts:
39 - name: {{ include "common.fullname" . }}-spool
40 mountPath: {{ .Values.persistence.spool.path }}
41 - name: {{ include "common.fullname" . }}-event-logs
42 mountPath: {{ .Values.persistence.event.path }}
Fiachra Corcoranbe966552018-08-07 16:58:45 +010043 containers:
44 - name: {{ include "common.name" . }}
Sylvain Desbureaux6b096542020-11-21 22:51:24 +010045 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
Fiachra Corcoranbe966552018-08-07 16:58:45 +010046 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
Sylvain Desbureauxf7768e82020-03-23 16:48:20 +010047 ports: {{ include "common.containerPorts" . | nindent 12 }}
Fiachra Corcoranbe966552018-08-07 16:58:45 +010048 {{- if eq .Values.liveness.enabled true }}
49 livenessProbe:
50 tcpSocket:
Sylvain Desbureauxf7768e82020-03-23 16:48:20 +010051 port: {{.Values.liveness.port}}
Fiachra Corcoranbe966552018-08-07 16:58:45 +010052 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
53 periodSeconds: {{ .Values.liveness.periodSeconds }}
54 {{ end -}}
55 readinessProbe:
56 tcpSocket:
Sylvain Desbureauxf7768e82020-03-23 16:48:20 +010057 port: {{.Values.readiness.port}}
Fiachra Corcoranbe966552018-08-07 16:58:45 +010058 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
59 periodSeconds: {{ .Values.readiness.periodSeconds }}
efiacor2123fec2022-12-09 13:40:55 +000060 volumeMounts:
61 - mountPath: {{ .Values.persistence.spool.path }}
62 name: {{ include "common.fullname" . }}-spool
63 - mountPath: {{ .Values.persistence.event.path }}
64 name: {{ include "common.fullname" . }}-event-logs
efiacor2123fec2022-12-09 13:40:55 +000065 - mountPath: /opt/app/datartr/etc/node.properties
66 name: {{ include "common.fullname" . }}-config
67 subPath: node.properties
68 - mountPath: /opt/app/datartr/etc/logback.xml
69 name: {{ include "common.fullname" . }}-log-conf
70 subPath: logback.xml
miroslavmasaryka7ac7f02023-03-01 14:12:26 +010071 resources: {{ include "common.resources" . | nindent 12 }}
Fiachra Corcoranbe966552018-08-07 16:58:45 +010072 {{- if .Values.nodeSelector }}
Sylvain Desbureauxf7768e82020-03-23 16:48:20 +010073 nodeSelector: {{ toYaml .Values.nodeSelector | nindent 10 }}
Fiachra Corcoranbe966552018-08-07 16:58:45 +010074 {{- end -}}
75 {{- if .Values.affinity }}
Sylvain Desbureauxf7768e82020-03-23 16:48:20 +010076 affinity: {{ toYaml .Values.affinity | nindent 10 }}
Sylvain Desbureauxe6153432021-02-04 18:26:23 +010077 {{- end }}
Andreas Geisslerbd0d31a2024-03-20 09:51:32 +010078 {{- include "common.imagePullSecrets" . | nindent 6 }}
farida azmy13388ba2021-03-17 11:33:28 +020079 serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
efiacor2123fec2022-12-09 13:40:55 +000080 volumes:
efiacoreabb6522019-04-08 09:46:09 +000081 - name: {{ include "common.fullname" . }}-config
efiacor4808baa2019-03-11 23:36:05 +000082 configMap:
efiacor2123fec2022-12-09 13:40:55 +000083 name: {{ include "common.fullname" . }}-node-props
efiacoreabb6522019-04-08 09:46:09 +000084 items:
85 - key: node.properties
86 path: node.properties
efiacor4808baa2019-03-11 23:36:05 +000087 - name: {{ include "common.fullname" . }}-log-conf
88 configMap:
89 name: {{ include "common.fullname" . }}-log
Sylvain Desbureaux60141122019-11-29 15:55:11 +010090 {{- if not .Values.persistence.enabled }}
mprzybyse1ea50d2020-01-31 10:09:02 +000091 - name: {{ include "common.fullname" . }}-event-logs
efiacor4808baa2019-03-11 23:36:05 +000092 emptyDir: {}
Sylvain Desbureauxf7768e82020-03-23 16:48:20 +010093 - name: {{ include "common.fullname" . }}-spool
efiacor7b9a0872019-08-28 21:20:22 +000094 emptyDir: {}
Sylvain Desbureaux60141122019-11-29 15:55:11 +010095 {{- end }}
96{{- if .Values.persistence.enabled }}
efiacor4808baa2019-03-11 23:36:05 +000097 volumeClaimTemplates:
Sylvain Desbureauxf7768e82020-03-23 16:48:20 +010098 - {{ include "common.PVCTemplate" (dict "dot" . "suffix" "spool" "persistenceInfos" .Values.persistence.spool) | indent 4 | trim }}
99 - {{ include "common.PVCTemplate" (dict "dot" . "suffix" "event-logs" "persistenceInfos" .Values.persistence.event) | indent 4 | trim }}
efiacore62958b2019-09-27 16:54:36 +0100100{{- end }}