blob: d0e298b7b690f057067077c55a952acef503a154 [file] [log] [blame]
Krzysztof Opasiakc0a57f82020-03-23 15:50:13 +01001{{/*
vaibhavjayasea9aee02018-08-31 06:22:26 +00002# Copyright © 2018 AT&T, 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 Opasiakc0a57f82020-03-23 15:50:13 +010015*/}}
vaibhavjayasea9aee02018-08-31 06:22:26 +000016
milaszki326a5e72020-07-07 11:59:35 +000017apiVersion: apps/v1
Mike Elliott13fed112018-02-28 08:33:33 -050018kind: Deployment
19metadata:
20 name: {{ include "common.fullname" . }}
21 namespace: {{ include "common.namespace" . }}
22 labels:
23 app: {{ include "common.name" . }}
24 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010025 release: {{ include "common.release" . }}
Mike Elliott13fed112018-02-28 08:33:33 -050026 heritage: {{ .Release.Service }}
27spec:
28 replicas: {{ .Values.replicaCount }}
milaszki326a5e72020-07-07 11:59:35 +000029 selector:
30 matchLabels:
31 app: {{ include "common.name" . }}
Mike Elliott13fed112018-02-28 08:33:33 -050032 template:
33 metadata:
34 labels:
35 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010036 release: {{ include "common.release" . }}
Mike Elliott13fed112018-02-28 08:33:33 -050037 spec:
38 initContainers:
39 - command:
Krzysztof Opasiakacdd90c2020-02-17 22:05:51 +010040 - sh
41 args:
42 - -c
43 - "cd /config-input && for PFILE in `ls -1 .`; do envsubst <${PFILE} >/config/${PFILE}; done"
44 env:
45 - name: DB_USER
Krzysztof Opasiakc0a57f82020-03-23 15:50:13 +010046 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-user-creds" "key" "login") | indent 10 }}
Krzysztof Opasiakacdd90c2020-02-17 22:05:51 +010047 - name: DB_PASSWORD
Krzysztof Opasiakc0a57f82020-03-23 15:50:13 +010048 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-user-creds" "key" "password") | indent 10 }}
Krzysztof Opasiakacdd90c2020-02-17 22:05:51 +010049 - name: HTTP_USER
Krzysztof Opasiakc0a57f82020-03-23 15:50:13 +010050 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "http-user-creds" "key" "login") | indent 10 }}
Krzysztof Opasiakacdd90c2020-02-17 22:05:51 +010051 - name: HTTP_PASSWORD
Krzysztof Opasiakc0a57f82020-03-23 15:50:13 +010052 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "http-user-creds" "key" "password") | indent 10 }}
Krzysztof Opasiakacdd90c2020-02-17 22:05:51 +010053 - name: HTTP_ADMIN_USER
Krzysztof Opasiakc0a57f82020-03-23 15:50:13 +010054 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "admin-creds" "key" "login") | indent 10 }}
Krzysztof Opasiakacdd90c2020-02-17 22:05:51 +010055 - name: HTTP_ADMIN_PASSWORD
Krzysztof Opasiakc0a57f82020-03-23 15:50:13 +010056 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "admin-creds" "key" "password") | indent 10 }}
Krzysztof Opasiakacdd90c2020-02-17 22:05:51 +010057 - name: HTTP_NODE_USER
Krzysztof Opasiakc0a57f82020-03-23 15:50:13 +010058 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "node-creds" "key" "login") | indent 10 }}
Krzysztof Opasiakacdd90c2020-02-17 22:05:51 +010059 - name: HTTP_NODE_PASSWORD
Krzysztof Opasiakc0a57f82020-03-23 15:50:13 +010060 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "node-creds" "key" "password") | indent 10 }}
Krzysztof Opasiakacdd90c2020-02-17 22:05:51 +010061 - name: REST_CONF_USER
Krzysztof Opasiakc0a57f82020-03-23 15:50:13 +010062 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "restconf-creds" "key" "login") | indent 10 }}
Krzysztof Opasiakacdd90c2020-02-17 22:05:51 +010063 - name: REST_CONF_PASSWORD
Krzysztof Opasiakc0a57f82020-03-23 15:50:13 +010064 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "restconf-creds" "key" "password") | indent 10 }}
Krzysztof Opasiakacdd90c2020-02-17 22:05:51 +010065 volumeMounts:
66 - mountPath: /config-input
67 name: config-input
68 - mountPath: /config
69 name: config
70 image: "{{ .Values.global.envsubstImage }}"
71 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
72 name: {{ include "common.name" . }}-update-config
73 - command:
Mike Elliott13fed112018-02-28 08:33:33 -050074 - /root/ready.py
75 args:
76 - --container-name
jmac4f76af42018-03-28 20:36:47 +000077 - {{ .Values.config.dbPodName }}
Mike Elliott13fed112018-02-28 08:33:33 -050078 env:
79 - name: NAMESPACE
80 valueFrom:
81 fieldRef:
82 apiVersion: v1
83 fieldPath: metadata.namespace
84 image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
85 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
86 name: {{ include "common.name" . }}-readiness
87 containers:
88 - name: {{ include "common.name" . }}
BorislavGdf11cd52018-05-06 12:55:20 +000089 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
Mike Elliott13fed112018-02-28 08:33:33 -050090 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
jmac4f76af42018-03-28 20:36:47 +000091 command: ["/bin/bash"]
92 args: ["-c", "cd /opt/onap/ccsdk/dgbuilder/ && ./start.sh sdnc1.0 && wait"]
Mike Elliott13fed112018-02-28 08:33:33 -050093 ports:
94 - containerPort: {{ .Values.service.internalPort }}
95 readinessProbe:
96 tcpSocket:
97 port: {{ .Values.service.internalPort }}
98 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
99 periodSeconds: {{ .Values.readiness.periodSeconds }}
100 env:
Mike Elliott13fed112018-02-28 08:33:33 -0500101 - name: SDNC_CONFIG_DIR
102 value: /opt/onap/sdnc/data/properties
103 volumeMounts:
104 - mountPath: /etc/localtime
105 name: localtime
106 readOnly: true
107 - name: config
108 mountPath: /opt/app/application.properties
109 subPath: application.properties
110 - name: config
afenner291d7872018-05-23 14:19:55 +0000111 mountPath: /opt/onap/ccsdk/dgbuilder/releases/sdnc1.0/conf/svclogic.properties
Mike Elliott13fed112018-02-28 08:33:33 -0500112 subPath: svclogic.properties
113 - name: config
afenner291d7872018-05-23 14:19:55 +0000114 mountPath: /opt/onap/ccsdk/dgbuilder/svclogic/svclogic.properties
Mike Elliott13fed112018-02-28 08:33:33 -0500115 subPath: svclogic.properties
Krzysztof Opasiakacdd90c2020-02-17 22:05:51 +0100116 - name: config
afenner291d7872018-05-23 14:19:55 +0000117 mountPath: /opt/onap/ccsdk/dgbuilder/releases/sdnc1.0/customSettings.js
Mike Elliott13fed112018-02-28 08:33:33 -0500118 subPath: customSettings.js
119 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +0000120{{ include "common.resources" . | indent 12 }}
Mike Elliott13fed112018-02-28 08:33:33 -0500121 {{- if .Values.nodeSelector }}
122 nodeSelector:
123{{ toYaml .Values.nodeSelector | indent 10 }}
124 {{- end -}}
125 {{- if .Values.affinity }}
126 affinity:
127{{ toYaml .Values.affinity | indent 10 }}
128 {{- end }}
129 volumes:
130 - name: localtime
131 hostPath:
132 path: /etc/localtime
Krzysztof Opasiakacdd90c2020-02-17 22:05:51 +0100133 - name: config-input
Mike Elliott13fed112018-02-28 08:33:33 -0500134 configMap:
135 name: {{ include "common.fullname" . }}-config
Krzysztof Opasiakacdd90c2020-02-17 22:05:51 +0100136 - name: config
137 emptyDir:
138 medium: Memory
Mike Elliott13fed112018-02-28 08:33:33 -0500139 imagePullSecrets:
140 - name: "{{ include "common.namespace" . }}-docker-registry-key"