Sylvain Desbureaux | 47eb4d2 | 2020-12-10 12:15:27 +0100 | [diff] [blame] | 1 | {{/* |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 2 | # Copyright (c) 2018 Amdocs, Bell Canada, AT&T |
Sylvain Desbureaux | 5b65132 | 2020-12-07 15:34:15 +0100 | [diff] [blame] | 3 | # Modifications Copyright (c) 2020 Nokia, Orange |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [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. |
Sylvain Desbureaux | 47eb4d2 | 2020-12-10 12:15:27 +0100 | [diff] [blame] | 16 | */}} |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 17 | |
| 18 | apiVersion: apps/v1 |
| 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 "+" "_" }} |
| 26 | release: {{ include "common.release" . }} |
| 27 | heritage: {{ .Release.Service }} |
| 28 | spec: |
| 29 | selector: |
| 30 | matchLabels: |
| 31 | app: {{ include "common.name" . }} |
| 32 | replicas: {{ .Values.replicaCount }} |
| 33 | template: |
| 34 | metadata: |
| 35 | labels: |
| 36 | app: {{ include "common.name" . }} |
| 37 | release: {{ include "common.release" . }} |
| 38 | name: {{ include "common.release" . }} |
| 39 | annotations: |
| 40 | checksum/config: {{ include (print $.Template.BasePath "/configmap.yaml") . | sha256sum }} |
| 41 | spec: |
Sylvain Desbureaux | 87f49af | 2020-12-15 11:56:51 +0100 | [diff] [blame] | 42 | initContainers: {{ include "common.certInitializer.initContainer" . | nindent 6 }} |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 43 | - command: |
| 44 | - /app/ready.py |
| 45 | args: |
| 46 | - --container-name |
| 47 | - aai-resources |
| 48 | - --container-name |
| 49 | - aai-traversal |
| 50 | - --container-name |
| 51 | - aai-graphadmin |
| 52 | env: |
| 53 | - name: NAMESPACE |
| 54 | valueFrom: |
| 55 | fieldRef: |
| 56 | apiVersion: v1 |
| 57 | fieldPath: metadata.namespace |
Sylvain Desbureaux | 5b65132 | 2020-12-07 15:34:15 +0100 | [diff] [blame] | 58 | image: {{ include "repositoryGenerator.image.readiness" . }} |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 59 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 60 | name: {{ include "common.name" . }}-readiness |
| 61 | containers: |
| 62 | - name: {{ include "common.name" . }} |
Sylvain Desbureaux | 5b65132 | 2020-12-07 15:34:15 +0100 | [diff] [blame] | 63 | image: "{{ include "repositoryGenerator.dockerHubRepository" . }}/{{ .Values.image }}" |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 64 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 65 | volumeMounts: |
| 66 | - mountPath: /etc/localtime |
| 67 | name: localtime |
| 68 | readOnly: true |
| 69 | - mountPath: /dev/log |
| 70 | name: aai-service-log |
| 71 | - mountPath: /usr/local/etc/haproxy/haproxy.cfg |
| 72 | {{ if .Values.global.installSidecarSecurity }} |
| 73 | subPath: haproxy-pluggable-security.cfg |
| 74 | {{ else }} |
| 75 | subPath: haproxy.cfg |
| 76 | {{ end }} |
| 77 | name: haproxy-cfg |
Sylvain Desbureaux | 87f49af | 2020-12-15 11:56:51 +0100 | [diff] [blame] | 78 | {{- include "common.certInitializer.volumeMount" . | nindent 8 }} |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 79 | ports: |
| 80 | - containerPort: {{ .Values.service.internalPort }} |
osk11461 | 27fd7d8 | 2021-06-18 00:51:17 +0200 | [diff] [blame^] | 81 | - containerPort: {{ .Values.service.internalPlainPort }} |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 82 | # disable liveness probe when breakpoints set in debugger |
| 83 | # so K8s doesn't restart unresponsive container |
| 84 | {{- if eq .Values.liveness.enabled true }} |
| 85 | livenessProbe: |
| 86 | tcpSocket: |
osk11461 | 27fd7d8 | 2021-06-18 00:51:17 +0200 | [diff] [blame^] | 87 | port: {{ (eq "true" (include "common.needTLS" .)) | ternary .Values.service.internalPort .Values.service.internalPlainPort }} |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 88 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 89 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
| 90 | {{ end -}} |
| 91 | readinessProbe: |
| 92 | httpGet: |
| 93 | path: /aai/util/echo |
osk11461 | 27fd7d8 | 2021-06-18 00:51:17 +0200 | [diff] [blame^] | 94 | port: {{ (eq "true" (include "common.needTLS" .)) | ternary .Values.service.internalPort .Values.service.internalPlainPort }} |
| 95 | #scheme: HTTPS |
| 96 | scheme: {{ (eq "true" (include "common.needTLS" .)) | ternary "HTTPS" "HTTP" }} |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 97 | httpHeaders: |
| 98 | - name: X-FromAppId |
| 99 | value: OOM_ReadinessCheck |
| 100 | {{ if .Values.global.installSidecarSecurity }} |
| 101 | - name: Authorization |
| 102 | value: Basic YWFpQGFhaS5vbmFwLm9yZzpkZW1vMTIzNDU2IQ== |
| 103 | {{ end }} |
| 104 | - name: X-TransactionId |
| 105 | value: OOM_ReadinessCheck_TID |
| 106 | - name: Accept |
| 107 | value: application/json |
| 108 | initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} |
| 109 | periodSeconds: {{ .Values.readiness.periodSeconds }} |
| 110 | resources: |
| 111 | {{ include "common.resources" . }} |
| 112 | {{- if .Values.nodeSelector }} |
| 113 | nodeSelector: |
| 114 | {{ toYaml .Values.nodeSelector | indent 8 }} |
| 115 | {{- end -}} |
| 116 | {{- if .Values.affinity }} |
| 117 | affinity: |
| 118 | {{ toYaml .Values.affinity | indent 8 }} |
| 119 | {{- end }} |
| 120 | |
| 121 | volumes: |
| 122 | - name: localtime |
| 123 | hostPath: |
| 124 | path: /etc/localtime |
| 125 | - name: aai-service-log |
| 126 | hostPath: |
| 127 | path: "/dev/log" |
| 128 | - name: haproxy-cfg |
| 129 | configMap: |
| 130 | name: aai-deployment-configmap |
Sylvain Desbureaux | 87f49af | 2020-12-15 11:56:51 +0100 | [diff] [blame] | 131 | {{ include "common.certInitializer.volumes" . | nindent 8 }} |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 132 | imagePullSecrets: |
| 133 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |