aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/platform/components/oom-cert-service/templates/deployment.yaml
blob: 06fdaf92fc5c06500f1d2e90b05594f2be58856d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{{/*# Copyright © 2020, Nokia
# Modifications Copyright  © 2020, Nordix Foundation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#       http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.*/}}

{{- if .Values.global.cmpv2Enabled }}
apiVersion: apps/v1
kind: Deployment
metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
spec:
  replicas: {{ .Values.replicaCount }}
  selector: {{- include "common.selectors" . | nindent 4 }}
  template:
    metadata: {{- include "common.templateMetadata" . | nindent 6 }}
      {{- if (include "common.onServiceMesh" . ) }}
      annotations:
      {{- if eq ( .Values.global.serviceMesh.engine ) "linkerd" }}
        linkerd.io/inject: disabled
      {{- end }}
      {{- if eq ( .Values.global.serviceMesh.engine ) "istio" }}
          traffic.sidecar.istio.io/excludeInboundPorts: "8080,8443"
          traffic.sidecar.istio.io/includeInboundPorts: '*'
      {{- end }}
      {{- end }}
    spec:
      {{- include "common.imagePullSecrets" . | nindent 6 }}
      volumes:
{{- if .Values.global.addTestingComponents }}
        - name: cmp-servers-template-volume
          secret:
            secretName: {{ .Values.cmpServers.secret.name }}
        - name: {{ .Values.cmpServers.volume.name }}
          emptyDir:
            medium: Memory
{{- else }}
        - name: {{ .Values.cmpServers.volume.name }}
          secret:
            secretName: {{ .Values.cmpServers.secret.name }}
{{- end }}
        - name: {{ .Values.tls.server.volume.name }}
          secret:
            secretName: {{ .Values.tls.server.secret.name }}
{{- if .Values.global.addTestingComponents }}
      initContainers:
        - name: wait-for-ejbca
          command:
          - /app/ready.py
          args:
          - --container-name
          - ejbca-ejbca
          env:
          - name: NAMESPACE
            valueFrom:
              fieldRef:
                apiVersion: v1
                fieldPath: metadata.namespace
          image: {{ include "repositoryGenerator.image.readiness" . }}
          imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
          resources:
            limits:
              cpu: "100m"
              memory: "500Mi"
            requests:
              cpu: "3m"
              memory: "20Mi"
        - name: subsitute-envs
          image: {{ include "repositoryGenerator.image.envsubst" . }}
          imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
          command: ['sh', '-c', "cd /config-input &&  envsubst < cmpServers.json > {{ .Values.cmpServers.volume.mountPath }}/cmpServers.json"]
          volumeMounts:
            - name: cmp-servers-template-volume
              mountPath: /config-input
              readOnly: true
            - name: {{ .Values.cmpServers.volume.name }}
              mountPath: {{ .Values.cmpServers.volume.mountPath }}
              readOnly: false
          env:
            - name: CLIENT_IAK
              {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "ejbca-server-client-iak" "key" "password") | indent 14 }}
            - name: CLIENT_RV
              {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "cmp-config-client-rv" "key" "password") | indent 14 }}
            - name: RA_IAK
              {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "ejbca-server-ra-iak" "key" "password") | indent 14 }}
            - name: RA_RV
              {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "cmp-config-ra-rv" "key" "password") | indent 14 }}
{{- end }}
      containers:
        - name: {{ include "common.name" . }}
          image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
          imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
          ports: {{ include "common.containerPorts" . | nindent 10 }}
          env:
            - name: HTTPS_PORT
              value: "{{ .Values.envs.httpsPort }}"
            - name: KEYSTORE_PATH
              value: "{{ .Values.tls.server.volume.mountPath }}/{{ .Values.envs.keystore.jksName }}"
            - name: KEYSTORE_P12_PATH
              value: "{{ .Values.tls.server.volume.mountPath }}/{{ .Values.envs.keystore.p12Name }}"
            - name: TRUSTSTORE_PATH
              value: "{{ .Values.tls.server.volume.mountPath }}/{{ .Values.envs.truststore.jksName }}"
            - name: ROOT_CERT
              value: "{{ .Values.tls.server.volume.mountPath }}/{{ .Values.envs.truststore.crtName }}"
            - name: KEYSTORE_PASSWORD
              {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "certificates-password" "key" "password") | indent 14 }}
            - name: TRUSTSTORE_PASSWORD
              {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "certificates-password" "key" "password") | indent 14 }}
          livenessProbe:
            exec:
              command:
                - /bin/bash
                - -c
                - {{ .Values.liveness.command }}
            initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
            periodSeconds: {{ .Values.liveness.periodSeconds }}
          readinessProbe:
            exec:
              command:
                - /bin/bash
                - -c
                - {{ .Values.readiness.command }}
            initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
            periodSeconds: {{ .Values.readiness.periodSeconds }}
          volumeMounts:
            - name: {{ .Values.cmpServers.volume.name }}
              mountPath: {{ .Values.cmpServers.volume.mountPath }}
              readOnly: false
            - name: {{ .Values.tls.server.volume.name }}
              mountPath: {{ .Values.tls.server.volume.mountPath }}
              readOnly: true
          resources: {{ include "common.resources" . | nindent 12 }}
{{ end -}}