Piotr Marcinkiewicz | 598f2d8 | 2021-06-01 12:36:13 +0200 | [diff] [blame] | 1 | {{ if .Values.global.cmpv2Enabled }} |
Jan Malkiewicz | 741fb0b | 2020-11-18 11:31:06 +0100 | [diff] [blame] | 2 | |
| 3 | # ============LICENSE_START======================================================= |
Piotr Marcinkiewicz | 9d1ca2b | 2021-08-11 16:21:51 +0200 | [diff] [blame] | 4 | # Copyright (c) 2020-2021 Nokia |
Jan Malkiewicz | 741fb0b | 2020-11-18 11:31:06 +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 | # ============LICENSE_END========================================================= |
| 18 | |
| 19 | apiVersion: apps/v1 |
| 20 | kind: Deployment |
| 21 | metadata: |
| 22 | labels: |
| 23 | control-plane: controller-manager |
| 24 | name: {{ include "common.fullname" . }} |
| 25 | namespace: {{ include "common.namespace" . }} |
| 26 | spec: |
| 27 | replicas: 1 |
| 28 | selector: |
| 29 | matchLabels: |
| 30 | control-plane: controller-manager |
| 31 | template: |
| 32 | metadata: |
| 33 | labels: |
| 34 | control-plane: controller-manager |
Radoslaw Chmiel | f3fbbe4 | 2022-06-02 19:17:12 +0200 | [diff] [blame] | 35 | {{- if (include "common.onServiceMesh" . | nindent 6 ) }} |
| 36 | annotations: |
| 37 | {{- if eq ( .Values.global.serviceMesh.engine ) "linkerd" }} |
| 38 | linkerd.io/inject: disabled |
| 39 | {{- end }} |
| 40 | {{- if eq ( .Values.global.serviceMesh.engine ) "istio" }} |
| 41 | traffic.sidecar.istio.io/excludeInboundPorts: "8080,8443" |
| 42 | traffic.sidecar.istio.io/includeInboundPorts: '*' |
| 43 | {{- end }} |
| 44 | {{- end }} |
Jan Malkiewicz | 741fb0b | 2020-11-18 11:31:06 +0100 | [diff] [blame] | 45 | spec: |
andreas-geissler | 5389da8 | 2021-07-19 17:46:31 +0200 | [diff] [blame] | 46 | imagePullSecrets: |
| 47 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |
Jan Malkiewicz | c681111 | 2020-12-10 10:34:00 +0100 | [diff] [blame] | 48 | initContainers: |
| 49 | {{ include "common.readinessCheck.waitFor" . | indent 6 | trim }} |
Jan Malkiewicz | 741fb0b | 2020-11-18 11:31:06 +0100 | [diff] [blame] | 50 | containers: |
Jan Malkiewicz | 741fb0b | 2020-11-18 11:31:06 +0100 | [diff] [blame] | 51 | - name: provider |
| 52 | image: {{ .Values.global.repository }}{{if .Values.global.repository }}/{{ end }}{{ .Values.deployment.image }} |
| 53 | imagePullPolicy: {{ .Values.deployment.pullPolicy }} |
| 54 | command: |
| 55 | - /oom-certservice-cmpv2issuer |
| 56 | args: |
| 57 | - --metrics-addr=127.0.0.1:8080 |
| 58 | - --log-level={{ .Values.deployment.logLevel }} |
| 59 | resources: |
| 60 | limits: |
| 61 | cpu: {{ .Values.deployment.resources.limits.cpu }} |
| 62 | memory: {{ .Values.deployment.resources.limits.memory }} |
| 63 | requests: |
| 64 | cpu: {{ .Values.deployment.resources.requests.cpu }} |
| 65 | memory: {{ .Values.deployment.resources.requests.memory }} |
| 66 | terminationGracePeriodSeconds: 10 |
| 67 | {{ end }} |