Skip to content

Commit

Permalink
enable dual stack by default
Browse files Browse the repository at this point in the history
So we can connect to IPv6 upstream
Signed-off-by: spacewander <[email protected]>
  • Loading branch information
spacewander committed Sep 24, 2024
1 parent ba4d69a commit 2bfb7a7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion e2e/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ helm: $(LOCALBIN)

.PHONY: create-cluster
create-cluster: kind kubectl
$(KIND) create cluster --name htnn --image kindest/node:v$(MIN_K8S_VERSION)
$(KIND) create cluster --name htnn --image kindest/node:v$(MIN_K8S_VERSION) --config=kind_cluster.yaml
$(KUBECTL) apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v$(GATEWAY_API_VERSION)/standard-install.yaml
$(KUBECTL) apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v$(GATEWAY_API_VERSION)/experimental-install.yaml

Expand Down
4 changes: 4 additions & 0 deletions e2e/kind_cluster.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
networking:
ipFamily: dual
1 change: 1 addition & 0 deletions manifests/charts/htnn-controller/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ pilot:
PILOT_ENABLE_HTNN: "true"
PILOT_ENABLE_HTNN_STATUS: "true"
HTNN_ENABLE_LDS_PLUGIN_VIA_ECDS: "false"
ISTIO_DUAL_STACK: "true"

# Settings related to the untaint controller
# This controller will remove `cni.istio.io/not-ready` from nodes when the istio-cni pod becomes ready
Expand Down

0 comments on commit 2bfb7a7

Please sign in to comment.