[MULTICLOUD] Service mesh compatibility
[oom.git] / kubernetes / multicloud / components / multicloud-vio / 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: apps/v1
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: {{ include "common.release" . }}
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: {{ include "common.release" . }}
38       name: {{ include "common.name" . }}
39       annotations:
40         sidecar.istio.io/inject: "{{.Values.istioSidecar}}"
41     spec:
42      containers:
43      - env:
44        - name: MSB_PROTO
45          value: "{{ if (include "common.needTLS" .) }}https{{ else }}http{{ end }}"
46        - name: MSB_ADDR
47          value: "{{ .Values.config.msbgateway }}.{{ include "common.namespace" . }}"
48        - name: MSB_PORT
49          value: "{{- if (include "common.needTLS" .) }}{{ .Values.config.msbPort }}{{ else }}{{ .Values.config.msbPlainPort }}{{ end }}"
50        - name: AAI_ADDR
51          value: "aai.{{ include "common.namespace" . }}"
52        - name: AAI_PORT
53          value: "{{- if (include "common.needTLS" .) }}{{ .Values.config.aai.aaiPort }}{{ else }}{{ .Values.config.aai.aaiPlainPort }}{{ end }}"
54        - name: AAI_SCHEMA_VERSION
55          value: "{{ .Values.config.aai.schemaVersion }}"
56        - name: AAI_USERNAME
57          value: "{{ .Values.config.aai.username }}"
58        - name: AAI_PASSWORD
59          value: "{{ .Values.config.aai.password }}"
60        name: {{ include "common.name" . }}
61        volumeMounts:
62        - mountPath: "{{ .Values.log.path }}"
63          name: vio-log
64        - mountPath: /opt/vio/vio/pub/config/log.yml
65          name: vio-logconfig
66          subPath: log.yml
67        resources:
68 {{ include "common.resources" . | indent 12 }}
69        image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
70        imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
71        ports:
72        - containerPort: {{ .Values.service.internalPort }}
73        # disable liveness probe when breakpoints set in debugger
74        # so K8s doesn't restart unresponsive container
75        {{- if eq .Values.liveness.enabled true }}
76        livenessProbe:
77          httpGet:
78            path: /api/multicloud-vio/v0/swagger.json
79            port: {{ .Values.service.internalPort }}
80            scheme: HTTP
81          initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
82          periodSeconds: {{ .Values.liveness.periodSeconds }}
83          timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
84          successThreshold: {{ .Values.liveness.successThreshold }}
85          failureThreshold: {{ .Values.liveness.failureThreshold }}
86        {{ end -}}
87        # side car containers
88      {{ include "common.log.sidecar" . | nindent 5 }}
89      serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
90      volumes:
91      - name: vio-log
92        emptyDir: {}
93      {{ include "common.log.volumes" (dict "dot" . "configMapNamePrefix" (tpl .Values.logConfigMapNamePrefix . )) | nindent 5 }}
94      - name: vio-logconfig
95        configMap:
96          name: {{ include "common.fullname" . }}-log-configmap
97      imagePullSecrets:
98      - name: "{{ include "common.namespace" . }}-docker-registry-key"
99      restartPolicy: Always