Skip to content

Commit 2bfb7a7

Browse files
committed
enable dual stack by default
So we can connect to IPv6 upstream Signed-off-by: spacewander <[email protected]>
1 parent ba4d69a commit 2bfb7a7

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

e2e/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ helm: $(LOCALBIN)
3434

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

e2e/kind_cluster.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
kind: Cluster
2+
apiVersion: kind.x-k8s.io/v1alpha4
3+
networking:
4+
ipFamily: dual

manifests/charts/htnn-controller/values.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ pilot:
3535
PILOT_ENABLE_HTNN: "true"
3636
PILOT_ENABLE_HTNN_STATUS: "true"
3737
HTNN_ENABLE_LDS_PLUGIN_VIA_ECDS: "false"
38+
ISTIO_DUAL_STACK: "true"
3839

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

0 commit comments

Comments
 (0)