blob: 1c66f6ac44530ff04d781241f69c2670f3438565 [file] [log] [blame]
Jakub Latusekd71d26c2020-10-21 13:36:29 +02001{{/*
mayankg2703ced85142018-03-20 05:42:53 +00002# Copyright © 2017 Amdocs, Bell Canada
jhh0d1c0e82022-04-08 14:36:15 -05003# Modifications Copyright © 2018-2020, 2022 AT&T Intellectual Property
mayankg2703ced85142018-03-20 05:42:53 +00004#
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 Latusekd71d26c2020-10-21 13:36:29 +020016*/}}
mayankg2703ced85142018-03-20 05:42:53 +000017
Grzegorz-Lis4fad3022020-07-31 10:18:21 +020018apiVersion: apps/v1
mayankg2703c7985462018-03-29 14:24:23 +000019kind: StatefulSet
Andreas Geisslerf10c5552023-03-21 18:09:46 +010020metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
mayankg2703ced85142018-03-20 05:42:53 +000021spec:
Andreas Geisslerf10c5552023-03-21 18:09:46 +010022 selector: {{- include "common.selectors" . | nindent 4 }}
Mahendra Raghuwanshic1395ec2018-04-26 03:19:03 +000023 serviceName: {{ include "common.servicename" . }}
mayankg2703ced85142018-03-20 05:42:53 +000024 replicas: {{ .Values.replicaCount }}
25 template:
Andreas Geisslerf10c5552023-03-21 18:09:46 +010026 metadata: {{- include "common.templateMetadata" . | nindent 6 }}
mayankg2703ced85142018-03-20 05:42:53 +000027 spec:
28 initContainers:
29 - command:
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020030 - /app/ready.py
jhhd4258672020-08-09 12:08:08 -050031 args:
32 - --job-name
33 - {{ include "common.release" . }}-policy-galera-config
34 env:
35 - name: NAMESPACE
36 valueFrom:
37 fieldRef:
38 apiVersion: v1
39 fieldPath: metadata.namespace
Sylvain Desbureaux7c8c6862020-11-19 18:02:37 +010040 image: {{ include "repositoryGenerator.image.readiness" . }}
jhhd4258672020-08-09 12:08:08 -050041 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
42 name: {{ include "common.name" . }}-db-readiness
Andreas Geissler47537432024-02-27 08:55:23 +010043 resources:
44 limits:
45 cpu: "100m"
Andreas Geissler8cbb3d92024-03-12 16:44:56 +010046 memory: "500Mi"
Andreas Geissler47537432024-02-27 08:55:23 +010047 requests:
48 cpu: "3m"
Andreas Geissler8cbb3d92024-03-12 16:44:56 +010049 memory: "20Mi"
jhhd4258672020-08-09 12:08:08 -050050{{- if not .Values.nexus.offline }}
51 - command:
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020052 - /app/ready.py
mayankg2703ced85142018-03-20 05:42:53 +000053 args:
Andreas Geissleree119102024-04-11 13:53:39 +020054 - --service-name
jhhd4258672020-08-09 12:08:08 -050055 - {{ .Values.nexus.name }}
mayankg2703ced85142018-03-20 05:42:53 +000056 env:
57 - name: NAMESPACE
58 valueFrom:
59 fieldRef:
60 apiVersion: v1
61 fieldPath: metadata.namespace
rameshiyer27bc8a6a42024-03-11 17:18:11 +000062 - name: KAFKA_URL
63 value: {{ include "common.release" . }}-{{ .Values.global.kafkaBootstrap }}
64 - name: SASL
65 value: {{ .Values.kafkaUser.authenticationType | upper }}
66 - name: GROUP_ID
67 value: {{ .Values.config.kafka.consumer.groupId }}
68 - name: PAP_TOPIC
69 value: {{ .Values.config.app.listener.policyPdpPapTopic }}
Sylvain Desbureaux7c8c6862020-11-19 18:02:37 +010070 image: {{ include "repositoryGenerator.image.readiness" . }}
mayankg2703ced85142018-03-20 05:42:53 +000071 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
72 name: {{ include "common.name" . }}-readiness
Andreas Geissler47537432024-02-27 08:55:23 +010073 resources:
74 limits:
75 cpu: "100m"
Andreas Geissler8cbb3d92024-03-12 16:44:56 +010076 memory: "500Mi"
Andreas Geissler47537432024-02-27 08:55:23 +010077 requests:
78 cpu: "3m"
Andreas Geissler8cbb3d92024-03-12 16:44:56 +010079 memory: "20Mi"
jhhd4258672020-08-09 12:08:08 -050080{{- end }}
mayankg2703ced85142018-03-20 05:42:53 +000081 containers:
82 - name: {{ include "common.name" . }}
Sylvain Desbureaux7c8c6862020-11-19 18:02:37 +010083 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
mayankg2703ced85142018-03-20 05:42:53 +000084 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
Taka Cho9658ce82020-12-10 14:34:18 -050085 command: ["sh","-c"]
Andreas Geisslerf10c5552023-03-21 18:09:46 +010086 args: ["/opt/app/policy/bin/pdpd-cl-entrypoint.sh boot"]
87 ports: {{ include "common.containerPorts" . | nindent 12 }}
mayankg2703ced85142018-03-20 05:42:53 +000088 {{- if eq .Values.liveness.enabled true }}
89 livenessProbe:
jhh0d1c0e82022-04-08 14:36:15 -050090 httpGet:
91 path: /healthcheck/controllers
92 port: 6968
mayankg2703ced85142018-03-20 05:42:53 +000093 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
94 periodSeconds: {{ .Values.liveness.periodSeconds }}
jhh0d1c0e82022-04-08 14:36:15 -050095 timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
mayankg2703ced85142018-03-20 05:42:53 +000096 {{- end }}
97 readinessProbe:
98 tcpSocket:
Andreas Geisslerf10c5552023-03-21 18:09:46 +010099 port: {{ .Values.service.internalPort }}
mayankg2703ced85142018-03-20 05:42:53 +0000100 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
101 periodSeconds: {{ .Values.readiness.periodSeconds }}
102 env:
103 - name: REPLICAS
104 value: "{{ .Values.replicaCount }}"
Krzysztof Opasiak68b1c922020-03-26 23:59:36 +0100105 - name: SQL_USER
Krzysztof Opasiak4372e832020-09-01 19:17:20 +0200106 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "login") | indent 12 }}
Krzysztof Opasiak68b1c922020-03-26 23:59:36 +0100107 - name: SQL_PASSWORD
Krzysztof Opasiak4372e832020-09-01 19:17:20 +0200108 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "password") | indent 12 }}
mayankg2703ced85142018-03-20 05:42:53 +0000109 volumeMounts:
110 - mountPath: /etc/localtime
111 name: localtime
112 readOnly: true
jhh01096592019-09-04 07:47:25 -0500113 {{- range $path, $bytes := .Files.Glob "resources/secrets/*" }}
114 - mountPath: /tmp/policy-install/config/{{ base $path }}
mayankg2703ced85142018-03-20 05:42:53 +0000115 name: drools-secret
jhh01096592019-09-04 07:47:25 -0500116 subPath: {{ base $path }}
117 {{- end }}
118 {{- range $path, $bytes := .Files.Glob "resources/configmaps/*" }}
119 - mountPath: /tmp/policy-install/config/{{ base $path }}
Jorge Hernandez328eadb2018-05-15 07:52:21 -0500120 name: drools-config
jhh01096592019-09-04 07:47:25 -0500121 subPath: {{ base $path }}
122 {{- end }}
miroslavmasaryka7ac7f02023-03-01 14:12:26 +0100123 resources: {{ include "common.resources" . | nindent 12 }}
mayankg2703ced85142018-03-20 05:42:53 +0000124 {{- if .Values.nodeSelector }}
mayankg2703ced85142018-03-20 05:42:53 +0000125 nodeSelector:
126{{ toYaml .Values.nodeSelector | indent 10 }}
127 {{- end -}}
128 {{- if .Values.affinity }}
129 affinity:
130{{ toYaml .Values.affinity | indent 10 }}
131 {{- end }}
farida azmyc1178372021-04-11 12:55:33 +0200132 serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
mayankg2703ced85142018-03-20 05:42:53 +0000133 volumes:
134 - name: localtime
135 hostPath:
136 path: /etc/localtime
mayankg2703ced85142018-03-20 05:42:53 +0000137 - name: drools-config
138 configMap:
139 name: {{ include "common.fullname" . }}-configmap
140 items:
jhh01096592019-09-04 07:47:25 -0500141 {{- range $path, $bytes := .Files.Glob "resources/configmaps/*" }}
142 - key: {{ base $path }}
143 path: {{ base $path }}
mayankg2703ced85142018-03-20 05:42:53 +0000144 mode: 0755
jhh01096592019-09-04 07:47:25 -0500145 {{- end }}
mayankg2703ced85142018-03-20 05:42:53 +0000146 - name: drools-secret
147 secret:
148 secretName: {{ include "common.fullname" . }}-secret
149 items:
jhh01096592019-09-04 07:47:25 -0500150 {{- range $path, $bytes := .Files.Glob "resources/secrets/*" }}
151 - key: {{ base $path }}
152 path: {{ base $path }}
mayankg2703ced85142018-03-20 05:42:53 +0000153 mode: 0644
jhh01096592019-09-04 07:47:25 -0500154 {{- end }}
Andreas Geisslerbd0d31a2024-03-20 09:51:32 +0100155 {{- include "common.imagePullSecrets" . | nindent 6 }}