X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=deploy%2Fcluster%2Ftemplates%2Fkubeadmconfigtemplate.yaml;h=9250cc57a75cd453701ff97359c734281ad149de;hb=adbd076f40c348b04e52321c3c5cdaa528915f1a;hp=0172dc730104a1ecf45ef94bde977e02f60c9746;hpb=11184272883dff3c057a550adc3e8a2a20f5b7bf;p=icn.git diff --git a/deploy/cluster/templates/kubeadmconfigtemplate.yaml b/deploy/cluster/templates/kubeadmconfigtemplate.yaml index 0172dc7..9250cc5 100644 --- a/deploy/cluster/templates/kubeadmconfigtemplate.yaml +++ b/deploy/cluster/templates/kubeadmconfigtemplate.yaml @@ -9,16 +9,15 @@ 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 kube-reserved: cpu=100m,memory=256Mi name: '{{ "{{" }} ds.meta_data.name {{ "}}" }}' preKubeadmCommands: -{{- 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 +{{- if .Values.preKubeadmCommands }} +{{ toYaml .Values.preKubeadmCommands | indent 6 }} {{- 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" @@ -47,6 +46,12 @@ spec: permissions: '0777' content: | {{ $.Files.Get "resources/set_kernel_cmdline.sh" | indent 10 }} +{{- if eq .Values.cni "calico" }} + - path: /etc/NetworkManager/conf.d/calico.conf + content: | +{{ $.Files.Get "resources/calico.conf" | indent 10 }} +{{- end }} +{{- if .Values.userData }} users: - name: {{ .Values.userData.name }} shell: /bin/bash @@ -59,3 +64,4 @@ spec: - name: root sshAuthorizedKeys: - {{ .Values.userData.sshAuthorizedKey }} +{{- end }}