Skip to content

Commit f6dee0f

Browse files
gustavoliraclaude
andauthored
fix: remove undefined aws_eks_verify_cluster and aws_eks_get_cluster_info calls (#4398)
These functions were removed but their call sites in eks-helm.sh and eks-operator.sh were not updated, causing "command not found" errors in the eks-helm-nightly pipeline. Backport of the fix from main (PR #3610) to release-1.9. Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 6a116a8 commit f6dee0f

2 files changed

Lines changed: 4 additions & 10 deletions

File tree

.ci/pipelines/jobs/eks-helm.sh

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,8 @@ source "$DIR"/playwright-projects.sh
1616
handle_eks_helm() {
1717
log::info "Starting EKS Helm deployment"
1818

19-
# Verify EKS cluster connectivity
20-
aws_eks_verify_cluster
21-
22-
# Get cluster information
23-
aws_eks_get_cluster_info
19+
# Note: aws_eks_verify_cluster removed - cluster is pre-configured by CI environment
20+
# Note: aws_eks_get_cluster_info removed - platform vars are now hardcoded
2421

2522
export NAME_SPACE="${NAME_SPACE:-showcase-k8s-ci-nightly}"
2623
export NAME_SPACE_RBAC="${NAME_SPACE_RBAC:-showcase-rbac-k8s-ci-nightly}"

.ci/pipelines/jobs/eks-operator.sh

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,8 @@ source "$DIR"/playwright-projects.sh
1616
handle_eks_operator() {
1717
log::info "Starting EKS Operator deployment"
1818

19-
# Verify EKS cluster connectivity
20-
aws_eks_verify_cluster
21-
22-
# Get cluster information
23-
aws_eks_get_cluster_info
19+
# Note: aws_eks_verify_cluster removed - cluster is pre-configured by CI environment
20+
# Note: aws_eks_get_cluster_info removed - platform vars are now hardcoded
2421

2522
export NAME_SPACE="${NAME_SPACE:-showcase-k8s-ci-nightly}"
2623
export NAME_SPACE_RBAC="${NAME_SPACE_RBAC:-showcase-rbac-k8s-ci-nightly}"

0 commit comments

Comments
 (0)