Skip to content

Commit

Permalink
multicluster CI: Use LoadBalancer for GKE etcd
Browse files Browse the repository at this point in the history
clustermesh enable was recently modified to change the default etcd
service type from LoadBalancer to NodePort in the case of GKE
autodetection. This PR adds the appropriate parameter to the
multicluster tests scripts in order to allow the tests to pass.

Signed-off-by: Andrew Sauber <[email protected]>
  • Loading branch information
asauber authored and tklauser committed Apr 28, 2023
1 parent ebd1133 commit 3d28eba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/in-cluster-test-scripts/multicluster.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ cilium --context "${CONTEXT1}" status --wait
cilium --context "${CONTEXT2}" status --wait

# Enable cluster mesh
cilium --context "${CONTEXT1}" clustermesh enable
cilium --context "${CONTEXT2}" clustermesh enable
cilium --context "${CONTEXT1}" clustermesh enable --service-type=LoadBalancer
cilium --context "${CONTEXT2}" clustermesh enable --service-type=LoadBalancer

# Copy the clustermesh secrets
# TODO(ajs): Patch the connect command to expect the Helm secret name
Expand Down

0 comments on commit 3d28eba

Please sign in to comment.