replace pdpd image with control loop one
[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: {{ .Release.Name }}
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: {{ .Release.Name }}
37     spec:
38       initContainers:
39       - command:
40         - /root/ready.py
41         args:
42         - --container-name
43         - {{ .Values.global.mariadb.nameOverride }}
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           - mountPath: /tmp/policy-install/config/feature-healthcheck.conf
82             name: drools-secret
83             subPath: feature-healthcheck.conf
84           - mountPath: /tmp/policy-install/config/feature-pooling-dmaap.conf
85             name: drools-config
86             subPath: feature-pooling-dmaap.conf
87           - mountPath: /tmp/policy-install/config/base.conf
88             name: drools-config
89             subPath: base.conf
90           - mountPath: /var/log/onap
91             name: policy-logs
92           resources:
93 {{ include "common.resources" . | indent 12 }}
94         {{- if .Values.nodeSelector }}
95         - image: "{{ .Values.global.loggingRepository | default .Values.loggingRepository }}/{{ .Values.loggingImage }}"
96           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
97           name: filebeat-onap
98           volumeMounts:
99           - mountPath: /usr/share/filebeat/filebeat.yml
100             name: filebeat-conf
101             subPath: filebeat.yml
102           - mountPath: /var/log/onap
103             name: policy-logs
104           - mountPath: /usr/share/filebeat/data
105             name: policy-data-filebeat
106         nodeSelector:
107 {{ toYaml .Values.nodeSelector | indent 10 }}
108         {{- end -}}
109         {{- if .Values.affinity }}
110         affinity:
111 {{ toYaml .Values.affinity | indent 10 }}
112         {{- end }}
113       volumes:
114         - name: localtime
115           hostPath:
116             path: /etc/localtime
117         - name: filebeat-conf
118           configMap:
119             name: {{ .Release.Name }}-filebeat-configmap
120         - name: policy-logs
121           emptyDir: {}
122         - name: policy-data-filebeat
123           emptyDir: {}
124         - name: drools-config
125           configMap:
126             name: {{ include "common.fullname" . }}-configmap
127             items:
128             - key: base.conf
129               path: base.conf
130               mode: 0755
131             - key: feature-pooling-dmaap.conf
132               path: feature-pooling-dmaap.conf
133               mode: 0755
134         - name: drools-secret
135           secret:
136             secretName: {{ include "common.fullname" . }}-secret
137             items:
138             - key: feature-healthcheck.conf
139               path: feature-healthcheck.conf
140               mode: 0644
141       imagePullSecrets:
142       - name: "{{ include "common.namespace" . }}-docker-registry-key"