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" |
jasmineWen | 09bc80d | 2018-03-21 18:21:17 +0000 | [diff] [blame] | 42 | containers: |
Mike Elliott | 0440a32 | 2018-04-25 14:24:51 -0400 | [diff] [blame] | 43 | - image: "{{ include "common.repository" . }}/{{ .Values.image }}" |
BorislavG | 9a637a9 | 2018-04-12 13:57:58 +0000 | [diff] [blame] | 44 | command: |
| 45 | - /bin/sh |
| 46 | - "-c" |
| 47 | - | |
Mohammadreza Pasandideh | b642ee5 | 2018-06-19 15:19:53 -0400 | [diff] [blame] | 48 | apk update && apk add jq |
BorislavG | 9a637a9 | 2018-04-12 13:57:58 +0000 | [diff] [blame] | 49 | cp /tmp/consul/config/* /consul/config |
Priyanka Jain | 1fda968 | 2018-05-09 08:42:50 +0000 | [diff] [blame] | 50 | /usr/local/bin/docker-entrypoint.sh agent -client 0.0.0.0 -enable-script-checks -retry-join {{ .Values.consulServer.nameOverride }} |
jasmineWen | 09bc80d | 2018-03-21 18:21:17 +0000 | [diff] [blame] | 51 | name: {{ include "common.name" . }} |
Mohammadreza Pasandideh | b642ee5 | 2018-06-19 15:19:53 -0400 | [diff] [blame] | 52 | env: |
| 53 | - name: SDNC_ODL_COUNT |
| 54 | value: "{{ .Values.sdnc.replicaCount }}" |
| 55 | - name: SDNC_IS_PRIMARY_CLUSTER |
| 56 | value: "{{ .Values.sdnc.config.isPrimaryCluster }}" |
jasmineWen | 09bc80d | 2018-03-21 18:21:17 +0000 | [diff] [blame] | 57 | volumeMounts: |
BorislavG | 9a637a9 | 2018-04-12 13:57:58 +0000 | [diff] [blame] | 58 | - mountPath: /tmp/consul/config |
jasmineWen | 09bc80d | 2018-03-21 18:21:17 +0000 | [diff] [blame] | 59 | 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 Desbureaux | 5e16401 | 2020-09-23 13:35:31 +0200 | [diff] [blame] | 64 | resources: {{ include "common.resources" . | nindent 10 }} |
jasmineWen | 09bc80d | 2018-03-21 18:21:17 +0000 | [diff] [blame] | 65 | 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 |