blob: 1120f9b2b62a720a254e1f2e3cc765630c9fde33 [file] [log] [blame]
Jakub Latusekfcf67842020-10-21 13:36:29 +02001{{/*
sebdetd85e24c2019-09-04 18:35:26 +02002# Copyright © 2017 Amdocs, Bell Canada
3# Modifications Copyright © 2018 AT&T
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.
Jakub Latusekfcf67842020-10-21 13:36:29 +020016*/}}
sebdetd85e24c2019-09-04 18:35:26 +020017
Magdalena_Biernacka7d0dcbe2020-07-12 23:21:43 +020018apiVersion: apps/v1
sebdetd85e24c2019-09-04 18:35:26 +020019kind: Deployment
20metadata:
21 name: {{ include "common.fullname" . }}
22 namespace: {{ include "common.namespace" . }}
23 labels:
24 app: {{ include "common.name" . }}
25 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010026 release: {{ include "common.release" . }}
sebdetd85e24c2019-09-04 18:35:26 +020027 heritage: {{ .Release.Service }}
28spec:
29 replicas: {{ .Values.replicaCount }}
Magdalena_Biernacka7d0dcbe2020-07-12 23:21:43 +020030 selector:
31 matchLabels:
32 app: {{ include "common.name" . }}
sebdetd85e24c2019-09-04 18:35:26 +020033 template:
34 metadata:
35 labels:
36 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010037 release: {{ include "common.release" . }}
sebdetd85e24c2019-09-04 18:35:26 +020038 spec:
39 initContainers:
40 - command:
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020041 - /app/ready.py
sebdetd85e24c2019-09-04 18:35:26 +020042 args:
sebdet5c449882021-01-13 11:35:56 +010043 - --job-name
44 - {{ include "common.release" . }}-policy-clamp-galera-config
sebdetd85e24c2019-09-04 18:35:26 +020045 env:
46 - name: NAMESPACE
47 valueFrom:
48 fieldRef:
49 apiVersion: v1
50 fieldPath: metadata.namespace
Sylvain Desbureauxf83984f2020-11-21 21:32:40 +010051 image: {{ include "repositoryGenerator.image.readiness" . }}
sebdetd85e24c2019-09-04 18:35:26 +020052 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
53 name: {{ include "common.name" . }}-readiness
ChrisC2325efd2020-09-11 18:39:23 +020054{{ include "common.certInitializer.initContainer" . | indent 6 }}
sebdetd85e24c2019-09-04 18:35:26 +020055 containers:
56 # side car containers
Sylvain Desbureaux8c2a1622020-04-22 10:50:26 +020057 {{ if .Values.global.centralizedLoggingEnabled }}{{ include "common.log.sidecar" . | nindent 8 }}{{ end }}
58 # main container
sebdetd85e24c2019-09-04 18:35:26 +020059 - name: {{ include "common.name" . }}
Sylvain Desbureauxf83984f2020-11-21 21:32:40 +010060 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
sebdetd85e24c2019-09-04 18:35:26 +020061 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
ChrisC2325efd2020-09-11 18:39:23 +020062 command:
63 - sh
sebdet5c449882021-01-13 11:35:56 +010064 workingDir: "/opt/policy/clamp/"
sebdetd85e24c2019-09-04 18:35:26 +020065 args:
ChrisC2325efd2020-09-11 18:39:23 +020066 - -c
67 - |
sebdetac61d3c2020-10-23 16:06:55 +020068 {{- if .Values.global.aafEnabled }}
ChrisC2325efd2020-09-11 18:39:23 +020069 export $(grep '^cadi_' {{ .Values.certInitializer.credsPath }}/org.onap.clamp.cred.props | xargs -0)
ChrisC2325efd2020-09-11 18:39:23 +020070 {{- end }}
sebdet5c449882021-01-13 11:35:56 +010071 java -Djava.security.egd=file:/dev/./urandom ${JAVA_RAM_CONFIGURATION} -jar ./policy-clamp-backend.jar
sebdetd85e24c2019-09-04 18:35:26 +020072 ports:
73 - containerPort: {{ .Values.service.internalPort }}
74 # disable liveness probe when breakpoints set in debugger
75 # so K8s doesn't restart unresponsive container
76 {{- if eq .Values.liveness.enabled true }}
77 livenessProbe:
78 tcpSocket:
79 port: {{ .Values.service.internalPort }}
80 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
81 periodSeconds: {{ .Values.liveness.periodSeconds }}
82 {{ end -}}
83 readinessProbe:
84 tcpSocket:
85 port: {{ .Values.service.internalPort }}
86 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
87 periodSeconds: {{ .Values.readiness.periodSeconds }}
ChrisC2325efd2020-09-11 18:39:23 +020088 volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 10 }}
Sylvain Desbureaux8c2a1622020-04-22 10:50:26 +020089 - name: logs
90 mountPath: {{ .Values.log.path }}
sebdet5c449882021-01-13 11:35:56 +010091 - mountPath: /opt/policy/clamp/sdc-controllers-config.json
sebdetd85e24c2019-09-04 18:35:26 +020092 name: {{ include "common.fullname" . }}-config
93 subPath: sdc-controllers-config.json
sebdet5c449882021-01-13 11:35:56 +010094 - mountPath: /opt/policy/clamp/application.properties
ChrisC2325efd2020-09-11 18:39:23 +020095 name: {{ include "common.fullname" . }}-config
96 subPath: application.properties
sebdetd85e24c2019-09-04 18:35:26 +020097 env:
JulienBe26df3202020-04-10 16:50:08 +020098 - name: MYSQL_USER
sebdet5c449882021-01-13 11:35:56 +010099 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-creds" "key" "login") | indent 12 }}
JulienBe26df3202020-04-10 16:50:08 +0200100 - name: MYSQL_PASSWORD
sebdet5c449882021-01-13 11:35:56 +0100101 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-creds" "key" "password") | indent 12 }}
sebdetac61d3c2020-10-23 16:06:55 +0200102 {{- if ne "unlimited" (include "common.flavor" .) }}
103 - name: JAVA_RAM_CONFIGURATION
104 value: -XX:MinRAMPercentage=50 -XX:MaxRAMPercentage=75
105 {{- end }}
106 resources: {{ include "common.resources" . | nindent 12 }}
sebdetd85e24c2019-09-04 18:35:26 +0200107 {{- if .Values.nodeSelector }}
sebdetac61d3c2020-10-23 16:06:55 +0200108 nodeSelector: {{ toYaml .Values.nodeSelector | nindent 10 }}
sebdetd85e24c2019-09-04 18:35:26 +0200109 {{- end -}}
110 {{- if .Values.affinity }}
sebdetac61d3c2020-10-23 16:06:55 +0200111 affinity: {{ toYaml .Values.affinity | nindent 10 }}
sebdetd85e24c2019-09-04 18:35:26 +0200112 {{- end }}
ChrisC2325efd2020-09-11 18:39:23 +0200113 volumes: {{ include "common.certInitializer.volumes" . | nindent 8 }}
sebdetd85e24c2019-09-04 18:35:26 +0200114 - name: {{ include "common.fullname" . }}-config
115 configMap:
sebdet5c449882021-01-13 11:35:56 +0100116 name: {{ include "common.fullname" . }}-configmap
sebdetd85e24c2019-09-04 18:35:26 +0200117 items:
118 - key: sdc-controllers-config.json
119 path: sdc-controllers-config.json
ChrisC2325efd2020-09-11 18:39:23 +0200120 - key: application.properties
121 path: application.properties
Sylvain Desbureaux8c2a1622020-04-22 10:50:26 +0200122 - name: logs
sebdetd85e24c2019-09-04 18:35:26 +0200123 emptyDir: {}
Sylvain Desbureaux8c2a1622020-04-22 10:50:26 +0200124 {{ if .Values.global.centralizedLoggingEnabled }}{{ include "common.log.volumes" . | nindent 8 }}{{ end }}
sebdetd85e24c2019-09-04 18:35:26 +0200125 imagePullSecrets:
126 - name: "{{ include "common.namespace" . }}-docker-registry-key"