[AAI] Remove AAF/TLS config from charts
[oom.git] / kubernetes / aai / templates / deployment.yaml
1 {{/*
2 # Copyright (c) 2018 Amdocs, Bell Canada, AT&T
3 # Modifications Copyright (c) 2020 Nokia, Orange
4 # Modifications Copyright © 2023 Nordix Foundation
5 #
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #       http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 */}}
18
19 apiVersion: apps/v1
20 kind: Deployment
21 metadata:
22   name: {{ include "common.fullname" . }}
23   namespace: {{ include "common.namespace" . }}
24   labels:
25     app: {{ include "common.name" . }}
26     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
27     release: {{ include "common.release" . }}
28     heritage: {{ .Release.Service }}
29 spec:
30   selector:
31     matchLabels:
32       app: {{ include "common.name" . }}
33   replicas: {{ .Values.replicaCount }}
34   strategy:
35     type: {{ .Values.updateStrategy.type }}
36     {{- if (eq "RollingUpdate" .Values.updateStrategy.type) }}
37     rollingUpdate:
38       maxUnavailable: {{ .Values.updateStrategy.maxUnavailable }}
39       maxSurge: {{ .Values.updateStrategy.maxSurge }}
40     {{- end }}
41   template:
42     metadata:
43       labels:
44         app: {{ include "common.name" . }}
45         release: {{ include "common.release" . }}
46       name: {{ include "common.release" . }}
47       annotations:
48         checksum/config: {{ include (print $.Template.BasePath "/configmap.yaml") . | sha256sum }}
49     spec:
50       terminationGracePeriodSeconds: {{ .Values.service.terminationGracePeriodSeconds }}
51       initContainers:
52       - command:
53         - /app/ready.py
54         args:
55         - --container-name
56         - aai-resources
57         - --container-name
58         - aai-traversal
59         - --container-name
60         - aai-graphadmin
61         env:
62         - name: NAMESPACE
63           valueFrom:
64             fieldRef:
65               apiVersion: v1
66               fieldPath: metadata.namespace
67         image: {{ include "repositoryGenerator.image.readiness" . }}
68         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
69         name: {{ include "common.name" . }}-readiness
70         resources:
71           requests:
72             memory: {{ .Values.haproxy.initContainers.resources.memory }}
73             cpu: {{ .Values.haproxy.initContainers.resources.cpu }}
74           limits:
75             memory: {{ .Values.haproxy.initContainers.resources.memory }}
76             cpu: {{ .Values.haproxy.initContainers.resources.cpu }}
77       containers:
78       - name: {{ include "common.name" . }}
79         image: "{{ include "repositoryGenerator.dockerHubRepository" . }}/{{ .Values.image }}"
80         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
81         volumeMounts:
82         - mountPath: /etc/localtime
83           name: localtime
84           readOnly: true
85         - mountPath: /dev/log
86           name: aai-service-log
87         - mountPath: /usr/local/etc/haproxy/haproxy.cfg
88         {{ if .Values.global.installSidecarSecurity }}
89           subPath: haproxy-pluggable-security.cfg
90         {{ else }}
91           subPath: haproxy.cfg
92         {{ end }}
93           name: haproxy-cfg
94         ports:
95         - containerPort: {{ .Values.service.internalPort }}
96         - containerPort: {{ .Values.service.internalPlainPort }}
97         - containerPort: {{ .Values.metricsService.internalPort }}
98         # disable liveness probe when breakpoints set in debugger
99         # so K8s doesn't restart unresponsive container
100         {{- if eq .Values.liveness.enabled true }}
101         livenessProbe:
102           tcpSocket:
103             port: {{ .Values.service.internalPlainPort }}
104           initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
105           periodSeconds: {{ .Values.liveness.periodSeconds }}
106         {{ end -}}
107         readinessProbe:
108           httpGet:
109             path: /aai/util/echo
110             port: {{ .Values.service.internalPlainPort }}
111             scheme: HTTP
112             httpHeaders:
113             - name: X-FromAppId
114               value: OOM_ReadinessCheck
115       {{ if .Values.global.installSidecarSecurity }}
116             - name: Authorization
117               value: Basic YWFpQGFhaS5vbmFwLm9yZzpkZW1vMTIzNDU2IQ==
118       {{ end }}
119             - name: X-TransactionId
120               value: OOM_ReadinessCheck_TID
121             - name: Accept
122               value: application/json
123           initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
124           periodSeconds: {{ .Values.readiness.periodSeconds }}
125         resources: {{ include "common.resources" . | nindent 10 }}
126       {{- if .Values.nodeSelector }}
127       nodeSelector:
128 {{ toYaml .Values.nodeSelector | indent 8 }}
129       {{- end -}}
130       {{- if .Values.affinity }}
131       affinity:
132 {{ toYaml .Values.affinity | indent 8 }}
133       {{- end }}
134       serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
135       volumes:
136         - name: localtime
137           hostPath:
138             path: /etc/localtime
139         - name: aai-service-log
140           hostPath:
141             path: "/dev/log"
142         - name: haproxy-cfg
143           configMap:
144             name: aai-deployment-configmap
145       imagePullSecrets:
146       - name: "{{ include "common.namespace" . }}-docker-registry-key"