blob: f1f73535078dc5b374322ac3602577865dc99480 [file] [log] [blame]
Mohammed Naserf3f59a72023-01-15 21:02:04 -05001{{/*
2Licensed under the Apache License, Version 2.0 (the "License");
3you may not use this file except in compliance with the License.
4You may obtain a copy of the License at
5
6 http://www.apache.org/licenses/LICENSE-2.0
7
8Unless required by applicable law or agreed to in writing, software
9distributed under the License is distributed on an "AS IS" BASIS,
10WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11See the License for the specific language governing permissions and
12limitations under the License.
13*/}}
14
15{{- if .Values.manifests.deployment_cloudwatch }}
16{{- $envAll := . }}
17
18{{- $mounts_heat_cloudwatch := .Values.pod.mounts.heat_cloudwatch.heat_cloudwatch }}
19{{- $mounts_heat_cloudwatch_init := .Values.pod.mounts.heat_cloudwatch.init_container }}
20
21{{- $serviceAccountName := "heat-cloudwatch" }}
22{{ tuple $envAll "cloudwatch" $serviceAccountName | include "helm-toolkit.snippets.kubernetes_pod_rbac_serviceaccount" }}
23---
24apiVersion: apps/v1
25kind: Deployment
26metadata:
27 name: heat-cloudwatch
28 annotations:
29 {{ tuple $envAll | include "helm-toolkit.snippets.release_uuid" }}
30 labels:
31{{ tuple $envAll "heat" "cloudwatch" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 4 }}
32spec:
33 replicas: {{ .Values.pod.replicas.cloudwatch }}
34 selector:
35 matchLabels:
36{{ tuple $envAll "heat" "cloudwatch" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 6 }}
37{{ tuple $envAll | include "helm-toolkit.snippets.kubernetes_upgrades_deployment" | indent 2 }}
38 template:
39 metadata:
40 labels:
41{{ tuple $envAll "heat" "cloudwatch" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 8 }}
42 annotations:
43{{ tuple $envAll | include "helm-toolkit.snippets.release_uuid" | indent 8 }}
44 configmap-bin-hash: {{ tuple "configmap-bin.yaml" . | include "helm-toolkit.utils.hash" }}
45 configmap-etc-hash: {{ tuple "configmap-etc.yaml" . | include "helm-toolkit.utils.hash" }}
46 spec:
47 serviceAccountName: {{ $serviceAccountName }}
48{{ dict "envAll" $envAll "application" "heat" | include "helm-toolkit.snippets.kubernetes_pod_security_context" | indent 6 }}
49 affinity:
50{{ tuple $envAll "heat" "cloudwatch" | include "helm-toolkit.snippets.kubernetes_pod_anti_affinity" | indent 8 }}
Mohammed Naserbcdd25c2023-01-18 03:38:47 +000051{{ if $envAll.Values.pod.tolerations.heat.enabled }}
52{{ tuple $envAll "heat" | include "helm-toolkit.snippets.kubernetes_tolerations" | indent 6 }}
53{{ end }}
Mohammed Naserf3f59a72023-01-15 21:02:04 -050054 nodeSelector:
55 {{ .Values.labels.cloudwatch.node_selector_key }}: {{ .Values.labels.cloudwatch.node_selector_value }}
56 terminationGracePeriodSeconds: {{ .Values.pod.lifecycle.termination_grace_period.cloudwatch.timeout | default "30" }}
57 initContainers:
58{{ tuple $envAll "cloudwatch" $mounts_heat_cloudwatch_init | include "helm-toolkit.snippets.kubernetes_entrypoint_init_container" | indent 8 }}
59 containers:
60 - name: heat-cloudwatch
61{{ tuple $envAll "heat_cloudwatch" | include "helm-toolkit.snippets.image" | indent 10 }}
62{{ tuple $envAll $envAll.Values.pod.resources.cloudwatch | include "helm-toolkit.snippets.kubernetes_resources" | indent 10 }}
63{{ dict "envAll" $envAll "application" "heat" "container" "heat_cloudwatch" | include "helm-toolkit.snippets.kubernetes_container_security_context" | indent 10 }}
64 command:
65 - /tmp/heat-cloudwatch.sh
66 - start
67 lifecycle:
68 preStop:
69 exec:
70 command:
71 - /tmp/heat-cloudwatch.sh
72 - stop
73 ports:
74 - name: h-cwh
Mohammed Naserbcdd25c2023-01-18 03:38:47 +000075 containerPort: {{ tuple "cloudwatch" "service" "api" . | include "helm-toolkit.endpoints.endpoint_port_lookup" }}
Mohammed Naserf3f59a72023-01-15 21:02:04 -050076 readinessProbe:
Mohammed Naserbcdd25c2023-01-18 03:38:47 +000077 httpGet:
78 scheme: {{ tuple "cloudwatch" "service" "api" . | include "helm-toolkit.endpoints.keystone_endpoint_scheme_lookup" | upper }}
79 path: /
80 port: {{ tuple "cloudwatch" "service" "api" . | include "helm-toolkit.endpoints.endpoint_port_lookup" }}
Mohammed Naserf3f59a72023-01-15 21:02:04 -050081 volumeMounts:
82 - name: pod-tmp
83 mountPath: /tmp
84 - name: pod-etc-heat
85 mountPath: /etc/heat
86 - name: heat-bin
87 mountPath: /tmp/heat-cloudwatch.sh
88 subPath: heat-cloudwatch.sh
89 readOnly: true
90 - name: heat-etc
91 mountPath: /etc/heat/heat.conf
92 subPath: heat.conf
93 readOnly: true
94 {{ if .Values.conf.heat.DEFAULT.log_config_append }}
95 - name: heat-etc
96 mountPath: {{ .Values.conf.heat.DEFAULT.log_config_append }}
97 subPath: {{ base .Values.conf.heat.DEFAULT.log_config_append }}
98 readOnly: true
99 {{ end }}
100 - name: heat-etc
101 mountPath: /etc/heat/api-paste.ini
102 subPath: api-paste.ini
103 readOnly: true
Mohammed Naserf3f59a72023-01-15 21:02:04 -0500104 - name: heat-etc
105 mountPath: /etc/heat/policy.yaml
106 subPath: policy.yaml
107 readOnly: true
108 - name: heat-etc
109 mountPath: /etc/heat/api_audit_map.conf
110 subPath: api_audit_map.conf
111 readOnly: true
112{{ if $mounts_heat_cloudwatch.volumeMounts }}{{ toYaml $mounts_heat_cloudwatch.volumeMounts | indent 12 }}{{ end }}
113 volumes:
114 - name: pod-tmp
115 emptyDir: {}
116 - name: pod-etc-heat
117 emptyDir: {}
118 - name: heat-bin
119 configMap:
120 name: heat-bin
121 defaultMode: 0555
122 - name: heat-etc
123 secret:
124 secretName: heat-etc
125 defaultMode: 0444
126{{ if $mounts_heat_cloudwatch.volumes }}{{ toYaml $mounts_heat_cloudwatch.volumes | indent 8 }}{{ end }}
127{{- end }}