5ed2970c45ef1df5cc528e83a29b75025bc15885
[oom.git] / kubernetes / appc / templates / statefulset.yaml
1 # Copyright © 2018  AT&T, Amdocs, Bell Canada Intellectual Property.  All rights reserved.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 apiVersion: apps/v1beta1
16 kind: StatefulSet
17 metadata:
18   name: {{ include "common.fullname" . }}
19   namespace: {{ include "common.namespace" . }}
20   labels:
21     app: {{ include "common.name" . }}
22     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
23     release: {{ include "common.release" . }}
24     heritage: {{ .Release.Service }}
25 spec:
26   serviceName: "{{ .Values.service.name }}-cluster"
27   replicas: {{ .Values.replicaCount }}
28   podManagementPolicy: Parallel
29   template:
30     metadata:
31       labels:
32         app: {{ include "common.name" . }}
33         release: {{ include "common.release" . }}
34     spec:
35       initContainers:
36       - name: {{ include "common.name" . }}-readiness
37         command:
38         - /root/ready.py
39         args:
40         - --container-name
41         - {{.Values.config.mariadbGaleraContName}}
42         env:
43         - name: NAMESPACE
44           valueFrom:
45             fieldRef:
46               apiVersion: v1
47               fieldPath: metadata.namespace
48         image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
49         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
50       - name: {{ include "common.name" . }}-chown
51         image: "busybox"
52         command: ["sh", "-c", "chown -R {{ .Values.config.odlUid }}:{{ .Values.config.odlGid}} {{ .Values.persistence.mdsalPath }}"]
53         volumeMounts:
54           - mountPath: {{ .Values.persistence.mdsalPath }}
55             name: {{ include "common.fullname" . }}-data
56       containers:
57         - name: {{ include "common.name" . }}
58           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
59           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
60           command:
61           - /opt/appc/bin/startODL.sh
62           ports:
63           - containerPort: {{ .Values.service.internalPort }}
64           - containerPort: {{ .Values.service.externalPort2 }}
65           readinessProbe:
66             tcpSocket:
67                port: {{ .Values.service.internalPort }}
68             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
69             periodSeconds: {{ .Values.readiness.periodSeconds }}
70           env:
71             - name: MYSQL_ROOT_PASSWORD
72               {{- include "common.secret.envFromSecret" (dict "global" . "uid" "db-root-pass" "key" "password") | indent 14}}
73             - name: SDNC_CONFIG_DIR
74               value: "{{ .Values.config.configDir }}"
75             - name: APPC_CONFIG_DIR
76               value: "{{ .Values.config.configDir }}"
77             - name: DMAAP_TOPIC_ENV
78               value: "{{ .Values.config.dmaapTopic }}"
79             - name: ENABLE_AAF
80               value: "{{ .Values.config.enableAAF }}"
81             - name: ENABLE_ODL_CLUSTER
82               value: "{{ .Values.config.enableClustering }}"
83             - name: APPC_REPLICAS
84               value: "{{ .Values.replicaCount }}"
85           volumeMounts:
86           - mountPath: /etc/localtime
87             name: localtime
88             readOnly: true
89           - mountPath: /opt/onap/appc/data/properties/dblib.properties
90             name: onap-appc-data-properties
91             subPath: dblib.properties
92           - mountPath: /opt/onap/appc/data/properties/svclogic.properties
93             name: onap-appc-data-properties
94             subPath: svclogic.properties
95           - mountPath: /opt/onap/appc/data/properties/appc.properties
96             name: onap-appc-data-properties
97             subPath: appc.properties
98           - mountPath: /opt/onap/appc/data/properties/aaiclient.properties
99             name: onap-appc-data-properties
100             subPath: aaiclient.properties
101           - mountPath: /opt/onap/appc/data/properties/cadi.properties
102             name: onap-appc-data-properties
103             subPath: cadi.properties
104           - mountPath: /opt/onap/appc/data/properties/aaa-app-config.xml
105             name: onap-appc-data-properties
106             subPath: aaa-app-config.xml
107           - mountPath: /opt/onap/appc/data/properties/bath_config.csv
108             name: onap-appc-data-properties
109             subPath: bath_config.csv
110           - mountPath: /opt/onap/appc/svclogic/config/svclogic.properties
111             name: onap-appc-svclogic-config
112             subPath: svclogic.properties
113           - mountPath: /opt/onap/appc/svclogic/bin/showActiveGraphs.sh
114             name: onap-appc-svclogic-bin
115             subPath: showActiveGraphs.sh
116           - mountPath: /opt/onap/appc/bin/startODL.sh
117             name: onap-appc-bin
118             subPath: startODL.sh
119           - mountPath: /opt/onap/appc/bin/installAppcDb.sh
120             name: onap-appc-bin
121             subPath: installAppcDb.sh
122           - mountPath: /opt/onap/appc/bin/health_check.sh
123             name: onap-appc-bin
124             subPath: health_check.sh
125           - mountPath: /opt/onap/ccsdk/data/properties/dblib.properties
126             name: onap-sdnc-data-properties
127             subPath: dblib.properties
128           - mountPath: /opt/onap/ccsdk/data/properties/svclogic.properties
129             name: onap-sdnc-data-properties
130             subPath: svclogic.properties
131           - mountPath: /opt/onap/ccsdk/data/properties/aaiclient.properties
132             name: onap-sdnc-data-properties
133             subPath: aaiclient.properties
134           - mountPath: /opt/onap/ccsdk/svclogic/config/svclogic.properties
135             name: onap-sdnc-svclogic-config
136             subPath: svclogic.properties
137           - mountPath: /opt/onap/ccsdk/svclogic/bin/showActiveGraphs.sh
138             name: onap-sdnc-svclogic-bin
139             subPath: showActiveGraphs.sh
140           - mountPath: /opt/onap/ccsdk/bin/installSdncDb.sh
141             name: onap-sdnc-bin
142             subPath: installSdncDb.sh
143           - mountPath: {{ .Values.persistence.mdsalPath }}
144             name: {{ include "common.fullname" . }}-data
145           - mountPath: /var/log/onap
146             name: logs
147           - mountPath: /opt/onap/appc/data/org.ops4j.pax.logging.cfg
148             name: log-config
149             subPath: org.ops4j.pax.logging.cfg
150           resources:
151 {{ include "common.resources" . | indent 12 }}
152         {{- if .Values.nodeSelector }}
153         nodeSelector:
154 {{ toYaml .Values.nodeSelector | indent 10 }}
155         {{- end -}}
156         {{- if .Values.affinity }}
157         affinity:
158 {{ toYaml .Values.affinity | indent 10 }}
159         {{- end }}
160
161         # side car containers
162         - name: filebeat-onap
163           image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
164           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
165           volumeMounts:
166           - mountPath: /usr/share/filebeat/filebeat.yml
167             name: filebeat-conf
168             subPath: filebeat.yml
169           - mountPath: /var/log/onap
170             name: logs
171           - mountPath: /usr/share/filebeat/data
172             name: data-filebeat
173       volumes:
174         - name: localtime
175           hostPath:
176             path: /etc/localtime
177         - name: filebeat-conf
178           configMap:
179             name: {{ include "common.fullname" . }}-filebeat
180         - name: log-config
181           configMap:
182             name: {{ include "common.fullname" . }}-logging-cfg
183         - name: logs
184           emptyDir: {}
185         - name: data-filebeat
186           emptyDir: {}
187         - name: onap-appc-data-properties
188           configMap:
189             name: {{ include "common.fullname" . }}-onap-appc-data-properties
190         - name: onap-appc-svclogic-config
191           configMap:
192             name: {{ include "common.fullname" . }}-onap-appc-svclogic-config
193         - name: onap-appc-svclogic-bin
194           configMap:
195             name: {{ include "common.fullname" . }}-onap-appc-svclogic-bin
196             defaultMode: 0755
197         - name: onap-appc-bin
198           configMap:
199             name: {{ include "common.fullname" . }}-onap-appc-bin
200             defaultMode: 0755
201         - name: onap-sdnc-data-properties
202           configMap:
203             name: {{ include "common.fullname" . }}-onap-sdnc-data-properties
204         - name: onap-sdnc-svclogic-config
205           configMap:
206             name: {{ include "common.fullname" . }}-onap-sdnc-svclogic-config
207         - name: onap-sdnc-svclogic-bin
208           configMap:
209             name: {{ include "common.fullname" . }}-onap-sdnc-svclogic-bin
210             defaultMode: 0755
211         - name: onap-sdnc-bin
212           configMap:
213             name: {{ include "common.fullname" . }}-onap-sdnc-bin
214             defaultMode: 0755
215 {{ if not .Values.persistence.enabled }}
216         - name: {{ include "common.fullname" . }}-data
217           emptyDir: {}
218 {{ else }}
219   volumeClaimTemplates:
220   - metadata:
221       name: {{ include "common.fullname" . }}-data
222       labels:
223         name: {{ include "common.fullname" . }}
224         chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
225         release: "{{ include "common.release" . }}"
226         heritage: "{{ .Release.Service }}"
227     spec:
228       accessModes:
229       - {{ .Values.persistence.accessMode }}
230       storageClassName: {{ include "common.storageClass" . }}
231       resources:
232         requests:
233           storage: {{ .Values.persistence.size }}
234 {{ end }}