blob: 047a77afeff859f5bbceec8acf5f39621072c8ab [file] [log] [blame]
mayankg2703ced85142018-03-20 05:42:53 +00001# Copyright © 2017 Amdocs, Bell Canada
Jorge Hernandezaa5ba982019-03-25 19:13:39 -05002# Modifications Copyright © 2018-2019 AT&T
mayankg2703ced85142018-03-20 05:42:53 +00003#
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.
15
mayankg2703c7985462018-03-29 14:24:23 +000016apiVersion: apps/v1beta1
17kind: StatefulSet
mayankg2703ced85142018-03-20 05:42:53 +000018metadata:
19 name: {{ include "common.fullname" . }}
20 namespace: {{ include "common.namespace" . }}
21 labels:
22 app: {{ include "common.name" . }}
23 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010024 release: {{ include "common.release" . }}
mayankg2703ced85142018-03-20 05:42:53 +000025 heritage: {{ .Release.Service }}
26spec:
Mahendra Raghuwanshic1395ec2018-04-26 03:19:03 +000027 serviceName: {{ include "common.servicename" . }}
mayankg2703ced85142018-03-20 05:42:53 +000028 replicas: {{ .Values.replicaCount }}
mayankg2703c7985462018-03-29 14:24:23 +000029 selector:
30 matchLabels:
31 app: {{ include "common.name" . }}
mayankg2703ced85142018-03-20 05:42:53 +000032 template:
33 metadata:
34 labels:
35 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010036 release: {{ include "common.release" . }}
mayankg2703ced85142018-03-20 05:42:53 +000037 spec:
38 initContainers:
39 - command:
40 - /root/ready.py
41 args:
42 - --container-name
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010043 - {{ include "common.release" . }}-galera-config
mayankg2703ced85142018-03-20 05:42:53 +000044 - --container-name
45 - {{ .Values.global.nexus.nameOverride }}
46 env:
47 - name: NAMESPACE
48 valueFrom:
49 fieldRef:
50 apiVersion: v1
51 fieldPath: metadata.namespace
52 image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
53 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
54 name: {{ include "common.name" . }}-readiness
mayankg2703ced85142018-03-20 05:42:53 +000055 containers:
56 - name: {{ include "common.name" . }}
BorislavGdf11cd52018-05-06 12:55:20 +000057 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
mayankg2703ced85142018-03-20 05:42:53 +000058 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
59 ports:
60 - containerPort: {{ .Values.service.externalPort }}
61 - containerPort: {{ .Values.service.externalPort2 }}
mayankg2703ced85142018-03-20 05:42:53 +000062 {{- if eq .Values.liveness.enabled true }}
63 livenessProbe:
64 tcpSocket:
65 port: {{ .Values.service.externalPort }}
66 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
67 periodSeconds: {{ .Values.liveness.periodSeconds }}
68 {{- end }}
69 readinessProbe:
70 tcpSocket:
71 port: {{ .Values.service.externalPort }}
72 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
73 periodSeconds: {{ .Values.readiness.periodSeconds }}
74 env:
75 - name: REPLICAS
76 value: "{{ .Values.replicaCount }}"
77 volumeMounts:
78 - mountPath: /etc/localtime
79 name: localtime
80 readOnly: true
jhh01096592019-09-04 07:47:25 -050081 {{- range $path, $bytes := .Files.Glob "resources/secrets/*" }}
82 - mountPath: /tmp/policy-install/config/{{ base $path }}
mayankg2703ced85142018-03-20 05:42:53 +000083 name: drools-secret
jhh01096592019-09-04 07:47:25 -050084 subPath: {{ base $path }}
85 {{- end }}
86 {{- range $path, $bytes := .Files.Glob "resources/configmaps/*" }}
87 - mountPath: /tmp/policy-install/config/{{ base $path }}
Jorge Hernandez328eadb2018-05-15 07:52:21 -050088 name: drools-config
jhh01096592019-09-04 07:47:25 -050089 subPath: {{ base $path }}
90 {{- end }}
mayankg2703ced85142018-03-20 05:42:53 +000091 - mountPath: /var/log/onap
92 name: policy-logs
mayankg2703ced85142018-03-20 05:42:53 +000093 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +000094{{ include "common.resources" . | indent 12 }}
mayankg2703ced85142018-03-20 05:42:53 +000095 {{- if .Values.nodeSelector }}
96 - image: "{{ .Values.global.loggingRepository | default .Values.loggingRepository }}/{{ .Values.loggingImage }}"
dkamdocs6ad3a1c2018-12-21 09:25:53 +000097 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
mayankg2703ced85142018-03-20 05:42:53 +000098 name: filebeat-onap
99 volumeMounts:
100 - mountPath: /usr/share/filebeat/filebeat.yml
101 name: filebeat-conf
102 subPath: filebeat.yml
103 - mountPath: /var/log/onap
104 name: policy-logs
105 - mountPath: /usr/share/filebeat/data
106 name: policy-data-filebeat
107 nodeSelector:
108{{ toYaml .Values.nodeSelector | indent 10 }}
109 {{- end -}}
110 {{- if .Values.affinity }}
111 affinity:
112{{ toYaml .Values.affinity | indent 10 }}
113 {{- end }}
114 volumes:
115 - name: localtime
116 hostPath:
117 path: /etc/localtime
118 - name: filebeat-conf
119 configMap:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100120 name: {{ include "common.release" . }}-filebeat-configmap
mayankg2703ced85142018-03-20 05:42:53 +0000121 - name: policy-logs
122 emptyDir: {}
123 - name: policy-data-filebeat
124 emptyDir: {}
mayankg2703ced85142018-03-20 05:42:53 +0000125 - name: drools-config
126 configMap:
127 name: {{ include "common.fullname" . }}-configmap
128 items:
jhh01096592019-09-04 07:47:25 -0500129 {{- range $path, $bytes := .Files.Glob "resources/configmaps/*" }}
130 - key: {{ base $path }}
131 path: {{ base $path }}
mayankg2703ced85142018-03-20 05:42:53 +0000132 mode: 0755
jhh01096592019-09-04 07:47:25 -0500133 {{- end }}
mayankg2703ced85142018-03-20 05:42:53 +0000134 - name: drools-secret
135 secret:
136 secretName: {{ include "common.fullname" . }}-secret
137 items:
jhh01096592019-09-04 07:47:25 -0500138 {{- range $path, $bytes := .Files.Glob "resources/secrets/*" }}
139 - key: {{ base $path }}
140 path: {{ base $path }}
mayankg2703ced85142018-03-20 05:42:53 +0000141 mode: 0644
jhh01096592019-09-04 07:47:25 -0500142 {{- end }}
mayankg2703ced85142018-03-20 05:42:53 +0000143 imagePullSecrets:
144 - name: "{{ include "common.namespace" . }}-docker-registry-key"