Update nbi deployment to have DMAAP_HOST
[oom.git] / kubernetes / nbi / templates / deployment.yaml
1 # Copyright © 2018 Orange
2 # Modifications Copyright © 2018  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.
15
16 apiVersion: extensions/v1beta1
17 kind: Deployment
18 metadata:
19   name: {{ include "common.fullname" . }}
20   namespace: {{ include "common.namespace" . }}
21   labels:
22     app: {{ include "common.name" . }}
23     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
24     release: {{ .Release.Name }}
25     heritage: {{ .Release.Service }}
26 spec:
27   replicas: {{ .Values.replicaCount }}
28   template:
29     metadata:
30       labels:
31         app: {{ include "common.name" . }}
32         release: {{ .Release.Name }}
33         name: {{ include "common.fullname" . }}
34     spec:
35       containers:
36         - name: {{ include "common.name" . }}
37           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
38           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
39           ports:
40             - containerPort: {{ .Values.service.internalPort }}
41           # disable liveness probe when breakpoints set in debugger
42           # so K8s doesn't restart unresponsive container
43           {{ if .Values.liveness.enabled }}
44           livenessProbe:
45             tcpSocket:
46               port: {{ .Values.service.internalPort }}
47             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
48             periodSeconds: {{ .Values.liveness.periodSeconds }}
49           {{ end }}
50           readinessProbe:
51             tcpSocket:
52               port: {{ .Values.service.internalPort }}
53             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
54             periodSeconds: {{ .Values.readiness.periodSeconds }}
55           env:
56             - name: SPRING_DATASOURCE_URL
57               value: jdbc:mariadb://{{ .Values.mariadb.service.name }}.{{ include "common.namespace" . }}:{{.Values.mariadb.service.internalPort }}/{{ .Values.mariadb.config.db.database }}
58             - name: SPRING_DATASOURCE_USERNAME
59               value: {{ .Values.mariadb.config.db.user }}
60             - name: SPRING_DATASOURCE_PASSWORD
61               valueFrom:
62                 secretKeyRef:
63                   name: {{ template "common.fullname" . }}-secret
64                   key: db-user-password
65             - name: SPRING_DATA_MONGODB_HOST
66               value: {{ .Values.mongo.service.name }}.{{ include "common.namespace" . }}
67             - name: SPRING_DATA_MONGODB_PORT
68               value: "{{ .Values.mongo.service.internalPort }}"
69             - name: SPRING_DATA_MONGODB_DATABASE
70               value: {{ .Values.mongo.config.dbName }}
71             - name: ONAP_LCPCLOUDREGIONID
72               value: {{ .Values.config.openStackRegion }}
73             - name: ONAP_TENANTID
74               value: {{ .Values.config.openStackVNFTenantId | quote }}
75             - name: ONAP_CLOUDOWNER
76               value: {{ .Values.config.cloudOwner }}
77             - name: NBI_URL
78               value: "http://nbi.{{ include "common.namespace" . }}:8080/nbi/api/v3"
79             - name: SDC_HOST
80               value: "http://sdc-be.{{ include "common.namespace" . }}:8080"
81             - name: SDC_HEADER_ECOMPINSTANCEID
82               value: {{ .Values.config.ecompInstanceId }}
83             - name: SDC_HEADER_AUTHORIZATION
84               value: {{ .Values.sdc_authorization }}
85             - name: AAI_HOST
86               value: "https://aai.{{ include "common.namespace" . }}:8443"
87             - name: AAI_HEADER_AUTHORIZATION
88               value: {{ .Values.aai_authorization }}
89             - name: SO_HOST
90               value: http://so.{{ include "common.namespace" . }}:8080
91             {{- if .Values.so_authorization }}
92             - name: SO_HEADER_AUTHORIZATION
93               value: {{ .Values.so_authorization }}
94             {{- end }}
95             - name: DMAAP_HOST
96               value: "http://message-router.{{ include "common.namespace" . }}:3904"
97             - name: LOGGING_LEVEL_ORG_ONAP_NBI
98               value: {{ .Values.config.loglevel }}
99             - name: MSB_ENABLED
100               value: "true"
101             - name: MSB_DISCOVERY_HOST
102               value: "msb-discovery.{{ include "common.namespace" . }}"
103             - name: MSB_DISCOVERY_PORT
104               value: "10081"
105           volumeMounts:
106             - mountPath: /etc/localtime
107               name: localtime
108               readOnly: true
109           resources:
110 {{ include "common.resources" . | indent 12 }}
111         {{- if .Values.nodeSelector }}
112         nodeSelector:
113 {{ toYaml .Values.nodeSelector | indent 10 }}
114         {{- end -}}
115         {{- if .Values.affinity }}
116         affinity:
117 {{ toYaml .Values.affinity | indent 10 }}
118         {{- end }}
119       # side car containers
120         # - name: filebeat-onap
121         #   image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
122         #   imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
123         #   volumeMounts:
124         #   - mountPath: /usr/share/filebeat/filebeat.yml
125         #     name: filebeat-conf
126         #     subPath: filebeat.yml
127         #   - mountPath: /home/esr/works/logs
128         #     name: esr-server-logs
129         #   - mountPath: /usr/share/filebeat/data
130         #     name: esr-server-filebeat
131       volumes:
132         - name: localtime
133           hostPath:
134             path: /etc/localtime
135         # - name: filebeat-conf
136         #   configMap:
137         #     name: {{ include "common.fullname" . }}-esr-filebeat
138         # - name: esr-server-logs
139         #   emptyDir: {}
140         # - name: esr-server-filebeat
141         #   emptyDir: {}
142         # - name: esrserver-log
143         #   configMap:
144         #     name: {{ include "common.fullname" . }}-esr-esrserver-log
145       imagePullSecrets:
146       - name: "{{ include "common.namespace" . }}-docker-registry-key"