| {{/* |
| 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. |
| */}} |
| |
| {{- define "northdReadinessProbeTemplate" }} |
| exec: |
| command: |
| - /usr/bin/ovn-kube-util |
| - readiness-probe |
| - -t |
| - ovn-northd |
| {{- end }} |
| |
| {{- if .Values.manifests.deployment_northd }} |
| {{- $envAll := . }} |
| |
| {{- $serviceAccountName := "ovn-northd" }} |
| {{ tuple $envAll "ovn_northd" $serviceAccountName | include "helm-toolkit.snippets.kubernetes_pod_rbac_serviceaccount" }} |
| --- |
| kind: Deployment |
| apiVersion: apps/v1 |
| metadata: |
| name: ovn-northd |
| annotations: |
| {{ tuple $envAll | include "helm-toolkit.snippets.release_uuid" }} |
| labels: |
| {{ tuple $envAll "ovn" "ovn-northd" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 4 }} |
| spec: |
| replicas: {{ .Values.pod.replicas.ovn_northd }} |
| selector: |
| matchLabels: |
| {{ tuple $envAll "ovn" "ovn-northd" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 6 }} |
| template: |
| metadata: |
| labels: |
| {{ tuple $envAll "ovn" "ovn-northd" | 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" }} |
| spec: |
| serviceAccountName: {{ $serviceAccountName }} |
| affinity: |
| {{- tuple $envAll "ovn" "ovn_northd" | include "helm-toolkit.snippets.kubernetes_pod_anti_affinity" | indent 8 }} |
| nodeSelector: |
| {{ .Values.labels.ovn_northd.node_selector_key }}: {{ .Values.labels.ovn_northd.node_selector_value }} |
| initContainers: |
| {{- tuple $envAll "ovn_northd" list | include "helm-toolkit.snippets.kubernetes_entrypoint_init_container" | indent 8 }} |
| containers: |
| - name: northd |
| command: |
| - /root/ovnkube.sh |
| - run-ovn-northd |
| {{ tuple $envAll "ovn_northd" | include "helm-toolkit.snippets.image" | indent 10 }} |
| {{ tuple $envAll $envAll.Values.pod.resources.ovn_northd | include "helm-toolkit.snippets.kubernetes_resources" | indent 10 }} |
| {{ dict "envAll" $envAll "application" "ovn_northd" "container" "northd" | include "helm-toolkit.snippets.kubernetes_container_security_context" | indent 10 }} |
| {{ dict "envAll" . "component" "ovn_northd" "container" "northd" "type" "readiness" "probeTemplate" (include "northdReadinessProbeTemplate" . | fromYaml) | include "helm-toolkit.snippets.kubernetes_probe" | indent 10 }} |
| {{ dict "envAll" . "component" "ovn_northd" "container" "northd" "type" "liveness" "probeTemplate" (include "northdReadinessProbeTemplate" . | fromYaml) | include "helm-toolkit.snippets.kubernetes_probe" | indent 10 }} |
| env: |
| - name: OVN_DAEMONSET_VERSION |
| value: "3" |
| - name: OVN_LOGLEVEL_NORTHD |
| value: "-vconsole:info -vfile:info" |
| - name: OVN_KUBERNETES_NAMESPACE |
| valueFrom: |
| fieldRef: |
| fieldPath: metadata.namespace |
| - name: OVN_KUBERNETES_NB_STATEFULSET |
| value: ovn-ovsdb-nb |
| - name: OVN_KUBERNETES_SB_STATEFULSET |
| value: ovn-ovsdb-sb |
| - name: OVN_SSL_ENABLE |
| value: "no" |
| {{- end }} |