blob: 87ed6aa283192930817073727e0a7802908243d5 [file] [log] [blame]
jmac065e2ce2018-03-29 01:18:02 +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 "+" "_" }}
23 release: {{ .Release.Name }}
24 heritage: {{ .Release.Service }}
25spec:
26 replicas: {{ .Values.replicaCount }}
27 template:
28 metadata:
29 labels:
30 app: {{ include "common.name" . }}
31 release: {{ .Release.Name }}
32 spec:
33 initContainers:
34 - command:
35 - /root/ready.py
36 args:
37 - --container-name
38 - {{ .Values.config.mysqlChartName }}
39 - --container-name
40 - {{ .Values.config.sdncChartName }}
41 env:
42 - name: NAMESPACE
43 valueFrom:
44 fieldRef:
45 apiVersion: v1
46 fieldPath: metadata.namespace
47 image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
48 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
49 name: {{ include "common.name" . }}-readiness
50 containers:
51 - name: {{ include "common.name" . }}
52 command: ["/bin/bash"]
53 args: ["-c", "cd /opt/onap/sdnc/admportal/shell && ./start_portal.sh"]
BorislavGdf11cd52018-05-06 12:55:20 +000054 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
jmac065e2ce2018-03-29 01:18:02 +000055 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
56 ports:
57 - containerPort: {{ .Values.service.internalPort }}
58 # disable liveness probe when breakpoints set in debugger
59 # so K8s doesn't restart unresponsive container
jmac2d276e02018-04-18 01:25:38 +000060 {{ if .Values.liveness.enabled }}
jmac065e2ce2018-03-29 01:18:02 +000061 livenessProbe:
62 tcpSocket:
63 port: {{ .Values.service.internalPort }}
64 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
65 periodSeconds: {{ .Values.liveness.periodSeconds }}
jmac2d276e02018-04-18 01:25:38 +000066 {{ end }}
jmac065e2ce2018-03-29 01:18:02 +000067 readinessProbe:
68 tcpSocket:
69 port: {{ .Values.service.internalPort }}
70 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
71 periodSeconds: {{ .Values.readiness.periodSeconds }}
72 env:
73 - name: MYSQL_ROOT_PASSWORD
74 valueFrom:
75 secretKeyRef:
76 name: {{ template "common.fullname" . }}
77 key: db-root-password
78 - name: SDNC_CONFIG_DIR
79 value: "{{ .Values.config.configDir }}"
80 volumeMounts:
81 - mountPath: /etc/localtime
82 name: localtime
83 readOnly: true
jmaca68f4cb2018-05-10 22:44:19 +000084 - mountPath: {{ .Values.config.configDir }}/admportal.json
85 name: properties
86 subPath: admportal.json
87 - mountPath: {{ .Values.config.configDir }}/dblib.properties
88 name: properties
89 subPath: dblib.properties
90 - mountPath: {{ .Values.config.configDir }}/svclogic.properties
91 name: properties
92 subPath: svclogic.properties
93 - mountPath: {{ .Values.config.configDir }}/svclogic.properties.sdnctldb01
94 name: properties
95 subPath: svclogic.properties
96 - mountPath: {{ .Values.config.configDir }}/svclogic.properties.sdnctldb02
97 name: properties
98 subPath: svclogic.properties.sdnctldb02
jmac065e2ce2018-03-29 01:18:02 +000099 resources:
100{{ toYaml .Values.resources | indent 12 }}
101 {{- if .Values.nodeSelector }}
102 nodeSelector:
103{{ toYaml .Values.nodeSelector | indent 10 }}
104 {{- end -}}
105 {{- if .Values.affinity }}
106 affinity:
107{{ toYaml .Values.affinity | indent 10 }}
108 {{- end }}
109 volumes:
110 - name: localtime
111 hostPath:
112 path: /etc/localtime
jmaca68f4cb2018-05-10 22:44:19 +0000113 - name: properties
jmac065e2ce2018-03-29 01:18:02 +0000114 configMap:
jmaca68f4cb2018-05-10 22:44:19 +0000115 name: {{ include "common.fullname" . }}
116 defaultMode: 0644
jmac065e2ce2018-03-29 01:18:02 +0000117 imagePullSecrets:
BorislavGdf11cd52018-05-06 12:55:20 +0000118 - name: "{{ include "common.namespace" . }}-docker-registry-key"