blob: 84a3c1eee86b5bae1d2515824b2de21e8ace2206 [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:
Krzysztof Opasiak58685d02021-07-29 22:45:45 +020026 initContainers: {{ include "common.certInitializer.initContainer" . | nindent 8 }}
Fiachra Corcoranbe966552018-08-07 16:58:45 +010027 - name: {{ include "common.name" . }}-readiness
Sylvain Desbureaux6b096542020-11-21 22:51:24 +010028 image: {{ include "repositoryGenerator.image.readiness" . }}
Fiachra Corcoranbe966552018-08-07 16:58:45 +010029 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
30 command:
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020031 - /app/ready.py
Fiachra Corcoranbe966552018-08-07 16:58:45 +010032 args:
33 - --container-name
econwar28266fa2019-03-05 16:39:00 +000034 - dmaap-dr-prov
Fiachra Corcoranbe966552018-08-07 16:58:45 +010035 env:
36 - name: NAMESPACE
37 valueFrom:
38 fieldRef:
39 apiVersion: v1
40 fieldPath: metadata.namespace
econwar4d9f35f2019-04-16 08:02:13 +000041 - name: {{ include "common.name" . }}-permission-fixer
Sylvain Desbureaux6b096542020-11-21 22:51:24 +010042 image: {{ include "repositoryGenerator.image.busybox" . }}
econwar4d9f35f2019-04-16 08:02:13 +000043 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
Krzysztof Opasiak58685d02021-07-29 22:45:45 +020044 volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 10 }}
Sylvain Desbureauxf7768e82020-03-23 16:48:20 +010045 - mountPath: {{ .Values.persistence.spool.path }}
46 name: {{ include "common.fullname" . }}-spool
47 - mountPath: {{ .Values.persistence.event.path }}
Sylvain Desbureaux60141122019-11-29 15:55:11 +010048 name: {{ include "common.fullname" . }}-event-logs
efiacore62958b2019-09-27 16:54:36 +010049 command: ["chown","-Rf","1000:1001", "/opt/app/"]
Fiachra Corcoranbe966552018-08-07 16:58:45 +010050 containers:
51 - name: {{ include "common.name" . }}
Sylvain Desbureaux6b096542020-11-21 22:51:24 +010052 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
Fiachra Corcoranbe966552018-08-07 16:58:45 +010053 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
Sylvain Desbureauxf7768e82020-03-23 16:48:20 +010054 ports: {{ include "common.containerPorts" . | nindent 12 }}
Fiachra Corcoranbe966552018-08-07 16:58:45 +010055 {{- if eq .Values.liveness.enabled true }}
56 livenessProbe:
57 tcpSocket:
Sylvain Desbureauxf7768e82020-03-23 16:48:20 +010058 port: {{.Values.liveness.port}}
Fiachra Corcoranbe966552018-08-07 16:58:45 +010059 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
60 periodSeconds: {{ .Values.liveness.periodSeconds }}
61 {{ end -}}
62 readinessProbe:
63 tcpSocket:
Sylvain Desbureauxf7768e82020-03-23 16:48:20 +010064 port: {{.Values.readiness.port}}
Fiachra Corcoranbe966552018-08-07 16:58:45 +010065 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
66 periodSeconds: {{ .Values.readiness.periodSeconds }}
Krzysztof Opasiak58685d02021-07-29 22:45:45 +020067 volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 10 }}
Sylvain Desbureauxf7768e82020-03-23 16:48:20 +010068 - mountPath: {{ .Values.persistence.spool.path }}
69 name: {{ include "common.fullname" . }}-spool
70 - mountPath: {{ .Values.persistence.event.path }}
Sylvain Desbureaux60141122019-11-29 15:55:11 +010071 name: {{ include "common.fullname" . }}-event-logs
Fiachra Corcoranbe966552018-08-07 16:58:45 +010072 - mountPath: /etc/localtime
73 name: localtime
74 readOnly: false
Fiachra Corcoranbe966552018-08-07 16:58:45 +010075 - mountPath: /opt/app/datartr/etc/node.properties
efiacoreabb6522019-04-08 09:46:09 +000076 name: {{ include "common.fullname" . }}-config
Fiachra Corcoranbe966552018-08-07 16:58:45 +010077 subPath: node.properties
efiacor7b9a0872019-08-28 21:20:22 +000078 - mountPath: /opt/app/datartr/etc/logback.xml
79 name: {{ include "common.fullname" . }}-log-conf
80 subPath: logback.xml
81 - mountPath: {{ .Values.global.loggingDirectory }}
82 name: {{ include "common.fullname" . }}-logs
Sylvain Desbureauxf7768e82020-03-23 16:48:20 +010083 resources: {{ include "common.resources" . | nindent 12 }}
Fiachra Corcoranbe966552018-08-07 16:58:45 +010084 {{- if .Values.nodeSelector }}
Sylvain Desbureauxf7768e82020-03-23 16:48:20 +010085 nodeSelector: {{ toYaml .Values.nodeSelector | nindent 10 }}
Fiachra Corcoranbe966552018-08-07 16:58:45 +010086 {{- end -}}
87 {{- if .Values.affinity }}
Sylvain Desbureauxf7768e82020-03-23 16:48:20 +010088 affinity: {{ toYaml .Values.affinity | nindent 10 }}
Sylvain Desbureauxe6153432021-02-04 18:26:23 +010089 {{- end }}
Krzysztof Opasiak03b10092020-01-24 22:45:16 +010090 # Filebeat sidecar container
Maciej Wereski9075b5c2021-11-04 14:01:26 +000091 {{ include "common.log.sidecar" . | nindent 8 }}
Sylvain Desbureaux789d79a2018-12-20 11:04:34 +010092 imagePullSecrets:
93 - name: "{{ include "common.namespace" . }}-docker-registry-key"
farida azmy13388ba2021-03-17 11:33:28 +020094 serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
Krzysztof Opasiak58685d02021-07-29 22:45:45 +020095 volumes: {{ include "common.certInitializer.volumes" . | nindent 8 }}
efiacor4808baa2019-03-11 23:36:05 +000096 - name: localtime
97 hostPath:
98 path: /etc/localtime
efiacoreabb6522019-04-08 09:46:09 +000099 - name: {{ include "common.fullname" . }}-config
efiacor4808baa2019-03-11 23:36:05 +0000100 configMap:
efiacoreabb6522019-04-08 09:46:09 +0000101 name: {{ include "common.fullname" . }}-configmap
102 items:
103 - key: node.properties
104 path: node.properties
efiacor4808baa2019-03-11 23:36:05 +0000105 - name: {{ include "common.fullname" . }}-log-conf
106 configMap:
107 name: {{ include "common.fullname" . }}-log
Maciej Wereski9075b5c2021-11-04 14:01:26 +0000108 {{ include "common.log.volumes" . | nindent 8 }}
Sylvain Desbureaux60141122019-11-29 15:55:11 +0100109 - name: {{ include "common.fullname" . }}-logs
110 emptyDir: {}
111 {{- if not .Values.persistence.enabled }}
mprzybyse1ea50d2020-01-31 10:09:02 +0000112 - name: {{ include "common.fullname" . }}-event-logs
efiacor4808baa2019-03-11 23:36:05 +0000113 emptyDir: {}
Sylvain Desbureauxf7768e82020-03-23 16:48:20 +0100114 - name: {{ include "common.fullname" . }}-spool
efiacor7b9a0872019-08-28 21:20:22 +0000115 emptyDir: {}
Sylvain Desbureaux60141122019-11-29 15:55:11 +0100116 {{- end }}
117{{- if .Values.persistence.enabled }}
efiacor4808baa2019-03-11 23:36:05 +0000118 volumeClaimTemplates:
Sylvain Desbureauxf7768e82020-03-23 16:48:20 +0100119 - {{ include "common.PVCTemplate" (dict "dot" . "suffix" "spool" "persistenceInfos" .Values.persistence.spool) | indent 4 | trim }}
120 - {{ include "common.PVCTemplate" (dict "dot" . "suffix" "event-logs" "persistenceInfos" .Values.persistence.event) | indent 4 | trim }}
efiacore62958b2019-09-27 16:54:36 +0100121{{- end }}