[Portal] Remove hardcoded cassandra password
[oom.git] / kubernetes / appc / charts / appc-ansible-server / templates / statefulset.yaml
1 # Copyright © 2018 Amdocs, Bell Canada, AT&T
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/v1
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   selector:
27     matchLabels:
28       app: {{ include "common.name" . }}
29   replicas: {{ .Values.replicaCount }}
30   template:
31     metadata:
32       labels:
33         app: {{ include "common.name" . }}
34         release: {{ include "common.release" . }}
35     spec:
36       initContainers:
37       - name: {{ include "common.name" . }}-chown
38         image: "busybox"
39         command: ["sh", "-c", "chown -R {{ .Values.config.ansibleUid }}:{{ .Values.config.ansibleGid}} {{ .Values.persistence.playbookPath }}"]
40         volumeMounts:
41           - mountPath: {{ .Values.persistence.playbookPath }}
42             name: {{ include "common.fullname" . }}-playbook
43       containers:
44         - name: {{ include "common.name" . }}
45           command: ["/bin/bash"]
46           args: ["-c", "cd /opt/onap/ccsdk && ./startAnsibleServer.sh"]
47           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
48           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
49           ports:
50           - containerPort: {{ .Values.service.internalPort }}
51           # disable liveness probe when breakpoints set in debugger
52           # so K8s doesn't restart unresponsive container
53           {{ if .Values.liveness.enabled }}
54           livenessProbe:
55             tcpSocket:
56               port: {{ .Values.service.internalPort }}
57             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
58             periodSeconds: {{ .Values.liveness.periodSeconds }}
59           {{ end }}
60           readinessProbe:
61             tcpSocket:
62               port: {{ .Values.service.internalPort }}
63             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
64             periodSeconds: {{ .Values.readiness.periodSeconds }}
65           volumeMounts:
66           - mountPath: /etc/localtime
67             name: localtime
68             readOnly: true
69           - mountPath: {{ .Values.config.configDir }}/RestServer_config
70             name: config
71             subPath: RestServer_config
72           - mountPath: {{ .Values.persistence.playbookPath }}
73             name: {{ include "common.fullname" . }}-playbook
74           resources:
75 {{ include "common.resources" . | indent 12 }}
76         {{- if .Values.nodeSelector }}
77         nodeSelector:
78 {{ toYaml .Values.nodeSelector | indent 10 }}
79         {{- end -}}
80         {{- if .Values.affinity }}
81         affinity:
82 {{ toYaml .Values.affinity | indent 10 }}
83         {{- end }}
84       volumes:
85         - name: localtime
86           hostPath:
87             path: /etc/localtime
88         - name: config
89           configMap:
90             name: {{ include "common.fullname" . }}
91             defaultMode: 0644
92 {{ if not .Values.persistence.enabled }}
93         - name: {{ include "common.fullname" . }}-playbook
94           emptyDir: {}
95 {{ else }}
96   volumeClaimTemplates:
97   - metadata:
98       name: {{ include "common.fullname" . }}-playbook
99       labels:
100         name: {{ include "common.fullname" . }}
101         chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
102         release: "{{ include "common.release" . }}"
103         heritage: "{{ .Release.Service }}"
104     spec:
105       accessModes:
106       - {{ .Values.persistence.accessMode }}
107       storageClassName: {{ include "common.storageClass" . }}
108       resources:
109         requests:
110           storage: {{ .Values.persistence.size }}
111 {{ end }}