blob: 63222a1a405d18f62f80f0986cb2cb8f377ee4fc [file] [log] [blame]
Mohammed Naserf3f59a72023-01-15 21:02:04 -05001# Licensed under the Apache License, Version 2.0 (the "License");
2# you may not use this file except in compliance with the License.
3# You may obtain a copy of the License at
4#
5# http://www.apache.org/licenses/LICENSE-2.0
6#
7# Unless required by applicable law or agreed to in writing, software
8# distributed under the License is distributed on an "AS IS" BASIS,
9# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10# See the License for the specific language governing permissions and
11# limitations under the License.
12{{- if .Values.manifests.deployment_sink }}
13
14{{- $envAll := . }}
15{{- $mounts_designate_sink := .Values.pod.mounts.designate_sink.designate_sink }}
16{{- $mounts_designate_sink_init := .Values.pod.mounts.designate_sink.init_container }}
17
18{{- $serviceAccountName := "designate-sink" }}
19{{ tuple $envAll "sink" $serviceAccountName | include "helm-toolkit.snippets.kubernetes_pod_rbac_serviceaccount" }}
20---
21apiVersion: apps/v1
22kind: Deployment
23metadata:
24 name: designate-sink
25 annotations:
26 {{ tuple $envAll | include "helm-toolkit.snippets.release_uuid" }}
27 labels:
28{{ tuple $envAll "designate" "sink" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 4 }}
29spec:
30 replicas: {{ .Values.pod.replicas.sink }}
31 selector:
32 matchLabels:
33{{ tuple $envAll "designate" "sink" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 6 }}
34{{ tuple $envAll | include "helm-toolkit.snippets.kubernetes_upgrades_deployment" | indent 2 }}
35 template:
36 metadata:
37 labels:
38{{ tuple $envAll "designate" "sink" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 8 }}
39 annotations:
40{{ tuple $envAll | include "helm-toolkit.snippets.release_uuid" | indent 8 }}
41 configmap-bin-hash: {{ tuple "configmap-bin.yaml" . | include "helm-toolkit.utils.hash" }}
42 configmap-etc-hash: {{ tuple "configmap-etc.yaml" . | include "helm-toolkit.utils.hash" }}
43 spec:
Dong Ma6433b0a2025-02-10 08:55:22 +000044{{ with .Values.pod.priorityClassName.designate_sink }}
45 priorityClassName: {{ . }}
46{{ end }}
47{{ with .Values.pod.runtimeClassName.designate_sink }}
48 runtimeClassName: {{ . }}
49{{ end }}
Mohammed Naserf3f59a72023-01-15 21:02:04 -050050 serviceAccountName: {{ $serviceAccountName }}
51 affinity:
52{{ tuple $envAll "designate" "sink" | include "helm-toolkit.snippets.kubernetes_pod_anti_affinity" | indent 8 }}
53 nodeSelector:
54 {{ .Values.labels.sink.node_selector_key }}: {{ .Values.labels.sink.node_selector_value }}
55 initContainers:
56{{ tuple $envAll "sink" $mounts_designate_sink_init | include "helm-toolkit.snippets.kubernetes_entrypoint_init_container" | indent 8 }}
57 containers:
58 - name: designate-sink
59{{ tuple $envAll "designate_sink" | include "helm-toolkit.snippets.image" | indent 10 }}
60{{ tuple $envAll $envAll.Values.pod.resources.sink | include "helm-toolkit.snippets.kubernetes_resources" | indent 10 }}
61{{ dict "envAll" $envAll "application" "designate" "container" "designate_sink" | include "helm-toolkit.snippets.kubernetes_container_security_context" | indent 10 }}
62 command:
63 - bash
64 - /tmp/designate-sink.sh
65 volumeMounts:
66 - name: designate-bin
67 mountPath: /tmp/designate-sink.sh
68 subPath: designate-sink.sh
69 readOnly: true
70 - name: pod-etc-designate
71 mountPath: /etc/designate
72 - name: pod-var-cache-designate
73 mountPath: /var/cache/designate
74 - name: designate-etc
75 mountPath: /etc/designate/designate.conf
76 subPath: designate.conf
77 readOnly: true
78 - name: designate-etc
79 mountPath: /etc/designate/policy.yaml
80 subPath: policy.yaml
81 readOnly: true
82 {{- if .Values.conf.designate.DEFAULT.log_config_append }}
83 - name: designate-etc
84 mountPath: {{ .Values.conf.designate.DEFAULT.log_config_append }}
85 subPath: {{ base .Values.conf.designate.DEFAULT.log_config_append }}
86 readOnly: true
87 {{- end }}
88{{ if $mounts_designate_sink.volumeMounts }}{{ toYaml $mounts_designate_sink.volumeMounts | indent 12 }}{{ end }}
89 volumes:
90 - name: pod-etc-designate
91 emptyDir: {}
92 - name: pod-var-cache-designate
93 emptyDir: {}
94 - name: designate-bin
95 configMap:
96 name: designate-bin
97 defaultMode: 0555
98 - name: designate-etc
99 secret:
100 secretName: designate-etc
101 defaultMode: 0444
102{{ if $mounts_designate_sink.volumes }}{{ toYaml $mounts_designate_sink.volumes | indent 8 }}{{ end }}
103{{- end }}