blob: 21416c9b5f530543a90b4ce11ff041a1e623f34b [file] [log] [blame]
Jakub Latuseke0e8ca72020-10-21 13:36:29 +02001{{/*
Alexander Dehn9b797d62020-04-21 09:53:50 +00002# Copyright © 2020 highstreet technologies GmbH
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.
Jakub Latuseke0e8ca72020-10-21 13:36:29 +020015*/}}
Alexander Dehn9b797d62020-04-21 09:53:50 +000016
Alexander Dehn8789a722020-10-16 14:29:05 +000017apiVersion: apps/v1
Alexander Dehn9b797d62020-04-21 09:53:50 +000018kind: Deployment
19metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
20spec:
Alexander Dehn9b797d62020-04-21 09:53:50 +000021 replicas: {{ .Values.replicaCount }}
22 selector: {{- include "common.selectors" . | nindent 4 }}
23 template:
24 metadata: {{- include "common.templateMetadata" . | nindent 6 }}
25 spec:
26 initContainers: {{ include "common.certInitializer.initContainer" . | indent 6 }}
27 - name: {{ include "common.name" . }}-readiness
Sylvain Desbureauxcbc703c2020-11-19 17:52:07 +010028 image: {{ include "repositoryGenerator.image.readiness" . }}
Alexander Dehn9b797d62020-04-21 09:53:50 +000029 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
30 command:
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020031 - /app/ready.py
Alexander Dehn9b797d62020-04-21 09:53:50 +000032 args:
33 - --container-name
34 - {{ .Values.config.sdncChartName }}
35 env:
36 - name: NAMESPACE
37 valueFrom:
38 fieldRef:
39 apiVersion: v1
40 fieldPath: metadata.namespace
41
42 containers:
43 - name: {{ include "common.name" . }}
Sylvain Desbureauxcbc703c2020-11-19 17:52:07 +010044 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
Alexander Dehn9b797d62020-04-21 09:53:50 +000045 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
46 ports: {{- include "common.containerPorts" . | indent 10 }}
47 # disable liveness probe when breakpoints set in debugger
48 # so K8s doesn't restart unresponsive container
49 {{ if .Values.liveness.enabled }}
50 livenessProbe:
51 tcpSocket:
52 port: {{ .Values.service.internalPort }}
53 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
54 periodSeconds: {{ .Values.liveness.periodSeconds }}
55 {{ end }}
56 readinessProbe:
57 tcpSocket:
58 port: {{ .Values.service.internalPort }}
59 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
60 periodSeconds: {{ .Values.readiness.periodSeconds }}
61 env:
62 - name: WEBPROTOCOL
63 value: {{ .Values.config.webProtocol }}
64 - name: WEBPORT
65 value: {{ .Values.config.webPort | quote }}
66 - name: SDNRPROTOCOL
67 value: {{ .Values.config.sdnrProtocol }}
68 - name: SDNRHOST
69 value: {{ .Values.config.sdnrHost }}.{{ include "common.namespace" . }}
70 - name: SDNRPORT
71 value: {{ .Values.config.sdnrPort | quote }}
72 - name: SSL_CERT_DIR
73 value: {{ .Values.config.sslCertDir }}
74 - name: SSL_CERTIFICATE
75 value: {{ .Values.config.sslCertiticate }}
76 - name: SSL_CERTIFICATE_KEY
77 value: {{ .Values.config.sslCertKey }}
Alexander Dehn8789a722020-10-16 14:29:05 +000078 {{ if .Values.config.transportpce.enabled }}
79 - name: TRPCEURL
80 value: {{ .Values.config.transportpce.transportpceUrl }}
81 {{ end }}
82 {{ if .Values.config.topologyserver.enabled }}
83 - name: TOPOURL
84 value: {{ .Values.config.topologyserver.topologyserverUrl }}
85 - name: TILEURL
86 value: {{ .Values.config.topologyserver.tileserverUrl }}
87 {{ end }}
demskeq8b43e92c2021-02-12 15:43:48 +010088 - name: ENABLE_OAUTH
89 value: "{{ .Values.config.oauth.enabled | default "false" }}"
90 - name: ENABLE_ODLUX_RBAC
91 value: "{{ .Values.config.oauth.odluxRbac.enabled | default "false" }}"
Alexander Dehn9b797d62020-04-21 09:53:50 +000092 volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 10 }}
93 - mountPath: /etc/localtime
94 name: localtime
95 readOnly: true
96
97 resources: {{ include "common.resources" . | nindent 12 }}
Satoshi Fujii54bfd172021-07-04 16:39:41 +000098 {{- if .Values.nodeSelector }}
99 nodeSelector: {{ toYaml .Values.nodeSelector | nindent 8 }}
100 {{- end }}
101 {{- if .Values.affinity }}
102 affinity: {{ toYaml .Values.affinity | nindent 8 }}
103 {{- end }}
farida azmy32c5ed82021-08-04 14:46:09 +0200104 serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
Alexander Dehn9b797d62020-04-21 09:53:50 +0000105 volumes: {{ include "common.certInitializer.volumes" . | nindent 6 }}
106 - name: localtime
107 hostPath:
108 path: /etc/localtime
109
110 imagePullSecrets:
111 - name: "{{ include "common.namespace" . }}-docker-registry-key"