Skip to content

Commit 2ffc482

Browse files
committed
run faster: use existing deployment
1 parent ccbef04 commit 2ffc482

File tree

1 file changed

+9
-7
lines changed
  • .buildkite/scripts/steps

1 file changed

+9
-7
lines changed

.buildkite/scripts/steps/ess.sh

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,17 @@ function ess_up() {
1111
fi
1212

1313
# Create a cluster with the specified stack version and store the cluster information in a file
14-
oblt-cli cluster create custom \
15-
--template ess-ea-it \
16-
--cluster-name-prefix ea-hosted-it \
17-
--parameters="{\"GitOps\":\"true\",\"GitHubRepository\":\"${BUILDKITE_REPO}\",\"GitHubCommit\":\"${BUILDKITE_COMMIT}\",\"EphemeralCluster\":\"true\",\"StackVersion\":\"$STACK_VERSION\"}" \
18-
--output-file="${PWD}/cluster-info.json" \
19-
--wait 15
14+
#oblt-cli cluster create custom \
15+
# --template ess-ea-it \
16+
# --cluster-name-prefix ea-hosted-it \
17+
# --parameters="{\"GitOps\":\"true\",\"GitHubRepository\":\"${BUILDKITE_REPO}\",\"GitHubCommit\":\"${BUILDKITE_COMMIT}\",\"EphemeralCluster\":\"true\",\"StackVersion\":\"$STACK_VERSION\"}" \
18+
# --output-file="${PWD}/cluster-info.json" \
19+
# --wait 15
2020

2121
# Extract the cluster name from the cluster information file
22-
CLUSTER_NAME=$(jq -r '.ClusterName' cluster-info.json)
22+
#CLUSTER_NAME=$(jq -r '.ClusterName' cluster-info.json)
23+
24+
CLUSTER_NAME=ea-hosted-it-ess-ea--nnszz
2325

2426
# Store the cluster name as a meta-data
2527
buildkite-agent meta-data set cluster-name "${CLUSTER_NAME}"

0 commit comments

Comments
 (0)