eb785e2d9b332033c64593de57e86ece62ae01e6
[oom.git] / kubernetes / aaf / charts / aaf-cass / templates / deployment.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
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: extensions/v1beta1
16 kind: Deployment
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   replicas: {{ .Values.global.aaf.cass.replicas }}
27   template:
28     metadata:
29       labels:
30         app: {{ include "common.name" . }}
31         release: {{ include "common.release" . }}
32     spec:
33       initContainers:
34       - name: fix-permission
35         command:
36         - /bin/sh
37         args:
38         - -c
39         - |
40           chmod -R 775 /opt/app/aaf/status
41           chown -R 1000:1000 /opt/app/aaf/status
42           chmod -R 775 /var/lib/cassandra
43           chown -R 1000:1000 /var/lib/cassandra
44         image: "{{ .Values.global.busyboxRepository }}/{{ .Values.global.busyboxImage }}"
45         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
46         volumeMounts:
47           - mountPath: /opt/app/aaf/status
48             name: aaf-status-vol
49           - mountPath: /var/lib/cassandra
50             name: aaf-cass-vol
51       containers:
52       - name: {{ include "common.name" . }}
53         image: {{ .Values.global.repository }}/{{.Values.global.aaf.cass.image}}
54         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
55         # installing with cmd "onap" will not only initialize the DB, but add ONAP bootstrap data as well
56         command: ["/bin/bash","/opt/app/aaf/cass_init/cmd.sh","onap"]
57         lifecycle:
58           preStop:
59             exec:
60               command: ["/bin/sh","-c","rm /opt/app/aaf/status/aaf-cass"]
61         ports:
62         - name: storage
63           containerPort: {{.Values.global.aaf.cass.storage_port}}
64         - name: ssl-storage
65           containerPort: {{.Values.global.aaf.cass.ssl_storage_port}}
66         - name: native-trans
67           containerPort: {{.Values.global.aaf.cass.native_trans_port}}
68         - name: rpc
69           containerPort: {{.Values.global.aaf.cass.rpc_port}}
70         env:
71         - name: CASSANDRA_CLUSTER_NAME
72           value: {{.Values.global.aaf.cass.cluster_name}}
73         - name: CASSANDRA_DC
74           value: {{.Values.global.aaf.cass.dc}}
75         - name: CQLSH
76           value: "/opt/cassandra/bin/cqlsh"
77         - name: HEAP_NEWSIZE
78           value: {{.Values.global.aaf.cass.heap_new_size}}
79         - name: MAX_HEAP_SIZE
80           value: {{.Values.global.aaf.cass.max_heap_size}}
81         - name: MY_POD_NAME
82           valueFrom:
83             fieldRef:
84               fieldPath: metadata.name
85         - name: MY_POD_NAMESPACE
86           valueFrom:
87             fieldRef:
88               fieldPath: metadata.namespace
89         - name: MY_POD_IP
90           valueFrom:
91             fieldRef:
92               fieldPath: status.podIP
93         volumeMounts:
94         - mountPath: /var/lib/cassandra
95           name: aaf-cass-vol
96         - mountPath: /opt/app/aaf/status
97           name: aaf-status-vol
98         - mountPath: /etc/localtime
99           name: localtime
100           readOnly: true
101         {{- if eq .Values.liveness.enabled true }}
102         livenessProbe:
103           tcpSocket:
104             port: {{.Values.global.aaf.cass.native_trans_port}}
105           initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
106           periodSeconds: {{ .Values.liveness.periodSeconds }}
107         {{ end -}}
108         readinessProbe:
109           tcpSocket:
110             port: {{.Values.global.aaf.cass.native_trans_port}}
111           initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
112           periodSeconds: {{ .Values.readiness.periodSeconds }}
113         resources:
114 {{ include "common.resources" . | indent 10 }}
115       {{- if .Values.nodeSelector }}
116       nodeSelector:
117 {{ toYaml .Values.nodeSelector | indent 10 }}
118       {{- end -}}
119       {{- if .Values.affinity }}
120       affinity:
121 {{ toYaml .Values.affinity | indent 10 }}
122       {{- end }}
123       volumes:
124       - name: localtime
125         hostPath:
126           path: /etc/localtime
127       - name: aaf-status-vol
128         persistentVolumeClaim:
129           claimName: {{ include "common.release" . }}-aaf-status
130       - name: aaf-cass-vol
131       {{- if .Values.persistence.enabled }}
132         persistentVolumeClaim:
133           claimName: {{ include "common.fullname" . }}-data
134       {{- else }}
135         emptyDir: {}
136       {{- end }}
137       imagePullSecrets:
138       - name: "{{ include "common.namespace" . }}-docker-registry-key"