Krzysztof Opasiak | ab7a6bb | 2020-03-24 03:30:51 +0100 | [diff] [blame] | 1 | {{/* |
Mohammadreza Pasandideh | b642ee5 | 2018-06-19 15:19:53 -0400 | [diff] [blame] | 2 | # Copyright © 2018 Amdocs |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
Krzysztof Opasiak | ab7a6bb | 2020-03-24 03:30:51 +0100 | [diff] [blame] | 15 | */}} |
Mohammadreza Pasandideh | b642ee5 | 2018-06-19 15:19:53 -0400 | [diff] [blame] | 16 | |
Grzegorz-Lis | 1318a77 | 2020-07-23 15:08:43 +0200 | [diff] [blame] | 17 | apiVersion: apps/v1 |
Mohammadreza Pasandideh | b642ee5 | 2018-06-19 15:19:53 -0400 | [diff] [blame] | 18 | kind: Deployment |
Alexander Dehn | 9b797d6 | 2020-04-21 09:53:50 +0000 | [diff] [blame] | 19 | metadata: {{- include "common.resourceMetadata" . | nindent 2 }} |
Mohammadreza Pasandideh | b642ee5 | 2018-06-19 15:19:53 -0400 | [diff] [blame] | 20 | spec: |
Grzegorz-Lis | 1318a77 | 2020-07-23 15:08:43 +0200 | [diff] [blame] | 21 | selector: |
| 22 | matchLabels: |
| 23 | app: {{ include "common.name" . }} |
Mohammadreza Pasandideh | b642ee5 | 2018-06-19 15:19:53 -0400 | [diff] [blame] | 24 | replicas: 1 |
Alexander Dehn | 9b797d6 | 2020-04-21 09:53:50 +0000 | [diff] [blame] | 25 | selector: {{- include "common.selectors" . | nindent 4 }} |
Mohammadreza Pasandideh | b642ee5 | 2018-06-19 15:19:53 -0400 | [diff] [blame] | 26 | template: |
Alexander Dehn | 9b797d6 | 2020-04-21 09:53:50 +0000 | [diff] [blame] | 27 | metadata: {{- include "common.templateMetadata" . | nindent 6 }} |
Mohammadreza Pasandideh | b642ee5 | 2018-06-19 15:19:53 -0400 | [diff] [blame] | 28 | spec: |
| 29 | initContainers: |
| 30 | - command: |
Sylvain Desbureaux | 1694e1d | 2020-08-21 09:58:25 +0200 | [diff] [blame] | 31 | - /app/ready.py |
Mohammadreza Pasandideh | b642ee5 | 2018-06-19 15:19:53 -0400 | [diff] [blame] | 32 | args: |
| 33 | - --container-name |
| 34 | - sdnc |
| 35 | - --container-name |
| 36 | - consul |
| 37 | env: |
| 38 | - name: NAMESPACE |
| 39 | valueFrom: |
| 40 | fieldRef: |
| 41 | apiVersion: v1 |
| 42 | fieldPath: metadata.namespace |
Sylvain Desbureaux | cbc703c | 2020-11-19 17:52:07 +0100 | [diff] [blame] | 43 | image: {{ include "repositoryGenerator.image.readiness" . }} |
Mohammadreza Pasandideh | b642ee5 | 2018-06-19 15:19:53 -0400 | [diff] [blame] | 44 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 45 | name: {{ include "common.name" . }}-readiness |
| 46 | containers: |
| 47 | - name: {{ include "common.name" . }} |
Sylvain Desbureaux | cbc703c | 2020-11-19 17:52:07 +0100 | [diff] [blame] | 48 | image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }} |
Mohammadreza Pasandideh | b642ee5 | 2018-06-19 15:19:53 -0400 | [diff] [blame] | 49 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 50 | envFrom: |
| 51 | - configMapRef: |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 52 | name: {{ include "common.release" . }}-sdnc-env |
Mohammadreza Pasandideh | b642ee5 | 2018-06-19 15:19:53 -0400 | [diff] [blame] | 53 | workingDir: "/app" |
| 54 | command: [ "bin/prom.sh" ] |
| 55 | volumeMounts: |
| 56 | - name: localtime |
| 57 | mountPath: /etc/localtime |
| 58 | readOnly: true |
| 59 | - name: prom-config |
| 60 | mountPath: /app/config |
| 61 | - name: prom-scripts |
| 62 | mountPath: /app/bin |
| 63 | - name: core-dns-keyfile |
| 64 | mountPath: /app/config/coredns |
Satoshi Fujii | 54bfd17 | 2021-07-04 16:39:41 +0000 | [diff] [blame^] | 65 | resources: {{ include "common.resources" . | nindent 10 }} |
| 66 | {{- if .Values.nodeSelector }} |
| 67 | nodeSelector: {{ toYaml .Values.nodeSelector | nindent 8 }} |
| 68 | {{- end }} |
| 69 | {{- if .Values.affinity }} |
| 70 | affinity: {{ toYaml .Values.affinity | nindent 8 }} |
| 71 | {{- end }} |
Mohammadreza Pasandideh | b642ee5 | 2018-06-19 15:19:53 -0400 | [diff] [blame] | 72 | volumes: |
| 73 | - name: localtime |
| 74 | hostPath: |
| 75 | path: /etc/localtime |
| 76 | - name: prom-config |
| 77 | configMap: |
| 78 | name: {{ include "common.fullname" . }}-configmap |
| 79 | - name: prom-scripts |
| 80 | configMap: |
| 81 | name: {{ include "common.fullname" . }}-scripts |
| 82 | defaultMode: 0755 |
| 83 | - name: core-dns-keyfile |
Sylvain Desbureaux | 25e01d5 | 2019-12-09 11:06:39 +0100 | [diff] [blame] | 84 | {{- if .Values.persistence.enabled }} |
| 85 | persistentVolumeClaim: |
| 86 | claimName: {{ include "common.fullname" . }} |
| 87 | {{- else }} |
| 88 | emptyDir: {} |
| 89 | {{- end }} |
Mohammadreza Pasandideh | b642ee5 | 2018-06-19 15:19:53 -0400 | [diff] [blame] | 90 | imagePullSecrets: |
| 91 | - name: {{ include "common.namespace" . }}-docker-registry-key" |