trying to fix windows build breaks (#1568)

this is fixing what I'm trying to fix. More issues. We'll fix those in a seperate pr.
This commit is contained in:
Jack 2017-10-10 12:16:46 -07:00 коммит произвёл GitHub
Родитель 4df8a77c90
Коммит 235da3945c
3 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -117,7 +117,7 @@ write_files:
KUBELET_IMAGE_GC_HIGH_THRESHOLD={{WrapAsVariable "gchighthreshold"}}
KUBELET_IMAGE_GC_LOW_THRESHOLD={{WrapAsVariable "gclowthreshold"}}
{{if IsKubernetesVersionGe "1.6.0"}}
KUBELET_NON_MASQUERADE_CIDR={{WrapAsVariable "kubernetesNonMasqueradeCidr"}}
KUBELET_NON_MASQUERADE_CIDR=--non-masquerade-cidr={{WrapAsVariable "kubernetesNonMasqueradeCidr"}}
KUBELET_FEATURE_GATES=--feature-gates=Accelerators=true
{{end}}

Просмотреть файл

@ -50,8 +50,8 @@ ExecStart=/usr/bin/docker run \
--node-status-update-frequency=${KUBELET_NODE_STATUS_UPDATE_FREQUENCY} \
--image-gc-high-threshold=${KUBELET_IMAGE_GC_HIGH_THRESHOLD} \
--image-gc-low-threshold=${KUBELET_IMAGE_GC_LOW_THRESHOLD} \
--non-masquerade-cidr=${KUBELET_NON_MASQUERADE_CIDR} \
--v=2 ${KUBELET_FEATURE_GATES} \
${KUBELET_NON_MASQUERADE_CIDR} \
${KUBELET_REGISTER_NODE} ${KUBELET_REGISTER_WITH_TAINTS}
[Install]

Просмотреть файл

@ -209,7 +209,7 @@ write_files:
KUBELET_IMAGE_GC_LOW_THRESHOLD={{WrapAsVariable "gclowthreshold"}}
{{if IsKubernetesVersionGe "1.6.0"}}
{{if HasLinuxAgents}}
KUBELET_NON_MASQUERADE_CIDR={{WrapAsVariable "kubernetesNonMasqueradeCidr"}}
KUBELET_NON_MASQUERADE_CIDR=--non-masquerade-cidr={{WrapAsVariable "kubernetesNonMasqueradeCidr"}}
KUBELET_REGISTER_NODE=--register-node=true
KUBELET_REGISTER_WITH_TAINTS=--register-with-taints={{WrapAsVariable "registerWithTaints"}}
{{end}}