blob: 31884c06bbf623e6d686856353caf2a506d4e04a [file] [log] [blame]
Jakub Latusek544ded22020-10-21 13:36:29 +02001{{/*
Ikram Ikramullah40b120b2018-05-01 11:35:40 -04002# Copyright © 2017 Amdocs, Bell Canada
Nishukumar376ba1e2018-08-03 09:17:23 +00003# Modifications Copyright © 2018 AT&T,VMware
krishnaa9699406132020-09-24 20:39:49 +05304# Modifications Copyright (C) 2020 Wipro Limited.
Ikram Ikramullah40b120b2018-05-01 11:35:40 -04005#
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.
Jakub Latusek544ded22020-10-21 13:36:29 +020017*/}}
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040018
Grzegorz-Lis7a152ac2020-07-30 11:55:24 +020019apiVersion: apps/v1
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040020kind: Deployment
21metadata:
22 name: {{ include "common.fullname" . }}
23 namespace: {{ include "common.namespace" . }}
24 labels:
25 app: {{ include "common.name" . }}
26 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010027 release: {{ include "common.release" . }}
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040028 heritage: {{ .Release.Service }}
29spec:
Grzegorz-Lis7a152ac2020-07-30 11:55:24 +020030 selector:
31 matchLabels:
32 app: {{ include "common.name" . }}
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040033 replicas: {{ .Values.replicaCount }}
34 template:
35 metadata:
36 labels:
37 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010038 release: {{ include "common.release" . }}
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040039 spec:
40 initContainers:
41 - command:
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020042 - /app/ready.py
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040043 args:
44 - --container-name
Krzysztof Opasiak1cddd1d2020-04-16 20:06:50 +020045 - policy-xacml-pdp
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040046 env:
47 - name: NAMESPACE
48 valueFrom:
49 fieldRef:
50 apiVersion: v1
51 fieldPath: metadata.namespace
Sylvain Desbureaux01c711e2020-11-21 21:47:01 +010052 image: {{ include "repositoryGenerator.image.readiness" . }}
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040053 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
54 name: {{ include "common.name" . }}-readiness
amatthews379daac2022-08-18 15:31:12 +010055 {{- if (include "common.needTLS" .) }}
Dileep Ranganathan61225cb2018-10-01 08:14:16 -070056 - command:
57 - sh
58 - -c
59 - resp="FAILURE";
60 until [ $resp = "200" ]; do
amatthews379daac2022-08-18 15:31:12 +010061 resp=$(curl -s -o /dev/null -k --write-out %{http_code} http{{ if (include "common.needTLS" .) }}s{{ end }}://aaf-sms.{{ include "common.namespace" . }}:10443/v1/sms/domain/osdf/secret);
Dileep Ranganathan61225cb2018-10-01 08:14:16 -070062 echo $resp;
63 sleep 2;
64 done
65 env:
66 - name: NAMESPACE
67 valueFrom:
68 fieldRef:
69 apiVersion: v1
70 fieldPath: metadata.namespace
Sylvain Desbureaux01c711e2020-11-21 21:47:01 +010071 image: {{ include "repositoryGenerator.image.curl" . }}
Dileep Ranganathan61225cb2018-10-01 08:14:16 -070072 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
73 name: {{ include "common.name" . }}-osdf-sms-readiness
amatthews379daac2022-08-18 15:31:12 +010074 {{- end }}
krishnaa96dbcd1ca2020-08-11 10:26:50 +053075{{ include "common.certInitializer.initContainer" . | indent 6 }}
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040076 containers:
77 - name: {{ include "common.name" . }}
Sylvain Desbureaux01c711e2020-11-21 21:47:01 +010078 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040079 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
krishnaa9624a7ef32020-10-09 12:01:05 +053080 command:
81 - /bin/sh
82 args:
83 - "-c"
84 - |
amatthews379daac2022-08-18 15:31:12 +010085 {{- if (include "common.needTLS" .) }}
krishnaa9624a7ef32020-10-09 12:01:05 +053086 grep -v '^$' /opt/osdf/osaaf/local/org.onap.oof.crt > /tmp/oof.crt
87 cat /tmp/oof.crt /opt/app/ssl_cert/intermediate_root_ca.pem /opt/app/ssl_cert/aaf_root_ca.cer >> /opt/osdf/org.onap.oof.crt
amatthews379daac2022-08-18 15:31:12 +010088 {{ end }}
krishnaa9607fc3ea2021-08-02 11:19:16 +053089 python osdfapp.py
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040090 ports:
91 - containerPort: {{ .Values.service.internalPort }}
92 # disable liveness probe when breakpoints set in debugger
93 # so K8s doesn't restart unresponsive container
94 {{- if .Values.liveness.enabled }}
95 livenessProbe:
96 tcpSocket:
97 port: {{ .Values.service.internalPort }}
98 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
99 periodSeconds: {{ .Values.liveness.periodSeconds }}
100 {{ end -}}
101 readinessProbe:
102 tcpSocket:
103 port: {{ .Values.service.internalPort }}
104 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
105 periodSeconds: {{ .Values.readiness.periodSeconds }}
106 env:
107 volumeMounts:
krishnaa96dbcd1ca2020-08-11 10:26:50 +0530108{{ include "common.certInitializer.volumeMount" . | indent 10 }}
Ikram Ikramullah40b120b2018-05-01 11:35:40 -0400109 - mountPath: /etc/localtime
110 name: localtime
111 readOnly: true
Krzysztof Opasiak1cddd1d2020-04-16 20:06:50 +0200112 - mountPath: /opt/osdf/config/osdf_config.yaml
Ikram Ikramullah40b120b2018-05-01 11:35:40 -0400113 name: {{ include "common.fullname" . }}-config
114 subPath: osdf_config.yaml
amatthews379daac2022-08-18 15:31:12 +0100115 {{- if (include "common.needTLS" .) }}
Dileep Ranganathanf706ae12018-10-01 04:27:13 -0700116 - mountPath: /opt/app/ssl_cert/aaf_root_ca.cer
krishnaa9624a7ef32020-10-09 12:01:05 +0530117 name: {{ include "common.fullname" . }}-onap-certs
Dileep Ranganathanf706ae12018-10-01 04:27:13 -0700118 subPath: aaf_root_ca.cer
krishnaa9624a7ef32020-10-09 12:01:05 +0530119 - mountPath: /opt/app/ssl_cert/intermediate_root_ca.pem
120 name: {{ include "common.fullname" . }}-onap-certs
121 subPath: intermediate_root_ca.pem
amatthews379daac2022-08-18 15:31:12 +0100122 {{- end }}
vrvarma8f500492019-04-25 23:08:01 -0400123 - mountPath: /opt/osdf/config/common_config.yaml
124 name: {{ include "common.fullname" . }}-config
125 subPath: common_config.yaml
krishnaa9699406132020-09-24 20:39:49 +0530126 - mountPath: /opt/osdf/config/log.yml
127 name: {{ include "common.fullname" . }}-config
128 subPath: log.yml
Lukasz Rajewskid7417722021-07-28 17:12:14 +0200129 - mountPath: /opt/osdf/config/slicing_config.yaml
130 name: {{ include "common.fullname" . }}-config
131 subPath: slicing_config.yaml
Ikram Ikramullah40b120b2018-05-01 11:35:40 -0400132 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +0000133{{ include "common.resources" . | indent 12 }}
Ikram Ikramullah40b120b2018-05-01 11:35:40 -0400134 {{- if .Values.nodeSelector }}
135 nodeSelector:
136{{ toYaml .Values.nodeSelector | indent 10 }}
137 {{- end -}}
138 {{- if .Values.affinity }}
139 affinity:
140{{ toYaml .Values.affinity | indent 10 }}
141 {{- end }}
farida azmyb3e25ca2021-10-27 15:56:35 +0200142 serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
Ikram Ikramullah40b120b2018-05-01 11:35:40 -0400143 volumes:
krishnaa96dbcd1ca2020-08-11 10:26:50 +0530144 {{ include "common.certInitializer.volumes" . | nindent 8 }}
Ikram Ikramullah40b120b2018-05-01 11:35:40 -0400145 - name: localtime
146 hostPath:
147 path: /etc/localtime
148 - name: {{ include "common.fullname" . }}-config
149 configMap:
150 name: {{ include "common.fullname" . }}-configmap
151 items:
152 - key: osdf_config.yaml
153 path: osdf_config.yaml
vrvarma8f500492019-04-25 23:08:01 -0400154 - key: common_config.yaml
155 path: common_config.yaml
krishnaa9699406132020-09-24 20:39:49 +0530156 - key: log.yml
157 path: log.yml
Lukasz Rajewskid7417722021-07-28 17:12:14 +0200158 - key: slicing_config.yaml
159 path: slicing_config.yaml
krishnaa9624a7ef32020-10-09 12:01:05 +0530160{{ include "oof.certificate.volume" . | indent 8 }}
Ikram Ikramullah40b120b2018-05-01 11:35:40 -0400161 imagePullSecrets:
162 - name: "{{ include "common.namespace" . }}-docker-registry-key"