blob: 9312bc7d639e27d15e93408254a551c2ac1dcc40 [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_mdns }}
13
14{{- $envAll := . }}
15{{- $mounts_designate_mdns := .Values.pod.mounts.designate_mdns.designate_mdns }}
16{{- $mounts_designate_mdns_init := .Values.pod.mounts.designate_mdns.init_container }}
17
18{{- $serviceAccountName := "designate-mdns" }}
19{{ tuple $envAll "mdns" $serviceAccountName | include "helm-toolkit.snippets.kubernetes_pod_rbac_serviceaccount" }}
20---
21apiVersion: apps/v1
22kind: Deployment
23metadata:
24 name: designate-mdns
25 annotations:
26 {{ tuple $envAll | include "helm-toolkit.snippets.release_uuid" }}
27 labels:
28{{ tuple $envAll "designate" "mdns" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 4 }}
29spec:
30 replicas: {{ .Values.pod.replicas.mdns }}
31 selector:
32 matchLabels:
33{{ tuple $envAll "designate" "mdns" | 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" "mdns" | 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_mdns }}
45 priorityClassName: {{ . }}
46{{ end }}
47{{ with .Values.pod.runtimeClassName.designate_mdns }}
48 runtimeClassName: {{ . }}
49{{ end }}
Mohammed Naserf3f59a72023-01-15 21:02:04 -050050 serviceAccountName: {{ $serviceAccountName }}
51{{ dict "envAll" $envAll "application" "designate" | include "helm-toolkit.snippets.kubernetes_pod_security_context" | indent 6 }}
52 affinity:
53{{ tuple $envAll "designate" "mdns" | include "helm-toolkit.snippets.kubernetes_pod_anti_affinity" | indent 8 }}
54 nodeSelector:
55 {{ .Values.labels.mdns.node_selector_key }}: {{ .Values.labels.mdns.node_selector_value }}
56 terminationGracePeriodSeconds: {{ .Values.pod.lifecycle.termination_grace_period.mdns.timeout | default "30" }}
57 initContainers:
58{{ tuple $envAll "mdns" $mounts_designate_mdns_init | include "helm-toolkit.snippets.kubernetes_entrypoint_init_container" | indent 8 }}
59 containers:
60 - name: designate-mdns
61{{ tuple $envAll "designate_mdns" | include "helm-toolkit.snippets.image" | indent 10 }}
62{{ tuple $envAll $envAll.Values.pod.resources.mdns | include "helm-toolkit.snippets.kubernetes_resources" | indent 10 }}
63{{ dict "envAll" $envAll "application" "designate" "container" "designate_mdns" | include "helm-toolkit.snippets.kubernetes_container_security_context" | indent 10 }}
64 ports:
65 - name: d-mdns
66 containerPort: {{ tuple "mdns" "internal" "ipc" . | include "helm-toolkit.endpoints.endpoint_port_lookup" }}
67 - name: d-mdns-udp
68 containerPort: {{ tuple "mdns" "internal" "ipc" . | include "helm-toolkit.endpoints.endpoint_port_lookup" }}
69 protocol: UDP
70 readinessProbe:
71 tcpSocket:
72 port: {{ tuple "mdns" "internal" "ipc" . | include "helm-toolkit.endpoints.endpoint_port_lookup" }}
73 command:
74 - bash
75 - /tmp/designate-mdns.sh
76 volumeMounts:
77 - name: designate-bin
78 mountPath: /tmp/designate-mdns.sh
79 subPath: designate-mdns.sh
80 readOnly: true
81 - name: pod-etc-designate
82 mountPath: /etc/designate
83 - name: pod-var-cache-designate
84 mountPath: /var/cache/designate
85 - name: designate-etc
86 mountPath: /etc/designate/designate.conf
87 subPath: designate.conf
88 readOnly: true
89 - name: designate-etc
90 mountPath: /etc/designate/api-paste.ini
91 subPath: api-paste.ini
92 readOnly: true
Mohammed Naserf3f59a72023-01-15 21:02:04 -050093 - name: designate-etc
94 mountPath: /etc/designate/policy.yaml
95 subPath: policy.yaml
96 readOnly: true
97 {{- if .Values.conf.designate.DEFAULT.log_config_append }}
98 - name: designate-etc
99 mountPath: {{ .Values.conf.designate.DEFAULT.log_config_append }}
100 subPath: {{ base .Values.conf.designate.DEFAULT.log_config_append }}
101 readOnly: true
102 {{- end }}
103{{ if $mounts_designate_mdns.volumeMounts }}{{ toYaml $mounts_designate_mdns.volumeMounts | indent 12 }}{{ end }}
104 volumes:
105 - name: pod-etc-designate
106 emptyDir: {}
107 - name: pod-var-cache-designate
108 emptyDir: {}
109 - name: designate-bin
110 configMap:
111 name: designate-bin
112 defaultMode: 0555
113 - name: designate-etc
114 secret:
115 secretName: designate-etc
116 defaultMode: 0444
117{{ if $mounts_designate_mdns.volumes }}{{ toYaml $mounts_designate_mdns.volumes | indent 8 }}{{ end }}
118{{- end }}