You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#### Important Note for Kind + Podman Users (macOS/Windows)
81
+
82
+
When using Kind with Podman (instead of Docker Desktop), the Kind cluster runs inside a VM managed by Podman. This creates a networking scenario where:
83
+
84
+
-**Pod's localhost** = the pod itself (not the VM, not the host)
85
+
-**VM localhost** = the VM (not the host)
86
+
-**Host localhost** = your actual machine
87
+
88
+
For proper networking, you need to use `APP_DOMAIN=.127.0.0.1.nip.io` and patch the CoreDNS configuration:
89
+
90
+
1.**Get the ingress controller ClusterIP:**
91
+
```bash
92
+
kubectl -n ingress-nginx get svc ingress-nginx-controller -o jsonpath='{.spec.clusterIP}'
93
+
```
94
+
95
+
2.**Patch the CoreDNS configuration:**
96
+
```bash
97
+
kubectl -n kube-system get configmap coredns -o yaml > coredns-config.yaml
98
+
```
99
+
100
+
Edit the `coredns-config.yaml` file and add the following to the `Corefile` section:
101
+
```yaml
102
+
hosts {
103
+
10.96.75.197 sso.127.0.0.1.nip.io # Replace 10.96.75.197 with your actual ClusterIP
0 commit comments