Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ workflow:
REPLICAS: "2"
OCM_LOGIN_ENV: "production"
REGION: "us-east-1"
ZONES_LIST: "us-east-1a"
pre:
# Clean up stale VPC stack from previous failed runs, then provision
- ref: aws-neuron-operator-cleanup-vpc
Expand All @@ -21,11 +22,11 @@ workflow:
- ref: rosa-cluster-wait-ready-cluster
- ref: rosa-cluster-notify-error
- ref: rosa-conf-idp-htpasswd
- ref: rosa-cluster-wait-ready-nodes
- ref: rosa-cluster-wait-ready-operators
- ref: aws-provision-tags-for-byo-vpc
# Additional configuration
- ref: osd-ccs-conf-idp-htpasswd-multi-users
- ref: rosa-cluster-wait-ready-nodes
# Install operators before tests so eco-gotests detects them as pre-existing
- ref: aws-neuron-operator-install-operators
test:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ workflow:
REPLICAS: "2"
OCM_LOGIN_ENV: "production"
REGION: "us-east-1"
ZONES_LIST: "us-east-1a"
pre:
# Clean up stale VPC stack from previous failed runs, then provision
- ref: aws-neuron-operator-cleanup-vpc
Expand All @@ -21,11 +22,11 @@ workflow:
- ref: rosa-cluster-wait-ready-cluster
- ref: rosa-cluster-notify-error
- ref: rosa-conf-idp-htpasswd
- ref: rosa-cluster-wait-ready-nodes
- ref: rosa-cluster-wait-ready-operators
- ref: aws-provision-tags-for-byo-vpc
# Additional configuration
- ref: osd-ccs-conf-idp-htpasswd-multi-users
- ref: rosa-cluster-wait-ready-nodes
# Install operators before tests so eco-gotests detects them as pre-existing
- ref: aws-neuron-operator-install-operators
test:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,7 @@ case "$CLUSTER_TYPE" in
removal_list=( )
echo "Removing the hosts having architectures: ${SCALE_IN_ARCHITECTURES}..."
REGEX=$(echo "$SCALE_IN_ARCHITECTURES" | tr ',' '|')
# shellcheck disable=SC2154
for bmhost in $(yq e -o=j -I=0 ".[] | select(.arch|test(\"${REGEX}\") and .name|test(\"worker\"))" "${SHARED_DIR}/hosts.yaml"); do
# shellcheck disable=SC1090
. <(echo "$bmhost" | yq e 'to_entries | .[] | (.key + "=\"" + .value + "\"")')
Expand Down