Lathish | 818ee5d | 2020-08-26 13:45:03 +0100 | [diff] [blame] | 1 | {{/* |
| 2 | ################################################################################ |
| 3 | # Copyright (c) 2020 Nordix Foundation. # |
Konrad Bańka | 52c38b9 | 2020-10-28 16:49:19 +0100 | [diff] [blame] | 4 | # Copyright © 2020 Samsung Electronics, Modifications # |
Lathish | 818ee5d | 2020-08-26 13:45:03 +0100 | [diff] [blame] | 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 | |
PatrikBuhr | 746ff37 | 2021-04-30 15:12:51 +0200 | [diff] [blame] | 20 | kind: StatefulSet |
Lathish | 818ee5d | 2020-08-26 13:45:03 +0100 | [diff] [blame] | 21 | apiVersion: apps/v1 |
PatrikBuhr | 746ff37 | 2021-04-30 15:12:51 +0200 | [diff] [blame] | 22 | metadata: {{- include "common.resourceMetadata" . | nindent 2 }} |
Lathish | 818ee5d | 2020-08-26 13:45:03 +0100 | [diff] [blame] | 23 | spec: |
PatrikBuhr | 746ff37 | 2021-04-30 15:12:51 +0200 | [diff] [blame] | 24 | serviceName: {{ include "common.servicename" . }} |
Lathish | 818ee5d | 2020-08-26 13:45:03 +0100 | [diff] [blame] | 25 | replicas: {{ index .Values.replicaCount }} |
| 26 | selector: {{- include "common.selectors" . | nindent 4 }} |
| 27 | template: |
| 28 | metadata: |
| 29 | labels: {{- include "common.labels" . | nindent 8 }} |
| 30 | spec: |
Sylvain Desbureaux | b5353c9 | 2021-02-15 11:30:29 +0100 | [diff] [blame] | 31 | initContainers: {{ include "common.certInitializer.initContainer" . | nindent 6 }} |
Konrad Bańka | 52c38b9 | 2020-10-28 16:49:19 +0100 | [diff] [blame] | 32 | - name: {{ include "common.name" . }}-bootstrap-config |
Sylvain Desbureaux | d4a6afd | 2020-11-21 22:01:15 +0100 | [diff] [blame] | 33 | image: {{ include "repositoryGenerator.image.envsubst" . }} |
Lathish | 818ee5d | 2020-08-26 13:45:03 +0100 | [diff] [blame] | 34 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 35 | command: |
| 36 | - sh |
| 37 | args: |
| 38 | - -c |
Sylvain Desbureaux | b5353c9 | 2021-02-15 11:30:29 +0100 | [diff] [blame] | 39 | - | |
| 40 | export $(cat {{ .Values.certInitializer.credsPath }}/mycreds.prop\ |
| 41 | | xargs -0) |
| 42 | cd /config-input |
| 43 | for PFILE in `ls -1` |
| 44 | do |
| 45 | envsubst <${PFILE} >/config/${PFILE} |
| 46 | chmod o+w /config/${PFILE} |
| 47 | done |
| 48 | cat /config/application.yaml |
Lathish | 818ee5d | 2020-08-26 13:45:03 +0100 | [diff] [blame] | 49 | env: |
| 50 | - name: A1CONTROLLER_USER |
| 51 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "controller-secret" "key" "login") | indent 10 }} |
| 52 | - name: A1CONTROLLER_PASSWORD |
| 53 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "controller-secret" "key" "password") | indent 10 }} |
Sylvain Desbureaux | b5353c9 | 2021-02-15 11:30:29 +0100 | [diff] [blame] | 54 | volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 8 }} |
Lathish | 818ee5d | 2020-08-26 13:45:03 +0100 | [diff] [blame] | 55 | - mountPath: /config-input |
| 56 | name: {{ include "common.fullname" . }}-policy-conf-input |
| 57 | - mountPath: /config |
| 58 | name: config |
| 59 | containers: |
Konrad Bańka | 52c38b9 | 2020-10-28 16:49:19 +0100 | [diff] [blame] | 60 | - name: {{ include "common.name" . }}-update-config |
| 61 | image: "{{ .Values.global.envsubstImage }}" |
| 62 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 63 | securityContext: |
| 64 | runAsGroup: {{ .Values.groupID }} |
| 65 | runAsUser: {{ .Values.userID }} |
| 66 | runAsNonRoot: true |
| 67 | command: |
| 68 | - sh |
| 69 | args: |
| 70 | - /tmp/scripts/daemon.sh |
| 71 | env: |
| 72 | - name: A1CONTROLLER_USER |
| 73 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "controller-secret" "key" "login") | indent 10 }} |
| 74 | - name: A1CONTROLLER_PASSWORD |
| 75 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "controller-secret" "key" "password") | indent 10 }} |
| 76 | volumeMounts: |
| 77 | - mountPath: /tmp/scripts |
| 78 | name: {{ include "common.fullname" . }}-envsubst-scripts |
| 79 | - mountPath: /config-input |
| 80 | name: {{ include "common.fullname" . }}-policy-conf-input |
| 81 | - mountPath: /config |
| 82 | name: config |
Lathish | 818ee5d | 2020-08-26 13:45:03 +0100 | [diff] [blame] | 83 | - name: {{ include "common.name" . }} |
Sylvain Desbureaux | d4a6afd | 2020-11-21 22:01:15 +0100 | [diff] [blame] | 84 | image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }} |
Lathish | 818ee5d | 2020-08-26 13:45:03 +0100 | [diff] [blame] | 85 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 86 | ports: {{ include "common.containerPorts" . | nindent 10 }} |
| 87 | readinessProbe: |
| 88 | tcpSocket: |
| 89 | port: {{ .Values.readiness.port }} |
| 90 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 91 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
| 92 | livenessProbe: |
| 93 | httpGet: |
| 94 | path: /status |
| 95 | port: {{ .Values.liveness.port }} |
| 96 | scheme: {{ if (include "common.needTLS" .) }}HTTPS{{ else }}HTTP{{ end }} |
| 97 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 98 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
Sylvain Desbureaux | b5353c9 | 2021-02-15 11:30:29 +0100 | [diff] [blame] | 99 | volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 8 }} |
Lathish | 818ee5d | 2020-08-26 13:45:03 +0100 | [diff] [blame] | 100 | - name: config |
Sylvain Desbureaux | b5353c9 | 2021-02-15 11:30:29 +0100 | [diff] [blame] | 101 | mountPath: /opt/app/policy-agent/data/application_configuration.json |
| 102 | subPath: application_configuration.json |
| 103 | - name: config |
| 104 | mountPath: /opt/app/policy-agent/config/application.yaml |
PatrikBuhr | 746ff37 | 2021-04-30 15:12:51 +0200 | [diff] [blame] | 105 | subPath: application.yaml |
| 106 | - name: {{ include "common.fullname" . }} |
PatrikBuhr | 27c9436 | 2021-04-09 10:58:58 +0200 | [diff] [blame] | 107 | mountPath: "/var/policy-management-service/database" |
Lathish | 818ee5d | 2020-08-26 13:45:03 +0100 | [diff] [blame] | 108 | resources: {{ include "common.resources" . | nindent 10 }} |
Sylvain Desbureaux | b5353c9 | 2021-02-15 11:30:29 +0100 | [diff] [blame] | 109 | volumes: {{ include "common.certInitializer.volumes" . | nindent 8 }} |
Lathish | 818ee5d | 2020-08-26 13:45:03 +0100 | [diff] [blame] | 110 | - name: {{ include "common.fullname" . }}-policy-conf-input |
| 111 | configMap: |
| 112 | name: {{ include "common.fullname" . }}-policy-conf |
Konrad Bańka | 52c38b9 | 2020-10-28 16:49:19 +0100 | [diff] [blame] | 113 | - name: {{ include "common.fullname" . }}-envsubst-scripts |
| 114 | configMap: |
| 115 | name: {{ include "common.fullname" . }}-envsubst-scripts |
Konrad Bańka | a858462 | 2021-03-23 09:09:01 +0100 | [diff] [blame] | 116 | defaultMode: 0555 |
Lathish | 818ee5d | 2020-08-26 13:45:03 +0100 | [diff] [blame] | 117 | - name: config |
| 118 | emptyDir: |
| 119 | medium: Memory |
PatrikBuhr | 746ff37 | 2021-04-30 15:12:51 +0200 | [diff] [blame] | 120 | {{- if not .Values.persistence.enabled }} |
| 121 | - name: {{ include "common.fullname" . }} |
| 122 | emptyDir: {} |
| 123 | {{- else }} |
| 124 | volumeClaimTemplates: |
| 125 | - {{include "common.PVCTemplate" . | indent 6 | trim }} |
| 126 | {{- end }} |