blob: 22330992244741b495ab9977f33f8cec0e449303 [file] [log] [blame]
jmac7c434672018-05-11 20:14:17 +00001# 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
15apiVersion: extensions/v1beta1
16kind: Deployment
17metadata:
18 name: {{ include "common.fullname" . }}
19 namespace: {{ include "common.namespace" . }}
20 labels:
21 app: {{ include "common.name" . }}
22 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010023 release: {{ include "common.release" . }}
jmac7c434672018-05-11 20:14:17 +000024 heritage: {{ .Release.Service }}
25spec:
26 replicas: {{ .Values.replicaCount }}
27 template:
28 metadata:
29 labels:
30 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010031 release: {{ include "common.release" . }}
jmac7c434672018-05-11 20:14:17 +000032 spec:
33 initContainers:
34 - command:
35 - /root/ready.py
36 args:
37 - --container-name
38 - {{ .Values.config.sdncChartName }}
39 env:
40 - name: NAMESPACE
41 valueFrom:
42 fieldRef:
43 apiVersion: v1
44 fieldPath: metadata.namespace
45 image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
46 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
47 name: {{ include "common.name" . }}-readiness
48 containers:
49 - name: {{ include "common.name" . }}
Timoney, Dan (dt5972)3a2802f2019-02-20 13:58:24 -050050 command: ["/bin/bash"]
51 args: ["-c", "cd /opt/onap/ccsdk && ./startAnsibleServer.sh"]
52
jmac7c434672018-05-11 20:14:17 +000053 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
54 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
55 ports:
56 - containerPort: {{ .Values.service.internalPort }}
57 # disable liveness probe when breakpoints set in debugger
58 # so K8s doesn't restart unresponsive container
59 {{ if .Values.liveness.enabled }}
60 livenessProbe:
61 tcpSocket:
62 port: {{ .Values.service.internalPort }}
63 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
64 periodSeconds: {{ .Values.liveness.periodSeconds }}
65 {{ end }}
66 readinessProbe:
67 tcpSocket:
68 port: {{ .Values.service.internalPort }}
69 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
70 periodSeconds: {{ .Values.readiness.periodSeconds }}
71 volumeMounts:
72 - mountPath: /etc/localtime
73 name: localtime
74 readOnly: true
75 - mountPath: {{ .Values.config.configDir }}/RestServer_config
76 name: config
77 subPath: RestServer_config
78 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +000079{{ include "common.resources" . | indent 12 }}
jmac7c434672018-05-11 20:14:17 +000080 {{- if .Values.nodeSelector }}
81 nodeSelector:
82{{ toYaml .Values.nodeSelector | indent 10 }}
83 {{- end -}}
84 {{- if .Values.affinity }}
85 affinity:
86{{ toYaml .Values.affinity | indent 10 }}
87 {{- end }}
88 volumes:
89 - name: localtime
90 hostPath:
91 path: /etc/localtime
92 - name: config
93 configMap:
94 name: {{ include "common.fullname" . }}
95 defaultMode: 0644
96 imagePullSecrets:
toshrajbhardwaj72b5f0f2018-09-13 02:45:22 +000097 - name: "{{ include "common.namespace" . }}-docker-registry-key"