blob: 51c6eb72d5b7ff39c4a1237223a64c690c85340e [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"
jasmineWen09bc80d2018-03-21 18:21:17 +000042 containers:
Mike Elliott0440a322018-04-25 14:24:51 -040043 - image: "{{ include "common.repository" . }}/{{ .Values.image }}"
BorislavG9a637a92018-04-12 13:57:58 +000044 command:
45 - /bin/sh
46 - "-c"
47 - |
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -040048 apk update && apk add jq
BorislavG9a637a92018-04-12 13:57:58 +000049 cp /tmp/consul/config/* /consul/config
Priyanka Jain1fda9682018-05-09 08:42:50 +000050 /usr/local/bin/docker-entrypoint.sh agent -client 0.0.0.0 -enable-script-checks -retry-join {{ .Values.consulServer.nameOverride }}
jasmineWen09bc80d2018-03-21 18:21:17 +000051 name: {{ include "common.name" . }}
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -040052 env:
53 - name: SDNC_ODL_COUNT
54 value: "{{ .Values.sdnc.replicaCount }}"
55 - name: SDNC_IS_PRIMARY_CLUSTER
56 value: "{{ .Values.sdnc.config.isPrimaryCluster }}"
jasmineWen09bc80d2018-03-21 18:21:17 +000057 volumeMounts:
BorislavG9a637a92018-04-12 13:57:58 +000058 - mountPath: /tmp/consul/config
jasmineWen09bc80d2018-03-21 18:21:17 +000059 name: consul-agent-config
60 - mountPath: /consul/scripts
61 name: consul-agent-scripts-config
62 - mountPath: /consul/certs
63 name: consul-agent-certs-config
Sylvain Desbureaux5e164012020-09-23 13:35:31 +020064 resources: {{ include "common.resources" . | nindent 10 }}
jasmineWen09bc80d2018-03-21 18:21:17 +000065 volumes:
66 - configMap:
67 name: {{ include "common.fullname" . }}-configmap
68 name: consul-agent-config
69 - configMap:
70 name: {{ include "common.fullname" . }}-scripts-configmap
71 defaultMode: 0755
72 name: consul-agent-scripts-config
73 - secret:
74 secretName: {{ include "common.fullname" . }}-certs-secret
75 name: consul-agent-certs-config