X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=deploy%2Fcluster%2Ftemplates%2Fkubeadmconfigtemplate.yaml;h=22463d5e813683fe122e07d75b54d85347255942;hb=7a6bf66cfeaeaff0bea0bf2da6ffd3467e998492;hp=0172dc730104a1ecf45ef94bde977e02f60c9746;hpb=94477fb85941f8cb6392fbe5bc8144f6764aace0;p=icn.git diff --git a/deploy/cluster/templates/kubeadmconfigtemplate.yaml b/deploy/cluster/templates/kubeadmconfigtemplate.yaml index 0172dc7..22463d5 100644 --- a/deploy/cluster/templates/kubeadmconfigtemplate.yaml +++ b/deploy/cluster/templates/kubeadmconfigtemplate.yaml @@ -15,6 +15,9 @@ spec: kube-reserved: cpu=100m,memory=256Mi name: '{{ "{{" }} ds.meta_data.name {{ "}}" }}' 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 @@ -47,6 +50,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 +68,4 @@ spec: - name: root sshAuthorizedKeys: - {{ .Values.userData.sshAuthorizedKey }} +{{- end }}