update the committers for icn
[icn.git] / deploy / cluster / templates / kubeadmconfigtemplate.yaml
index 22463d5..d9e2488 100644 (file)
@@ -9,6 +9,7 @@ spec:
       joinConfiguration:
         nodeRegistration:
           kubeletExtraArgs:
+            {{- include "cluster.nodeIP" .Values.networkData | nindent 12 }}
             node-labels: metal3.io/uuid={{ "{{" }} ds.meta_data.uuid {{ "}}" }}
             cpu-manager-policy: static
             topology-manager-policy: best-effort
@@ -17,11 +18,6 @@ spec:
       preKubeadmCommands:
 {{- if .Values.preKubeadmCommands }}
 {{ toYaml .Values.preKubeadmCommands | indent 6 }}
-{{- end }}
-{{- if .Values.networks }}
-      # Without touching up /etc/hosts, kubeadm may pick the wrong
-      # (i.e. provisioning network) address for the node IP
-      - sed -i "1i $(ip -4 addr show dev {{ .Values.networks.baremetal.interface }} | grep -oP '(?<=inet\s)\d+(\.\d+){3}' | head -1) $(hostname)" /etc/hosts
 {{- end }}
       - curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add -
       - add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
@@ -37,6 +33,8 @@ spec:
       # This must be done after kubeadm as the cabpk provider relies
       # on files in /var/run, which won't persist after a reboot
       - /usr/local/bin/set_kernel_cmdline.sh
+      # Required for OpenEBS support
+      - /usr/local/bin/enable_iscsi.sh
       files:
 {{ include "cluster.containerRuntime" .Values | indent 6 }}
       - path: /etc/systemd/system/containerd.service.d/override.conf
@@ -50,6 +48,10 @@ spec:
         permissions: '0777'
         content: |
 {{ $.Files.Get "resources/set_kernel_cmdline.sh" | indent 10 }}
+      - path: /usr/local/bin/enable_iscsi.sh
+        permissions: '0777'
+        content: |
+{{ $.Files.Get "resources/enable_iscsi.sh" | indent 10 }}
 {{- if eq .Values.cni "calico" }}
       - path: /etc/NetworkManager/conf.d/calico.conf
         content: |