Update image versions
[oom.git] / kubernetes / dcaegen2 / charts / dcae-cloudify-manager / templates / deployment.yaml
1 #============LICENSE_START========================================================
2 # ================================================================================
3 # Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
4 # Modifications Copyright © 2018 Amdocs, Bell Canada
5 # ================================================================================
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #     http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 # ============LICENSE_END=========================================================
18
19 apiVersion: extensions/v1beta1
20 kind: Deployment
21 metadata:
22   name: {{ include "common.fullname" . }}
23   namespace: {{ include "common.namespace" . }}
24   labels:
25     app: {{ include "common.name" . }}
26     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
27     release: {{ .Release.Name }}
28     heritage: {{ .Release.Service }}
29 spec:
30   replicas: 1
31   template:
32     metadata:
33       labels:
34         app: {{ include "common.name" . }}
35         release: {{ .Release.Name }}
36     spec:
37       initContainers:
38       - name: {{ include "common.name" . }}-multisite-init
39         image: {{ include "common.repository" . }}/{{ .Values.multisiteInitImage }}
40         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
41         args:
42           - --namespace
43           - {{ include "common.namespace" . }}
44           - --configmap
45           - {{ .Values.multisiteConfigMapName }}
46         restartPolicy: Never
47       containers:
48         - name: {{ include "common.name" . }}
49           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
50           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
51           resources:
52 {{ include "common.resources" . | indent 12 }}
53           ports:
54           - containerPort: {{ .Values.service.internalPort }}
55           # disable liveness probe when breakpoints set in debugger
56           # so K8s doesn't restart unresponsive container
57           {{- if eq .Values.liveness.enabled true }}
58           livenessProbe:
59             tcpSocket:
60               port: {{ .Values.service.internalPort }}
61             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
62             periodSeconds: {{ .Values.liveness.periodSeconds }}
63           {{ end }}
64           readinessProbe:
65             exec:
66               command:
67               - /scripts/readiness-check.sh
68             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
69             periodSeconds: {{ .Values.readiness.periodSeconds }}
70           volumeMounts:
71           - mountPath: /opt/onap/config.txt
72             subPath: config.txt
73             name: {{ include "common.fullname" .}}-config
74             readOnly: true
75           - mountPath: /opt/onap/kube
76             name: {{ include "common.fullname" .}}-kubeconfig
77             readOnly: true
78           - mountPath: /secret
79             name: dcae-token
80             readOnly: true
81           - mountPath: /sys/fs/cgroup
82             name: {{ include "common.fullname" . }}-cgroup
83             readOnly: true
84           - mountPath: /etc/localtime
85             name: localtime
86             readOnly: true
87           - mountPath: /cfy-persist
88             name: cm-persistent
89           securityContext:
90             privileged: True
91       volumes:
92         - name: {{ include "common.fullname" . }}-config
93           configMap:
94             name: {{ include "common.fullname" . }}-configmap
95         - name: {{ include "common.fullname" .}}-kubeconfig
96           configMap:
97             name: {{ .Values.multisiteConfigMapName }}
98         - name: dcae-token
99           secret:
100             secretName: dcae-token
101         - name: {{ include "common.fullname" . }}-cgroup
102           hostPath:
103             path: /sys/fs/cgroup
104         - name: localtime
105           hostPath:
106             path: /etc/localtime
107         - name: cm-persistent
108           persistentVolumeClaim:
109             claimName: {{ include "common.fullname" . }}-data
110       imagePullSecrets:
111       - name: "{{ include "common.namespace" . }}-docker-registry-key"