Jakub Latusek | d4e96f4 | 2020-10-21 13:36:29 +0200 | [diff] [blame] | 1 | {{/* |
jasmineWen | 09bc80d | 2018-03-21 18:21:17 +0000 | [diff] [blame] | 2 | # Copyright © 2017 Amdocs, Bell Canada |
Mukul | 2b4e753 | 2018-08-03 10:41:29 +0000 | [diff] [blame] | 3 | # Modifications Copyright © 2018 AT&T |
jasmineWen | 09bc80d | 2018-03-21 18:21:17 +0000 | [diff] [blame] | 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. |
Jakub Latusek | d4e96f4 | 2020-10-21 13:36:29 +0200 | [diff] [blame] | 16 | */}} |
jasmineWen | 09bc80d | 2018-03-21 18:21:17 +0000 | [diff] [blame] | 17 | |
Magdalena_Biernacka | 5a70efa | 2020-07-10 16:23:35 +0200 | [diff] [blame] | 18 | apiVersion: apps/v1 |
jasmineWen | 09bc80d | 2018-03-21 18:21:17 +0000 | [diff] [blame] | 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 "+" "_" }} |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 26 | release: {{ include "common.release" . }} |
jasmineWen | 09bc80d | 2018-03-21 18:21:17 +0000 | [diff] [blame] | 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" . }} |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 37 | release: {{ include "common.release" . }} |
jasmineWen | 09bc80d | 2018-03-21 18:21:17 +0000 | [diff] [blame] | 38 | name: {{ include "common.name" . }} |
| 39 | spec: |
BorislavG | 339b749 | 2018-05-07 09:02:35 +0000 | [diff] [blame] | 40 | imagePullSecrets: |
| 41 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |
Krzysztof Opasiak | 217acfd | 2020-11-25 16:54:36 +0100 | [diff] [blame] | 42 | initContainers: |
| 43 | - name: {{ include "common.name" . }}-chown |
| 44 | image: {{ .Values.global.busyboxRepository | default .Values.busyboxRepository }}/{{ .Values.global.busyboxImage | default .Values.busyboxImage }} |
BorislavG | 9a637a9 | 2018-04-12 13:57:58 +0000 | [diff] [blame] | 45 | command: |
Krzysztof Opasiak | 217acfd | 2020-11-25 16:54:36 +0100 | [diff] [blame] | 46 | - sh |
| 47 | args: |
| 48 | - -c |
Daniel Milaszkiewicz | 5591309 | 2020-11-16 13:50:18 +0000 | [diff] [blame] | 49 | - | |
Krzysztof Opasiak | 217acfd | 2020-11-25 16:54:36 +0100 | [diff] [blame] | 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 }} |
jasmineWen | 09bc80d | 2018-03-21 18:21:17 +0000 | [diff] [blame] | 72 | name: {{ include "common.name" . }} |
Mohammadreza Pasandideh | b642ee5 | 2018-06-19 15:19:53 -0400 | [diff] [blame] | 73 | env: |
| 74 | - name: SDNC_ODL_COUNT |
| 75 | value: "{{ .Values.sdnc.replicaCount }}" |
| 76 | - name: SDNC_IS_PRIMARY_CLUSTER |
| 77 | value: "{{ .Values.sdnc.config.isPrimaryCluster }}" |
jasmineWen | 09bc80d | 2018-03-21 18:21:17 +0000 | [diff] [blame] | 78 | volumeMounts: |
Krzysztof Opasiak | 217acfd | 2020-11-25 16:54:36 +0100 | [diff] [blame] | 79 | - mountPath: /consul/config |
| 80 | name: consul-agent-config-dir |
jasmineWen | 09bc80d | 2018-03-21 18:21:17 +0000 | [diff] [blame] | 81 | - mountPath: /consul/scripts |
| 82 | name: consul-agent-scripts-config |
| 83 | - mountPath: /consul/certs |
| 84 | name: consul-agent-certs-config |
Sylvain Desbureaux | 5e16401 | 2020-09-23 13:35:31 +0200 | [diff] [blame] | 85 | resources: {{ include "common.resources" . | nindent 10 }} |
farida azmy | 1b30d53 | 2021-04-11 10:41:28 +0200 | [diff] [blame] | 86 | serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}} |
jasmineWen | 09bc80d | 2018-03-21 18:21:17 +0000 | [diff] [blame] | 87 | volumes: |
Krzysztof Opasiak | 217acfd | 2020-11-25 16:54:36 +0100 | [diff] [blame] | 88 | - name: consul-agent-config-dir |
| 89 | emptyDir: {} |
jasmineWen | 09bc80d | 2018-03-21 18:21:17 +0000 | [diff] [blame] | 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 |