Merge "Update AAI credentials for AAF integration"
[oom.git] / kubernetes / multicloud / templates / deployment.yaml
1 {{/*
2 # Copyright © 2017 Amdocs, Bell Canada
3 # Modifications Copyright © 2018 AT&T
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #       http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 */}}
17
18 apiVersion: extensions/v1beta1
19 kind: Deployment
20 metadata:
21   name: {{ include "common.fullname" . }}
22   namespace: {{ include "common.namespace" . }}
23   labels:
24     app: {{ include "common.name" . }}
25     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
26     release: {{ .Release.Name }}
27     heritage: {{ .Release.Service }}
28 spec:
29   replicas: {{ .Values.replicaCount }}
30   selector:
31     matchLabels:
32       app: {{ include "common.name" . }}
33   template:
34     metadata:
35       labels:
36         app: {{ include "common.name" . }}
37         release: {{ .Release.Name }}
38       name: {{ include "common.name" . }}
39     spec:
40      containers:
41      - env:
42        - name: MSB_ADDR
43          value: {{ .Values.config.msbgateway }}.{{ include "common.namespace" . }}
44        - name: MSB_PORT
45          value: "{{ .Values.config.msbPort }}"
46        - name: AAI_ADDR
47          value: "aai.{{ include "common.namespace" . }}"
48        - name: AAI_PORT
49          value: "{{ .Values.config.aai.port }}"
50        - name: AAI_SCHEMA_VERSION
51          value: "{{ .Values.config.aai.schemaVersion }}"
52        - name: AAI_USERNAME
53          value: "{{ .Values.config.aai.username }}"
54        - name: AAI_PASSWORD
55          value: "{{ .Values.config.aai.password }}"
56        resources:
57 {{ include "common.resources" . | indent 12 }}
58        image: "{{ include "common.repository" . }}/{{ .Values.image }}"
59        imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
60        name: {{ include "common.name" . }}
61        volumeMounts:
62        - mountPath: /var/log/onap
63          name: framework-log
64        - mountPath: /opt/multivimbroker/multivimbroker/pub/config/log.yml
65          name: framework-logconfig
66          subPath: log.yml
67        - mountPath: /opt/multivimbroker/multivimbroker/pub/config/provider-plugin.json
68          name: provider-plugin
69          subPath: provider-plugin.json
70        ports:
71        - containerPort: {{ .Values.service.internalPort }}
72        # disable liveness probe when breakpoints set in debugger
73        # so K8s doesn't restart unresponsive container
74        {{- if eq .Values.liveness.enabled true }}
75        livenessProbe:
76          httpGet:
77            path: /api/multicloud/v0/swagger.json
78            port: {{ .Values.service.internalPort }}
79            scheme: HTTP
80          initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
81          periodSeconds: {{ .Values.liveness.periodSeconds }}
82          timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
83          successThreshold: {{ .Values.liveness.successThreshold }}
84          failureThreshold: {{ .Values.liveness.failureThreshold }}
85        {{ end -}}
86
87       # side car containers
88      - image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
89        imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
90        name: filebeat-onap
91        volumeMounts:
92        - mountPath: /usr/share/filebeat/filebeat.yml
93          name: filebeat-conf
94          subPath: filebeat.yml
95        - mountPath: /var/log/onap
96          name: framework-log
97        - mountPath: /usr/share/filebeat/data
98          name: framework-data-filebeat
99      volumes:
100      - name: framework-log
101        emptyDir: {}
102      - name: provider-plugin
103        configMap:
104          name: {{ include "common.fullname" . }}-provider-plugin-configmap
105      - name: framework-data-filebeat
106        emptyDir: {}
107      - name: filebeat-conf
108        configMap:
109          name: multicloud-filebeat-configmap
110      - name: framework-logconfig
111        configMap:
112          name: {{ include "common.fullname" . }}-log-configmap
113      imagePullSecrets:
114      - name: "{{ include "common.namespace" . }}-docker-registry-key"
115      restartPolicy: Always