blob: 6f1c57967fe79b4f005c6509d4336c41e7e124b7 [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 Opasiak7af75e92020-11-02 21:13:15 +010042 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
jasmineWen09bc80d2018-03-21 18:21:17 +000058 containers:
Mike Elliott0440a322018-04-25 14:24:51 -040059 - image: "{{ include "common.repository" . }}/{{ .Values.image }}"
BorislavG9a637a92018-04-12 13:57:58 +000060 command:
Krzysztof Opasiak7af75e92020-11-02 21:13:15 +010061 - sh
62 args:
63 - /usr/local/bin/docker-entrypoint.sh
64 - agent
65 - -client
66 - 0.0.0.0
67 - -enable-script-checks
68 - -retry-join
69 - {{ .Values.consulServer.nameOverride }}
jasmineWen09bc80d2018-03-21 18:21:17 +000070 name: {{ include "common.name" . }}
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -040071 env:
72 - name: SDNC_ODL_COUNT
73 value: "{{ .Values.sdnc.replicaCount }}"
74 - name: SDNC_IS_PRIMARY_CLUSTER
75 value: "{{ .Values.sdnc.config.isPrimaryCluster }}"
jasmineWen09bc80d2018-03-21 18:21:17 +000076 volumeMounts:
Krzysztof Opasiak7af75e92020-11-02 21:13:15 +010077 - mountPath: /consul/config
78 name: consul-agent-config-dir
jasmineWen09bc80d2018-03-21 18:21:17 +000079 - mountPath: /consul/scripts
80 name: consul-agent-scripts-config
81 - mountPath: /consul/certs
82 name: consul-agent-certs-config
Sylvain Desbureaux5e164012020-09-23 13:35:31 +020083 resources: {{ include "common.resources" . | nindent 10 }}
jasmineWen09bc80d2018-03-21 18:21:17 +000084 volumes:
Krzysztof Opasiak7af75e92020-11-02 21:13:15 +010085 - name: consul-agent-config-dir
86 emptyDir: {}
jasmineWen09bc80d2018-03-21 18:21:17 +000087 - configMap:
88 name: {{ include "common.fullname" . }}-configmap
89 name: consul-agent-config
90 - configMap:
91 name: {{ include "common.fullname" . }}-scripts-configmap
92 defaultMode: 0755
93 name: consul-agent-scripts-config
94 - secret:
95 secretName: {{ include "common.fullname" . }}-certs-secret
96 name: consul-agent-certs-config