blob: a4e821ed78b38c3b8e38f17b70d5f57fd976fbd7 [file] [log] [blame]
Priyanka5fdca022018-03-13 12:53:06 +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:
Mandeep Khinda561a91c2018-08-23 14:08:52 +000035 - /root/job_complete.py
Priyanka5fdca022018-03-13 12:53:06 +000036 args:
Sonsino, Ofir (os0695)2dda01d2018-05-30 18:41:14 +030037 - --job-name
Julien Barbot8cd94472018-10-23 12:15:31 +020038 - {{ include "common.fullname" . }}-galera-config
Priyanka5fdca022018-03-13 12:53:06 +000039 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" . }}
BorislavGdf11cd52018-05-06 12:55:20 +000050 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
Priyanka5fdca022018-03-13 12:53:06 +000051 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
Priyanka5fdca022018-03-13 12:53:06 +000052 ports:
53 - containerPort: {{ .Values.service.internalPort }}
54 # disable liveness probe when breakpoints set in debugger
55 # so K8s doesn't restart unresponsive container
56 {{- if eq .Values.liveness.enabled true }}
57 livenessProbe:
58 tcpSocket:
59 port: {{ .Values.service.internalPort }}
60 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
61 periodSeconds: {{ .Values.liveness.periodSeconds }}
62 {{ end -}}
63 readinessProbe:
64 tcpSocket:
65 port: {{ .Values.service.internalPort }}
66 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
67 periodSeconds: {{ .Values.readiness.periodSeconds }}
68 env:
69 - name: ASDC_CLIENT_REST_HOST
mahendrrbb49cf92018-04-16 08:33:47 +000070 value: sdc-be.{{ include "common.namespace" . }}
Priyanka5fdca022018-03-13 12:53:06 +000071 - name: ASDC_CLIENT_REST_AUTH
72 value: "{{ .Values.config.asdcclientrestauth }}"
73 - name: ASDC_CLIENT_REST_PORT
74 value: "{{ .Values.config.asdcclientrestport }}"
biniekb8127662018-11-15 11:25:08 +010075 - name: VID_AAI_URL
76 value: https://aai.{{ include "common.namespace" . }}:{{ .Values.config.vidaaiport }}
Priyanka5fdca022018-03-13 12:53:06 +000077 - name: VID_ECOMP_SHARED_CONTEXT_REST_URL
Roger Maitland0c6d4b82018-05-02 16:03:15 -040078 value: http://portal-app.{{ include "common.namespace" . }}:{{ .Values.config.onapport }}/ONAPPORTAL/context
Priyanka5fdca022018-03-13 12:53:06 +000079 - name: VID_MSO_SERVER_URL
Piotr Darosz2460a792018-10-05 09:57:42 +020080 value: http://so.{{ include "common.namespace" . }}:{{ .Values.config.msoport }}/onap/so/infra
Priyanka5fdca022018-03-13 12:53:06 +000081 - name: VID_MSO_PASS
82 value: "{{ .Values.config.vidmsopass }}"
83 - name: MSO_DME2_SERVER_URL
84 value: "{{ .Values.config.msodme2serverurl }}"
85 - name: MSO_DME2_ENABLED
86 value: {{ .Values.global.debugEnabled | default .Values.debugEnabled | quote }}
87 - name: VID_ECOMP_REDIRECT_URL
Sonsino, Ofir (os0695)c9a6edf2018-10-18 11:26:03 +030088 value: https://{{ .Values.config.portalhost }}:{{ .Values.config.onapport }}/ONAPPORTAL/login.htm
Priyanka5fdca022018-03-13 12:53:06 +000089 - name: VID_ECOMP_REST_URL
Sonsino, Ofir (os0695)73d69b42018-10-31 10:55:49 +020090 value: https://portal-app:{{ .Values.config.onapportrest }}/ONAPPORTAL/auxapi
Sonsino, Ofir (os0695)c9a6edf2018-10-18 11:26:03 +030091 - name: VID_ROLE_ACCESS_CENTRALIZED
92 value: "{{ .Values.config.roleaccesscentralized }}"
Priyanka5fdca022018-03-13 12:53:06 +000093 - name: VID_CONTACT_US_LINK
94 value: "{{ .Values.config.vidcontactuslink }}"
95 - name: VID_UEB_URL_LIST
BorislavG1ffbd992018-04-24 07:56:27 +000096 value: message-router.{{ include "common.namespace" . }}
Priyanka5fdca022018-03-13 12:53:06 +000097 - name: VID_MYSQL_HOST
BorislavG1ffbd992018-04-24 07:56:27 +000098 value: "{{ .Values.config.vidmysqlhost }}"
Priyanka5fdca022018-03-13 12:53:06 +000099 - name: VID_MYSQL_PORT
100 value: "{{ .Values.config.vidmysqlport }}"
101 - name: VID_MYSQL_DBNAME
102 value: "{{ .Values.config.vidmysqldbname }}"
103 - name: VID_MYSQL_USER
104 value: "{{ .Values.config.vidmysqluser }}"
105 - name: VID_MYSQL_PASS
Sonsino, Ofir (os0695)2dda01d2018-05-30 18:41:14 +0300106 value: "{{ .Values.config.vidmysqlpassword }}"
107 #valueFrom:
108 # secretKeyRef: {name: {{ include "common.fullname" . }}, key: vid-password}
Priyanka5fdca022018-03-13 12:53:06 +0000109 - name: VID_MYSQL_MAXCONNECTIONS
110 value: "{{ .Values.config.vidmysqlmaxconnections }}"
111 volumeMounts:
Bartosz Gardziejewski533bbdb2019-08-07 14:49:10 +0200112 - mountPath: /opt/app/vid/etc
113 name: vid-certs
Priyanka5fdca022018-03-13 12:53:06 +0000114 - mountPath: /etc/localtime
115 name: localtime
116 readOnly: true
117 - mountPath: /var/log/onap
118 name: vid-logs
119 - mountPath: /tmp/logback.xml
120 name: vid-logback
121 subPath: logback.xml
122 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +0000123{{ include "common.resources" . | indent 12 }}
Priyanka5fdca022018-03-13 12:53:06 +0000124 {{- if .Values.nodeSelector }}
125 nodeSelector:
126{{ toYaml .Values.nodeSelector | indent 10 }}
127 {{- end -}}
128 {{- if .Values.affinity }}
129 affinity:
130{{ toYaml .Values.affinity | indent 10 }}
131 {{- end }}
132 # side car containers
133 - name: filebeat-onap
134 image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
135 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
136 volumeMounts:
137 - mountPath: /usr/share/filebeat/filebeat.yml
138 name: filebeat-conf
139 subPath: filebeat.yml
140 - mountPath: /var/log/onap
141 name: vid-logs
142 - mountPath: /usr/share/filebeat/data
143 name: vid-data-filebeat
144 volumes:
Bartosz Gardziejewski533bbdb2019-08-07 14:49:10 +0200145 - name: vid-certs
146 secret:
147 secretName: {{ include "common.fullname" . }}-certs
Priyanka5fdca022018-03-13 12:53:06 +0000148 - name: localtime
149 hostPath:
150 path: /etc/localtime
151 - name: filebeat-conf
152 configMap:
153 name: {{ include "common.fullname" . }}-filebeat-configmap
154 - name: vid-logs
155 emptyDir: {}
156 - name: vid-data-filebeat
157 emptyDir: {}
158 - name: vid-logback
159 configMap:
160 name: {{ include "common.fullname" . }}-log-configmap
161 imagePullSecrets:
162 - name: "{{ include "common.namespace" . }}-docker-registry-key"
Sonsino, Ofir (os0695)2dda01d2018-05-30 18:41:14 +0300163