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 5f004d2 commit 44c7315Copy full SHA for 44c7315
hack/build-integration-kubernetes.sh
@@ -104,8 +104,10 @@ main(){
104
105
# Hack to get go into kind control plane
106
exec::nerdctl rm -f go-kind 2>/dev/null || true
107
- exec::nerdctl run -d --name go-kind golang:"$GO_VERSION" sleep Inf
+ exec::nerdctl pull --quiet golang:"$GO_VERSION"
108
+ exec::nerdctl run -d --pull never --name go-kind golang:"$GO_VERSION" sleep Inf
109
exec::nerdctl cp go-kind:/usr/local/go /tmp/go
110
+ exec::nerdctl rm -f go-kind
111
112
# Create fresh cluster
113
log::info "Creating new cluster"
0 commit comments