blob: 90db6480286082f937589b8b0a931fc340e2da12 [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
EmmettCox6065d3e2019-04-12 09:45:30 +000091 - name: {{ include "common.name" . }}-filebeat-onap
Sylvain Desbureaux6b096542020-11-21 22:51:24 +010092 image: {{ include "repositoryGenerator.image.logging" . }}
econwar378cf192019-01-08 16:19:59 +000093 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
94 volumeMounts:
95 - name: {{ include "common.fullname" . }}-filebeat-conf
96 mountPath: /usr/share/filebeat/filebeat.yml
97 subPath: filebeat.yml
98 - name: {{ include "common.fullname" . }}-data-filebeat
99 mountPath: /usr/share/filebeat/data
efiacor7b9a0872019-08-28 21:20:22 +0000100 - name: {{ include "common.fullname" . }}-logs
econwar378cf192019-01-08 16:19:59 +0000101 mountPath: /var/log/onap/datarouter-node
Sylvain Desbureaux789d79a2018-12-20 11:04:34 +0100102 imagePullSecrets:
103 - name: "{{ include "common.namespace" . }}-docker-registry-key"
farida azmy13388ba2021-03-17 11:33:28 +0200104 serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
Krzysztof Opasiak58685d02021-07-29 22:45:45 +0200105 volumes: {{ include "common.certInitializer.volumes" . | nindent 8 }}
efiacor4808baa2019-03-11 23:36:05 +0000106 - name: localtime
107 hostPath:
108 path: /etc/localtime
efiacoreabb6522019-04-08 09:46:09 +0000109 - name: {{ include "common.fullname" . }}-config
efiacor4808baa2019-03-11 23:36:05 +0000110 configMap:
efiacoreabb6522019-04-08 09:46:09 +0000111 name: {{ include "common.fullname" . }}-configmap
112 items:
113 - key: node.properties
114 path: node.properties
efiacor4808baa2019-03-11 23:36:05 +0000115 - name: {{ include "common.fullname" . }}-log-conf
116 configMap:
117 name: {{ include "common.fullname" . }}-log
118 - name: {{ include "common.fullname" . }}-filebeat-conf
119 configMap:
efiacor7b9a0872019-08-28 21:20:22 +0000120 name: {{ include "common.fullname" . }}-dmaap-dr-node-filebeat-configmap
efiacor4808baa2019-03-11 23:36:05 +0000121 - name: {{ include "common.fullname" . }}-data-filebeat
122 emptyDir: {}
Sylvain Desbureaux60141122019-11-29 15:55:11 +0100123 - name: {{ include "common.fullname" . }}-logs
124 emptyDir: {}
125 {{- if not .Values.persistence.enabled }}
mprzybyse1ea50d2020-01-31 10:09:02 +0000126 - name: {{ include "common.fullname" . }}-event-logs
efiacor4808baa2019-03-11 23:36:05 +0000127 emptyDir: {}
Sylvain Desbureauxf7768e82020-03-23 16:48:20 +0100128 - name: {{ include "common.fullname" . }}-spool
efiacor7b9a0872019-08-28 21:20:22 +0000129 emptyDir: {}
Sylvain Desbureaux60141122019-11-29 15:55:11 +0100130 {{- end }}
131{{- if .Values.persistence.enabled }}
efiacor4808baa2019-03-11 23:36:05 +0000132 volumeClaimTemplates:
Sylvain Desbureauxf7768e82020-03-23 16:48:20 +0100133 - {{ include "common.PVCTemplate" (dict "dot" . "suffix" "spool" "persistenceInfos" .Values.persistence.spool) | indent 4 | trim }}
134 - {{ include "common.PVCTemplate" (dict "dot" . "suffix" "event-logs" "persistenceInfos" .Values.persistence.event) | indent 4 | trim }}
efiacore62958b2019-09-27 16:54:36 +0100135{{- end }}