blob: c5d12a4693700f5dc32825e014df75ba08988262 [file] [log] [blame]
Jakub Latusekd4e96f42020-10-21 13:36:29 +02001{{/*
jasmineWen09bc80d2018-03-21 18:21:17 +00002# Copyright © 2017 Amdocs, Bell Canada
Mukul2b4e7532018-08-03 10:41:29 +00003# Modifications Copyright © 2018 AT&T
jasmineWen09bc80d2018-03-21 18:21:17 +00004#
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.
Jakub Latusekd4e96f42020-10-21 13:36:29 +020016*/}}
jasmineWen09bc80d2018-03-21 18:21:17 +000017
Magdalena_Biernacka5a70efa2020-07-10 16:23:35 +020018apiVersion: apps/v1
jasmineWen09bc80d2018-03-21 18:21:17 +000019kind: Deployment
20metadata:
21 name: {{ include "common.fullname" . }}
22 namespace: {{ include "common.namespace" . }}
23 labels:
24 app: {{ include "common.name" . }}
25 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010026 release: {{ include "common.release" . }}
jasmineWen09bc80d2018-03-21 18:21:17 +000027 heritage: {{ .Release.Service }}
28spec:
29 replicas: {{ .Values.replicaCount }}
30 selector:
31 matchLabels:
32 app: {{ include "common.name" . }}
33 template:
34 metadata:
35 labels:
36 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010037 release: {{ include "common.release" . }}
jasmineWen09bc80d2018-03-21 18:21:17 +000038 name: {{ include "common.name" . }}
39 spec:
BorislavG339b7492018-05-07 09:02:35 +000040 imagePullSecrets:
41 - name: "{{ include "common.namespace" . }}-docker-registry-key"
Krzysztof Opasiak217acfd2020-11-25 16:54:36 +010042 initContainers:
43 - name: {{ include "common.name" . }}-chown
44 image: {{ .Values.global.busyboxRepository | default .Values.busyboxRepository }}/{{ .Values.global.busyboxImage | default .Values.busyboxImage }}
BorislavG9a637a92018-04-12 13:57:58 +000045 command:
Krzysztof Opasiak217acfd2020-11-25 16:54:36 +010046 - sh
47 args:
48 - -c
Daniel Milaszkiewicz55913092020-11-16 13:50:18 +000049 - |
Krzysztof Opasiak217acfd2020-11-25 16:54:36 +010050 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 }}
jasmineWen09bc80d2018-03-21 18:21:17 +000072 name: {{ include "common.name" . }}
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -040073 env:
74 - name: SDNC_ODL_COUNT
75 value: "{{ .Values.sdnc.replicaCount }}"
76 - name: SDNC_IS_PRIMARY_CLUSTER
77 value: "{{ .Values.sdnc.config.isPrimaryCluster }}"
jasmineWen09bc80d2018-03-21 18:21:17 +000078 volumeMounts:
Krzysztof Opasiak217acfd2020-11-25 16:54:36 +010079 - mountPath: /consul/config
80 name: consul-agent-config-dir
jasmineWen09bc80d2018-03-21 18:21:17 +000081 - mountPath: /consul/scripts
82 name: consul-agent-scripts-config
83 - mountPath: /consul/certs
84 name: consul-agent-certs-config
Sylvain Desbureaux5e164012020-09-23 13:35:31 +020085 resources: {{ include "common.resources" . | nindent 10 }}
farida azmy1b30d532021-04-11 10:41:28 +020086 serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
jasmineWen09bc80d2018-03-21 18:21:17 +000087 volumes:
Krzysztof Opasiak217acfd2020-11-25 16:54:36 +010088 - name: consul-agent-config-dir
89 emptyDir: {}
jasmineWen09bc80d2018-03-21 18:21:17 +000090 - 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