{{/* 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.manifests.deployment_notification }} {{- $envAll := . }} {{- $mounts_ceilometer_notification := .Values.pod.mounts.ceilometer_notification.ceilometer_notification }} {{- $mounts_ceilometer_notification_init := .Values.pod.mounts.ceilometer_notification.init_container }} {{- $serviceAccountName := "ceilometer-notification" }} {{ tuple $envAll "notification" $serviceAccountName | include "helm-toolkit.snippets.kubernetes_pod_rbac_serviceaccount" }} --- apiVersion: apps/v1 kind: Deployment metadata: name: ceilometer-notification annotations: {{ tuple $envAll | include "helm-toolkit.snippets.release_uuid" }} labels: {{ tuple $envAll "ceilometer" "notification" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 4 }} spec: replicas: {{ .Values.pod.replicas.notification }} selector: matchLabels: {{ tuple $envAll "ceilometer" "notification" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 6 }} {{ tuple $envAll | include "helm-toolkit.snippets.kubernetes_upgrades_deployment" | indent 2 }} template: metadata: labels: {{ tuple $envAll "ceilometer" "notification" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 8 }} annotations: {{ tuple $envAll | include "helm-toolkit.snippets.release_uuid" | indent 8 }} configmap-bin-hash: {{ tuple "configmap-bin.yaml" . | include "helm-toolkit.utils.hash" }} configmap-etc-hash: {{ tuple "configmap-etc.yaml" . | include "helm-toolkit.utils.hash" }} spec: serviceAccountName: {{ $serviceAccountName }} affinity: {{ tuple $envAll "ceilometer" "notification" | include "helm-toolkit.snippets.kubernetes_pod_anti_affinity" | indent 8 }} nodeSelector: {{ .Values.labels.notification.node_selector_key }}: {{ .Values.labels.notification.node_selector_value }} initContainers: {{ tuple $envAll "notification" $mounts_ceilometer_notification_init | include "helm-toolkit.snippets.kubernetes_entrypoint_init_container" | indent 8 }} containers: - name: ceilometer-notification {{ tuple $envAll "ceilometer_notification" | include "helm-toolkit.snippets.image" | indent 10 }} {{ tuple $envAll $envAll.Values.pod.resources.notification | include "helm-toolkit.snippets.kubernetes_resources" | indent 10 }} command: - /tmp/ceilometer-notification.sh volumeMounts: - name: pod-tmp mountPath: /tmp - name: pod-etc-ceilometer mountPath: /etc/ceilometer - name: ceilometer-etc mountPath: /etc/ceilometer/ceilometer.conf subPath: ceilometer.conf readOnly: true - name: ceilometer-etc mountPath: /etc/ceilometer/api_paste.ini subPath: api_paste.ini readOnly: true - name: ceilometer-etc mountPath: /etc/ceilometer/policy.json subPath: policy.json readOnly: true - name: ceilometer-etc mountPath: /etc/ceilometer/event_definitions.yaml subPath: event_definitions.yaml readOnly: true - name: ceilometer-etc mountPath: /etc/ceilometer/event_pipeline.yaml subPath: event_pipeline.yaml readOnly: true - name: ceilometer-etc mountPath: /etc/ceilometer/pipeline.yaml subPath: pipeline.yaml readOnly: true - name: ceilometer-etc mountPath: /etc/ceilometer/gnocchi_resources.yaml subPath: gnocchi_resources.yaml readOnly: true - name: etc-ceilometer-meters mountPath: /etc/ceilometer/meters.d - name: ceilometer-etc mountPath: /etc/ceilometer/meters.d/meters.yaml subPath: meters.yaml readOnly: true - name: ceilometer-bin mountPath: /tmp/ceilometer-notification.sh subPath: ceilometer-notification.sh readOnly: true {{ if $mounts_ceilometer_notification.volumeMounts }}{{ toYaml $mounts_ceilometer_notification.volumeMounts | indent 12 }}{{ end }} volumes: - name: pod-tmp emptyDir: {} - name: pod-etc-ceilometer emptyDir: {} - name: etc-ceilometer-meters emptyDir: {} - name: ceilometer-etc secret: secretName: ceilometer-etc defaultMode: 0444 - name: ceilometer-bin configMap: name: ceilometer-bin defaultMode: 0555 {{ if $mounts_ceilometer_notification.volumes }}{{ toYaml $mounts_ceilometer_notification.volumes | indent 8 }}{{ end }} {{- end }}