blob: d6d05efbddb6eb85871d0e05f1fa8b0bc593cc7f [file] [log] [blame]
Krzysztof Opasiakab7a6bb2020-03-24 03:30:51 +01001{{/*
jmac7c434672018-05-11 20:14:17 +00002# Copyright © 2017 Amdocs, Bell Canada
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.
Krzysztof Opasiakab7a6bb2020-03-24 03:30:51 +010015*/}}
jmac7c434672018-05-11 20:14:17 +000016
Grzegorz-Lis1318a772020-07-23 15:08:43 +020017apiVersion: apps/v1
jmac7c434672018-05-11 20:14:17 +000018kind: Deployment
Alexander Dehn9b797d62020-04-21 09:53:50 +000019metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
jmac7c434672018-05-11 20:14:17 +000020spec:
Grzegorz-Lis1318a772020-07-23 15:08:43 +020021 selector:
22 matchLabels:
23 app: {{ include "common.name" . }}
jmac7c434672018-05-11 20:14:17 +000024 replicas: {{ .Values.replicaCount }}
Alexander Dehn9b797d62020-04-21 09:53:50 +000025 selector: {{- include "common.selectors" . | nindent 4 }}
jmac7c434672018-05-11 20:14:17 +000026 template:
Alexander Dehn9b797d62020-04-21 09:53:50 +000027 metadata: {{- include "common.templateMetadata" . | nindent 6 }}
jmac7c434672018-05-11 20:14:17 +000028 spec:
29 initContainers:
30 - command:
Krzysztof Opasiakb9d50c92020-02-20 21:29:45 +010031 - sh
32 args:
33 - -c
34 - "cd /config-input && for PFILE in `ls -1 .`; do envsubst <${PFILE} >/config/${PFILE}; done"
35 env:
36 - name: DB_USER
Krzysztof Opasiakab7a6bb2020-03-24 03:30:51 +010037 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "login") | indent 10 }}
Krzysztof Opasiakb9d50c92020-02-20 21:29:45 +010038 - name: DB_PASSWORD
Krzysztof Opasiakab7a6bb2020-03-24 03:30:51 +010039 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "password") | indent 10 }}
Krzysztof Opasiakb9d50c92020-02-20 21:29:45 +010040 - name: REST_USER
Krzysztof Opasiakab7a6bb2020-03-24 03:30:51 +010041 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "rest-creds" "key" "login") | indent 10 }}
Krzysztof Opasiakb9d50c92020-02-20 21:29:45 +010042 - name: REST_PASSWORD
Krzysztof Opasiakab7a6bb2020-03-24 03:30:51 +010043 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "rest-creds" "key" "password") | indent 10 }}
Krzysztof Opasiakb9d50c92020-02-20 21:29:45 +010044 volumeMounts:
45 - mountPath: /config-input
46 name: config-input
47 - mountPath: /config
48 name: config
49 image: "{{ .Values.global.envsubstImage }}"
50 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
51 name: {{ include "common.name" . }}-update-config
52
53 - command:
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020054 - /app/ready.py
jmac7c434672018-05-11 20:14:17 +000055 args:
56 - --container-name
57 - {{ .Values.config.sdncChartName }}
58 env:
59 - name: NAMESPACE
60 valueFrom:
61 fieldRef:
62 apiVersion: v1
63 fieldPath: metadata.namespace
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020064 image: "{{ include "common.repository" . }}/{{ .Values.global.readinessImage }}"
jmac7c434672018-05-11 20:14:17 +000065 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
66 name: {{ include "common.name" . }}-readiness
67 containers:
68 - name: {{ include "common.name" . }}
Timoney, Dan (dt5972)3a2802f2019-02-20 13:58:24 -050069 command: ["/bin/bash"]
70 args: ["-c", "cd /opt/onap/ccsdk && ./startAnsibleServer.sh"]
71
jmac7c434672018-05-11 20:14:17 +000072 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
73 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
74 ports:
75 - containerPort: {{ .Values.service.internalPort }}
76 # disable liveness probe when breakpoints set in debugger
77 # so K8s doesn't restart unresponsive container
78 {{ if .Values.liveness.enabled }}
79 livenessProbe:
80 tcpSocket:
81 port: {{ .Values.service.internalPort }}
82 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
83 periodSeconds: {{ .Values.liveness.periodSeconds }}
84 {{ end }}
85 readinessProbe:
86 tcpSocket:
87 port: {{ .Values.service.internalPort }}
88 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
89 periodSeconds: {{ .Values.readiness.periodSeconds }}
90 volumeMounts:
91 - mountPath: /etc/localtime
92 name: localtime
93 readOnly: true
94 - mountPath: {{ .Values.config.configDir }}/RestServer_config
95 name: config
96 subPath: RestServer_config
97 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +000098{{ include "common.resources" . | indent 12 }}
jmac7c434672018-05-11 20:14:17 +000099 {{- if .Values.nodeSelector }}
100 nodeSelector:
101{{ toYaml .Values.nodeSelector | indent 10 }}
102 {{- end -}}
103 {{- if .Values.affinity }}
104 affinity:
105{{ toYaml .Values.affinity | indent 10 }}
106 {{- end }}
107 volumes:
108 - name: localtime
109 hostPath:
110 path: /etc/localtime
Krzysztof Opasiakb9d50c92020-02-20 21:29:45 +0100111 - name: config-input
jmac7c434672018-05-11 20:14:17 +0000112 configMap:
113 name: {{ include "common.fullname" . }}
114 defaultMode: 0644
Krzysztof Opasiakb9d50c92020-02-20 21:29:45 +0100115 - name: config
116 emptyDir:
117 medium: Memory
jmac7c434672018-05-11 20:14:17 +0000118 imagePullSecrets:
toshrajbhardwaj72b5f0f2018-09-13 02:45:22 +0000119 - name: "{{ include "common.namespace" . }}-docker-registry-key"