File tree Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -158,3 +158,5 @@ export WINDOWS_KUBECONFIG_FILE="${WINDOWS_K8S_DIR}\kubelet.kubeconfig"
158
158
export WINDOWS_BOOTSTRAP_KUBECONFIG_FILE=" ${WINDOWS_K8S_DIR} \kubelet.bootstrap-kubeconfig"
159
159
# Path for kube-proxy kubeconfig file on Windows nodes.
160
160
export WINDOWS_KUBEPROXY_KUBECONFIG_FILE=" ${WINDOWS_K8S_DIR} \kubeproxy.kubeconfig"
161
+ # Pause container image for Windows container.
162
+ export WINDOWS_INFRA_CONTAINER=" gcr.io/gke-release/pause-win:1.1.0"
Original file line number Diff line number Diff line change @@ -1556,6 +1556,7 @@ KUBEPROXY_ARGS: $(yaml-quote ${KUBEPROXY_ARGS})
1556
1556
KUBECONFIG_FILE: $( yaml-quote ${WINDOWS_KUBECONFIG_FILE} )
1557
1557
BOOTSTRAP_KUBECONFIG_FILE: $( yaml-quote ${WINDOWS_BOOTSTRAP_KUBECONFIG_FILE} )
1558
1558
KUBEPROXY_KUBECONFIG_FILE: $( yaml-quote ${WINDOWS_KUBEPROXY_KUBECONFIG_FILE} )
1559
+ WINDOWS_INFRA_CONTAINER: $( yaml-quote ${WINDOWS_INFRA_CONTAINER} )
1559
1560
EOF
1560
1561
}
1561
1562
Original file line number Diff line number Diff line change 51
51
# - Document functions using proper syntax:
52
52
# https://technet.microsoft.com/en-us/library/hh847834(v=wps.620).aspx
53
53
54
- $INFRA_CONTAINER = ' gcr.io/gke-release/pause-win:1.1.0'
55
54
$GCE_METADATA_SERVER = " 169.254.169.254"
56
55
# The "management" interface is used by the kubelet and by Windows pods to talk
57
56
# to the rest of the Kubernetes cluster *without NAT*. This interface does not
@@ -249,6 +248,7 @@ function Set-EnvironmentVars {
249
248
" KUBEPROXY_KUBECONFIG" = ${kube_env} [' KUBEPROXY_KUBECONFIG_FILE' ]
250
249
" LOGS_DIR" = ${kube_env} [' LOGS_DIR' ]
251
250
" MANIFESTS_DIR" = ${kube_env} [' MANIFESTS_DIR' ]
251
+ " INFRA_CONTAINER" = ${kube_env} [' WINDOWS_INFRA_CONTAINER' ]
252
252
253
253
" Path" = ${env: Path} + " ;" + ${kube_env} [' NODE_DIR' ]
254
254
" KUBE_NETWORK" = " l2bridge" .ToLower()
You can’t perform that action at this time.
0 commit comments