Add support for metal LB in DNS deploy script
[oom.git] / kubernetes / policy / charts / drools / templates / statefulset.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications Copyright © 2018-2019 AT&T
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.
15
16 apiVersion: apps/v1beta1
17 kind: StatefulSet
18 metadata:
19   name: {{ include "common.fullname" . }}
20   namespace: {{ include "common.namespace" . }}
21   labels:
22     app: {{ include "common.name" . }}
23     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
24     release: {{ include "common.release" . }}
25     heritage: {{ .Release.Service }}
26 spec:
27   serviceName: {{ include "common.servicename" . }}
28   replicas: {{ .Values.replicaCount }}
29   selector:
30     matchLabels:
31       app: {{ include "common.name" . }}
32   template:
33     metadata:
34       labels:
35         app: {{ include "common.name" . }}
36         release: {{ include "common.release" . }}
37     spec:
38       initContainers:
39       - command:
40         - /root/ready.py
41         args:
42         - --container-name
43         - {{ include "common.release" . }}-galera-config
44         - --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
55       containers:
56         - name: {{ include "common.name" . }}
57           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
58           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
59           ports:
60           - containerPort: {{ .Values.service.externalPort }}
61           - containerPort: {{ .Values.service.externalPort2 }}
62           {{- 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
81           {{- range $path, $bytes := .Files.Glob "resources/secrets/*" }}
82           - mountPath: /tmp/policy-install/config/{{ base $path }}
83             name: drools-secret
84             subPath: {{ base $path }}
85           {{- end }}
86           {{- range $path, $bytes := .Files.Glob "resources/configmaps/*" }}
87           - mountPath: /tmp/policy-install/config/{{ base $path }}
88             name: drools-config
89             subPath: {{ base $path }}
90           {{- end }}
91           - mountPath: /var/log/onap
92             name: policy-logs
93           resources:
94 {{ include "common.resources" . | indent 12 }}
95         {{- if .Values.nodeSelector }}
96         - image: "{{ .Values.global.loggingRepository | default .Values.loggingRepository }}/{{ .Values.loggingImage }}"
97           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
98           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:
120             name: {{ include "common.release" . }}-filebeat-configmap
121         - name: policy-logs
122           emptyDir: {}
123         - name: policy-data-filebeat
124           emptyDir: {}
125         - name: drools-config
126           configMap:
127             name: {{ include "common.fullname" . }}-configmap
128             items:
129             {{- range $path, $bytes := .Files.Glob "resources/configmaps/*" }}
130             - key: {{ base $path }}
131               path: {{ base $path }}
132               mode: 0755
133             {{- end }}
134         - name: drools-secret
135           secret:
136             secretName: {{ include "common.fullname" . }}-secret
137             items:
138             {{- range $path, $bytes := .Files.Glob "resources/secrets/*" }}
139             - key: {{ base $path }}
140               path: {{ base $path }}
141               mode: 0644
142             {{- end }}
143       imagePullSecrets:
144       - name: "{{ include "common.namespace" . }}-docker-registry-key"