Merge "[DMAAP] DMaaP ServiceMesh compatibility"
[oom.git] / kubernetes / consul / 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     spec:
40       imagePullSecrets:
41       - name: "{{ include "common.namespace" . }}-docker-registry-key"
42       initContainers:
43       - name: {{ include "common.name" . }}-chown
44         image: {{ .Values.global.busyboxRepository | default .Values.busyboxRepository }}/{{ .Values.global.busyboxImage | default .Values.busyboxImage }}
45         command:
46         - sh
47         args:
48         - -c
49         - |
50           cp -r -L /tmp/consul/config/* /consul/config/
51           chown -R {{ .Values.consulUID }}:{{ .Values.consulGID }} /consul/config
52           ls -la /consul/config
53         volumeMounts:
54         - mountPath: /tmp/consul/config
55           name: consul-agent-config
56         - mountPath: /consul/config
57           name: consul-agent-config-dir
58       containers:
59       - image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
60         securityContext:
61           runAsUser: {{ .Values.securityContext.runAsUser }}
62           runAsGroup: {{ .Values.securityContext.runAsGroup }}
63         command:
64         - docker-entrypoint.sh
65         args:
66         - agent
67         - -client
68         - 0.0.0.0
69         - -enable-script-checks
70         - -retry-join
71         - {{ .Values.consulServer.nameOverride }}
72         name: {{ include "common.name" . }}
73         env:
74           - name: SDNC_ODL_COUNT
75             value: "{{ .Values.sdnc.replicaCount }}"
76           - name: SDNC_IS_PRIMARY_CLUSTER
77             value: "{{ .Values.sdnc.config.isPrimaryCluster }}"
78         volumeMounts:
79         - mountPath: /consul/config
80           name: consul-agent-config-dir
81         - mountPath: /consul/scripts
82           name: consul-agent-scripts-config
83         - mountPath: /consul/certs
84           name: consul-agent-certs-config
85         resources: {{ include "common.resources" . | nindent 10 }}
86       serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
87       volumes:
88       - name: consul-agent-config-dir
89         emptyDir: {}
90       - configMap:
91           name: {{ include "common.fullname" . }}-configmap
92         name: consul-agent-config
93       - configMap:
94           name: {{ include "common.fullname" . }}-scripts-configmap
95           defaultMode: 0755
96         name: consul-agent-scripts-config
97       - secret:
98           secretName: {{ include "common.fullname" . }}-certs-secret
99         name: consul-agent-certs-config