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.
1 parent 8c533e7 commit d95f1a5Copy full SHA for d95f1a5
playbooks/cloud-provider-openstack-acceptance-test-e2e-conformance/run.yaml
@@ -112,6 +112,12 @@
112
# Build all binaries
113
export KUBE_FASTBUILD=true
114
export KUBERNETES_CONFORMANCE_TEST=y
115
+ # Go modules not supported by kubernetes before v1.15
116
+ if [ '{{ k8s_version }}' == 'release-1.13' || '{{ k8s_version }}' == 'release-1.14' ]; then
117
+ unset GO111MODULE
118
+ unset GOSUMDB
119
+ unset GOPROXY
120
+ fi
121
122
# TEMP - Dump Memory Every Second
123
free -lmthw -c10000 >> $LOG_DIR/system_memory.log &
0 commit comments