We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6bc42d5 + 81cc384 commit 257e686Copy full SHA for 257e686
cluster/gce/util.sh
@@ -2031,7 +2031,9 @@ function create-node-template() {
2031
if [[ "${os}" == 'linux' ]]; then
2032
node_image_flags="--image-project ${NODE_IMAGE_PROJECT} --image ${NODE_IMAGE}"
2033
elif [[ "${os}" == 'windows' ]]; then
2034
- node_image_flags="--image-project ${WINDOWS_NODE_IMAGE_PROJECT} --image-family ${WINDOWS_NODE_IMAGE_FAMILY}"
+ # TODO(pjh): revert back to using WINDOWS_NODE_IMAGE_FAMILY instead of
2035
+ # pinning to the v20190312 image once #76666 is resolved.
2036
+ node_image_flags="--image-project ${WINDOWS_NODE_IMAGE_PROJECT} --image=windows-server-1809-dc-core-for-containers-v20190312"
2037
else
2038
echo "Unknown OS ${os}" >&2
2039
exit 1
0 commit comments