Jakub Latusek | 67f4e8d | 2020-10-21 13:36:29 +0200 | [diff] [blame] | 1 | {{/* |
Fiachra Corcoran | be96655 | 2018-08-07 16:58:45 +0100 | [diff] [blame] | 2 | # 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 Latusek | 67f4e8d | 2020-10-21 13:36:29 +0200 | [diff] [blame] | 15 | */}} |
Sylvain Desbureaux | f7768e8 | 2020-03-23 16:48:20 +0100 | [diff] [blame] | 16 | apiVersion: apps/v1 |
efiacor | 4808baa | 2019-03-11 23:36:05 +0000 | [diff] [blame] | 17 | kind: StatefulSet |
Sylvain Desbureaux | f7768e8 | 2020-03-23 16:48:20 +0100 | [diff] [blame] | 18 | metadata: {{- include "common.resourceMetadata" . | nindent 2 }} |
Fiachra Corcoran | be96655 | 2018-08-07 16:58:45 +0100 | [diff] [blame] | 19 | spec: |
Sylvain Desbureaux | f7768e8 | 2020-03-23 16:48:20 +0100 | [diff] [blame] | 20 | selector: {{- include "common.selectors" . | nindent 4 }} |
| 21 | serviceName: {{ include "common.servicename" . }} |
Fiachra Corcoran | be96655 | 2018-08-07 16:58:45 +0100 | [diff] [blame] | 22 | replicas: {{ .Values.replicaCount }} |
| 23 | template: |
Sylvain Desbureaux | f7768e8 | 2020-03-23 16:48:20 +0100 | [diff] [blame] | 24 | metadata: {{- include "common.templateMetadata" . | nindent 6 }} |
Fiachra Corcoran | be96655 | 2018-08-07 16:58:45 +0100 | [diff] [blame] | 25 | spec: |
rope252 | f2db5c1 | 2022-01-10 14:15:16 +0000 | [diff] [blame] | 26 | {{ include "common.podSecurityContext" . | indent 6 | trim}} |
efiacor | 2123fec | 2022-12-09 13:40:55 +0000 | [diff] [blame] | 27 | initContainers: {{ include "common.readinessCheck.waitFor" . | nindent 8 }} |
econwar | 4d9f35f | 2019-04-16 08:02:13 +0000 | [diff] [blame] | 28 | - name: {{ include "common.name" . }}-permission-fixer |
rope252 | f2db5c1 | 2022-01-10 14:15:16 +0000 | [diff] [blame] | 29 | securityContext: |
| 30 | runAsUser: 0 |
Sylvain Desbureaux | 6b09654 | 2020-11-21 22:51:24 +0100 | [diff] [blame] | 31 | image: {{ include "repositoryGenerator.image.busybox" . }} |
econwar | 4d9f35f | 2019-04-16 08:02:13 +0000 | [diff] [blame] | 32 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
efiacor | e62958b | 2019-09-27 16:54:36 +0100 | [diff] [blame] | 33 | command: ["chown","-Rf","1000:1001", "/opt/app/"] |
efiacor | 2123fec | 2022-12-09 13:40:55 +0000 | [diff] [blame] | 34 | volumeMounts: |
| 35 | - name: {{ include "common.fullname" . }}-spool |
| 36 | mountPath: {{ .Values.persistence.spool.path }} |
| 37 | - name: {{ include "common.fullname" . }}-event-logs |
| 38 | mountPath: {{ .Values.persistence.event.path }} |
Fiachra Corcoran | be96655 | 2018-08-07 16:58:45 +0100 | [diff] [blame] | 39 | containers: |
| 40 | - name: {{ include "common.name" . }} |
Sylvain Desbureaux | 6b09654 | 2020-11-21 22:51:24 +0100 | [diff] [blame] | 41 | image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }} |
Fiachra Corcoran | be96655 | 2018-08-07 16:58:45 +0100 | [diff] [blame] | 42 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
Sylvain Desbureaux | f7768e8 | 2020-03-23 16:48:20 +0100 | [diff] [blame] | 43 | ports: {{ include "common.containerPorts" . | nindent 12 }} |
Fiachra Corcoran | be96655 | 2018-08-07 16:58:45 +0100 | [diff] [blame] | 44 | {{- if eq .Values.liveness.enabled true }} |
| 45 | livenessProbe: |
| 46 | tcpSocket: |
Sylvain Desbureaux | f7768e8 | 2020-03-23 16:48:20 +0100 | [diff] [blame] | 47 | port: {{.Values.liveness.port}} |
Fiachra Corcoran | be96655 | 2018-08-07 16:58:45 +0100 | [diff] [blame] | 48 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 49 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
| 50 | {{ end -}} |
| 51 | readinessProbe: |
| 52 | tcpSocket: |
Sylvain Desbureaux | f7768e8 | 2020-03-23 16:48:20 +0100 | [diff] [blame] | 53 | port: {{.Values.readiness.port}} |
Fiachra Corcoran | be96655 | 2018-08-07 16:58:45 +0100 | [diff] [blame] | 54 | initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} |
| 55 | periodSeconds: {{ .Values.readiness.periodSeconds }} |
efiacor | 2123fec | 2022-12-09 13:40:55 +0000 | [diff] [blame] | 56 | volumeMounts: |
| 57 | - mountPath: {{ .Values.persistence.spool.path }} |
| 58 | name: {{ include "common.fullname" . }}-spool |
| 59 | - mountPath: {{ .Values.persistence.event.path }} |
| 60 | name: {{ include "common.fullname" . }}-event-logs |
efiacor | 2123fec | 2022-12-09 13:40:55 +0000 | [diff] [blame] | 61 | - mountPath: /opt/app/datartr/etc/node.properties |
| 62 | name: {{ include "common.fullname" . }}-config |
| 63 | subPath: node.properties |
| 64 | - mountPath: /opt/app/datartr/etc/logback.xml |
| 65 | name: {{ include "common.fullname" . }}-log-conf |
| 66 | subPath: logback.xml |
miroslavmasaryk | a7ac7f0 | 2023-03-01 14:12:26 +0100 | [diff] [blame] | 67 | resources: {{ include "common.resources" . | nindent 12 }} |
Fiachra Corcoran | be96655 | 2018-08-07 16:58:45 +0100 | [diff] [blame] | 68 | {{- if .Values.nodeSelector }} |
Sylvain Desbureaux | f7768e8 | 2020-03-23 16:48:20 +0100 | [diff] [blame] | 69 | nodeSelector: {{ toYaml .Values.nodeSelector | nindent 10 }} |
Fiachra Corcoran | be96655 | 2018-08-07 16:58:45 +0100 | [diff] [blame] | 70 | {{- end -}} |
| 71 | {{- if .Values.affinity }} |
Sylvain Desbureaux | f7768e8 | 2020-03-23 16:48:20 +0100 | [diff] [blame] | 72 | affinity: {{ toYaml .Values.affinity | nindent 10 }} |
Sylvain Desbureaux | e615343 | 2021-02-04 18:26:23 +0100 | [diff] [blame] | 73 | {{- end }} |
Andreas Geissler | bd0d31a | 2024-03-20 09:51:32 +0100 | [diff] [blame] | 74 | {{- include "common.imagePullSecrets" . | nindent 6 }} |
farida azmy | 13388ba | 2021-03-17 11:33:28 +0200 | [diff] [blame] | 75 | serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}} |
efiacor | 2123fec | 2022-12-09 13:40:55 +0000 | [diff] [blame] | 76 | volumes: |
efiacor | eabb652 | 2019-04-08 09:46:09 +0000 | [diff] [blame] | 77 | - name: {{ include "common.fullname" . }}-config |
efiacor | 4808baa | 2019-03-11 23:36:05 +0000 | [diff] [blame] | 78 | configMap: |
efiacor | 2123fec | 2022-12-09 13:40:55 +0000 | [diff] [blame] | 79 | name: {{ include "common.fullname" . }}-node-props |
efiacor | eabb652 | 2019-04-08 09:46:09 +0000 | [diff] [blame] | 80 | items: |
| 81 | - key: node.properties |
| 82 | path: node.properties |
efiacor | 4808baa | 2019-03-11 23:36:05 +0000 | [diff] [blame] | 83 | - name: {{ include "common.fullname" . }}-log-conf |
| 84 | configMap: |
| 85 | name: {{ include "common.fullname" . }}-log |
Sylvain Desbureaux | 6014112 | 2019-11-29 15:55:11 +0100 | [diff] [blame] | 86 | {{- if not .Values.persistence.enabled }} |
mprzybys | e1ea50d | 2020-01-31 10:09:02 +0000 | [diff] [blame] | 87 | - name: {{ include "common.fullname" . }}-event-logs |
efiacor | 4808baa | 2019-03-11 23:36:05 +0000 | [diff] [blame] | 88 | emptyDir: {} |
Sylvain Desbureaux | f7768e8 | 2020-03-23 16:48:20 +0100 | [diff] [blame] | 89 | - name: {{ include "common.fullname" . }}-spool |
efiacor | 7b9a087 | 2019-08-28 21:20:22 +0000 | [diff] [blame] | 90 | emptyDir: {} |
Sylvain Desbureaux | 6014112 | 2019-11-29 15:55:11 +0100 | [diff] [blame] | 91 | {{- end }} |
| 92 | {{- if .Values.persistence.enabled }} |
efiacor | 4808baa | 2019-03-11 23:36:05 +0000 | [diff] [blame] | 93 | volumeClaimTemplates: |
Sylvain Desbureaux | f7768e8 | 2020-03-23 16:48:20 +0100 | [diff] [blame] | 94 | - {{ include "common.PVCTemplate" (dict "dot" . "suffix" "spool" "persistenceInfos" .Values.persistence.spool) | indent 4 | trim }} |
| 95 | - {{ include "common.PVCTemplate" (dict "dot" . "suffix" "event-logs" "persistenceInfos" .Values.persistence.event) | indent 4 | trim }} |
efiacor | e62958b | 2019-09-27 16:54:36 +0100 | [diff] [blame] | 96 | {{- end }} |