Sylvain Desbureaux | 8f9ef35 | 2020-04-14 15:02:57 +0200 | [diff] [blame] | 1 | {*/ |
| 2 | # Copyright © 2020 AT&T, Orange |
| 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. |
| 15 | */} |
| 16 | |
| 17 | {{- define "aaf.deployment" -}} |
| 18 | apiVersion: apps/v1 |
| 19 | kind: Deployment |
| 20 | metadata: {{- include "common.resourceMetadata" . | nindent 2 }} |
| 21 | spec: |
| 22 | selector: {{- include "common.selectors" . | nindent 4 }} |
| 23 | replicas: {{ .Values.replicaCount }} |
| 24 | template: |
| 25 | metadata: {{- include "common.templateMetadata" . | nindent 6 }} |
| 26 | spec: {{ include "aaf.initContainers" . | nindent 6 }} |
| 27 | containers: |
| 28 | - name: {{ include "common.name" . }} |
| 29 | workingDir: /opt/app/aaf |
| 30 | command: ["bin/{{ .Values.binary }}"] |
| 31 | image: {{ include "common.repository" . }}/{{.Values.global.aaf.image}} |
| 32 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 33 | ports: {{ include "common.containerPorts" . | nindent 10 }} |
| 34 | volumeMounts: |
| 35 | - mountPath: "/opt/app/osaaf" |
| 36 | name: aaf-config-vol |
| 37 | - mountPath: /etc/localtime |
| 38 | name: localtime |
| 39 | readOnly: true |
| 40 | {{- if eq .Values.liveness.enabled true }} |
| 41 | livenessProbe: |
| 42 | tcpSocket: |
| 43 | port: {{.Values.liveness.port }} |
| 44 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 45 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
| 46 | {{ end -}} |
| 47 | readinessProbe: |
| 48 | tcpSocket: |
| 49 | port: {{ .Values.readiness.port }} |
| 50 | initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} |
| 51 | periodSeconds: {{ .Values.readiness.periodSeconds }} |
| 52 | resources: {{ include "common.resources" . | nindent 12 }} |
| 53 | {{- if .Values.nodeSelector }} |
| 54 | nodeSelector: {{ toYaml .Values.nodeSelector | nindent 10 }} |
| 55 | {{- end -}} |
| 56 | {{- if .Values.affinity }} |
| 57 | affinity: {{ toYaml .Values.affinity | nindent 10 }} |
| 58 | {{- end }} |
| 59 | volumes: |
| 60 | - name: localtime |
| 61 | hostPath: |
| 62 | path: /etc/localtime |
| 63 | - name: aaf-config-vol |
| 64 | emptyDir: {} |
| 65 | imagePullSecrets: |
| 66 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |
| 67 | {{- end -}} |