| {{/* |
| 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.job_domain_manage }} |
| {{- $envAll := . }} |
| |
| {{- $mounts_keystone_domain_manage := .Values.pod.mounts.keystone_domain_manage.keystone_domain_manage }} |
| {{- $mounts_keystone_domain_manage_init := .Values.pod.mounts.keystone_domain_manage.init_container }} |
| |
| {{- $serviceAccountName := "keystone-domain-manage" }} |
| {{ tuple $envAll "domain_manage" $serviceAccountName | include "helm-toolkit.snippets.kubernetes_pod_rbac_serviceaccount" }} |
| --- |
| apiVersion: batch/v1 |
| kind: Job |
| metadata: |
| name: keystone-domain-manage |
| labels: |
| {{ tuple $envAll "keystone" "domain-manage" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 4 }} |
| annotations: |
| "helm.sh/hook": post-install,post-upgrade |
| "helm.sh/hook-delete-policy": before-hook-creation |
| {{ tuple $serviceAccountName $envAll | include "helm-toolkit.snippets.custom_job_annotations" | indent 4 }} |
| spec: |
| template: |
| metadata: |
| labels: |
| {{ tuple $envAll "keystone" "domain-manage" | 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" }} |
| {{ dict "envAll" $envAll "podName" "keystone-domain-manage" "containerNames" (list "keystone-domain-manage" "keystone-domain-manage-init") | include "helm-toolkit.snippets.kubernetes_mandatory_access_control_annotation" | indent 8 }} |
| spec: |
| {{ with .Values.pod.priorityClassName.keystone_domain_manage }} |
| priorityClassName: {{ . }} |
| {{ end }} |
| {{ with .Values.pod.runtimeClassName.keystone_domain_manage }} |
| runtimeClassName: {{ . }} |
| {{ end }} |
| serviceAccountName: {{ $serviceAccountName }} |
| {{ dict "envAll" $envAll "application" "domain_manage" | include "helm-toolkit.snippets.kubernetes_pod_security_context" | indent 6 }} |
| restartPolicy: OnFailure |
| {{ if $envAll.Values.pod.tolerations.keystone.enabled }} |
| {{ tuple $envAll "keystone" | include "helm-toolkit.snippets.kubernetes_tolerations" | indent 6 }} |
| {{ end }} |
| nodeSelector: |
| {{ .Values.labels.job.node_selector_key }}: {{ .Values.labels.job.node_selector_value }} |
| initContainers: |
| {{ tuple $envAll "domain_manage" $mounts_keystone_domain_manage_init | include "helm-toolkit.snippets.kubernetes_entrypoint_init_container" | indent 8 }} |
| containers: |
| - name: keystone-domain-manage |
| {{ tuple $envAll "keystone_domain_manage" | include "helm-toolkit.snippets.image" | indent 10 }} |
| {{ tuple $envAll $envAll.Values.pod.resources.jobs.domain_manage | include "helm-toolkit.snippets.kubernetes_resources" | indent 10 }} |
| {{ dict "envAll" $envAll "application" "domain_manage" "container" "keystone_domain_manage" | include "helm-toolkit.snippets.kubernetes_container_security_context" | indent 10 }} |
| env: |
| {{- with $env := dict "ksUserSecret" .Values.secrets.identity.admin "useCA" (and .Values.manifests.certificates .Values.secrets.tls.identity.api.internal) }} |
| {{- include "helm-toolkit.snippets.keystone_openrc_env_vars" $env | indent 12 }} |
| {{- end }} |
| command: |
| - /tmp/domain-manage.sh |
| volumeMounts: |
| - name: keystone-bin |
| mountPath: /tmp/domain-manage.sh |
| subPath: domain-manage.sh |
| readOnly: true |
| {{- if and .Values.manifests.certificates .Values.secrets.tls.identity.api.internal }} |
| {{- dict "enabled" .Values.manifests.certificates "name" .Values.secrets.tls.identity.api.internal | include "helm-toolkit.snippets.tls_volume_mount" | indent 12 }} |
| {{- end }} |
| {{ if $mounts_keystone_domain_manage.volumeMounts }}{{ toYaml $mounts_keystone_domain_manage.volumeMounts | indent 12 }}{{ end }} |
| volumes: |
| - name: keystone-bin |
| configMap: |
| name: keystone-bin |
| defaultMode: 0555 |
| {{- if and .Values.manifests.certificates .Values.secrets.tls.identity.api.internal }} |
| {{- dict "enabled" .Values.manifests.certificates "name" .Values.secrets.tls.identity.api.internal | include "helm-toolkit.snippets.tls_volume" | indent 8 }} |
| {{- end }} |
| {{ if $mounts_keystone_domain_manage.volumes }}{{ toYaml $mounts_keystone_domain_manage.volumes | indent 9 }}{{ end }} |
| {{- end }} |