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 b7f6dc3 commit fb68367Copy full SHA for fb68367
tests/e2e/scenarios/clusterapi/run-test.sh
@@ -21,6 +21,13 @@ kops-acquire-latest
21
22
CLOUD_PROVIDER=gce
23
24
+if [[ -z "${KOPS_STATE_STORE:-}" ]]; then
25
+ # Create the state-store bucket if it doesn't exist
26
+ KOPS_STATE_STORE="gs://kops-state-$(gcloud config get-value project)"
27
+ export KOPS_STATE_STORE
28
+ gsutil ls "${KOPS_STATE_STORE}" || gsutil mb "${KOPS_STATE_STORE}" || return
29
+fi
30
+
31
#NETWORKING=cilium
32
#OVERRIDES="${OVERRIDES-} --instance-manager=karpenter"
33
#OVERRIDES="${OVERRIDES} --control-plane-size=c6g.large"
0 commit comments