fix: switch to sslip.io

This commit is contained in:
Clelia (Astra) Bertelli
2026-09-22 17:54:46 +02:00
committed by GitHub
parent 38732732b5
commit bab8d599fe
@@ -180,7 +180,7 @@ metadata:
spec:
ingressClassName: traefik
rules:
- host: qdrant.<your-ingress-external-ip>.nip.io
- host: qdrant.<your-ingress-external-ip>.sslip.io
http:
paths:
- path: /
@@ -193,12 +193,12 @@ spec:
EOF
```
The `host` field doesn't create DNS, it's a string Traefik matches against the incoming request's `Host` header. Nothing resolves `qdrant.local` or any other placeholder domain unless DNS actually points somewhere. [nip.io](https://nip.io) is a wildcard DNS service that resolves `anything.<ip>.nip.io` to `<ip>` automatically, useful for testing without owning a domain or configuring DNS. In production, replace it with a real domain pointed at your ingress's external address.
The `host` field doesn't create DNS, it's a string Traefik matches against the incoming request's `Host` header. Nothing resolves `qdrant.local` or any other placeholder domain unless DNS actually points somewhere. [sslp.io](https://sslip.io) is a wildcard DNS service that resolves `anything.<ip>.sslip.io` to `<ip>` automatically, useful for testing without owning a domain or configuring DNS. In production, replace it with a real domain pointed at your ingress's external address.
### Verify
```bash
curl -ik https://qdrant.<your-ingress-external-ip>.nip.io/collections -H "api-key: $API_KEY"
curl -ik https://qdrant.<your-ingress-external-ip>.sslip.io/collections -H "api-key: $API_KEY"
# HTTP/2 200
```