mirror of https://github.com/knative/docs.git
Clarify Magic DNS Caveat (#3823)
Magic DNS does work locally on minikube, so long as `minikube tunnel` is running.
This commit is contained in:
parent
4763c1715e
commit
d2cf66aa94
|
@ -328,9 +328,14 @@ kubectl logs -f deploy/knative-operator
|
||||||
kubectl apply --filename {{artifact(repo="serving",file="serving-default-domain.yaml")}}
|
kubectl apply --filename {{artifact(repo="serving",file="serving-default-domain.yaml")}}
|
||||||
```
|
```
|
||||||
|
|
||||||
**Caveat**: This will only work if the cluster LoadBalancer service exposes an
|
!!! info "Caveat"
|
||||||
IPv4 address or hostname, so it will not work with IPv6 clusters or local setups
|
This will only work if the cluster `LoadBalancer` service exposes an
|
||||||
like Minikube. For these, see "Real DNS" or "Temporary DNS".
|
IPv4 address or hostname, so it will not work with IPv6 clusters or local setups
|
||||||
|
like Minikube unless [`minikube tunnel`](https://minikube.sigs.k8s.io/docs/commands/tunnel/)
|
||||||
|
is running.
|
||||||
|
|
||||||
|
For these, see the "Real DNS" or "Temporary DNS" tabs.
|
||||||
|
|
||||||
|
|
||||||
=== "Real DNS"
|
=== "Real DNS"
|
||||||
To configure DNS for Knative, take the External IP
|
To configure DNS for Knative, take the External IP
|
||||||
|
|
|
@ -194,10 +194,13 @@ Follow the procedure for the DNS of your choice:
|
||||||
kubectl apply -f {{ artifact(repo="serving",file="serving-default-domain.yaml")}}
|
kubectl apply -f {{ artifact(repo="serving",file="serving-default-domain.yaml")}}
|
||||||
```
|
```
|
||||||
|
|
||||||
!!! info "CAVEAT"
|
!!! info "Caveat"
|
||||||
This will only work if the cluster LoadBalancer service exposes an
|
This will only work if the cluster `LoadBalancer` service exposes an
|
||||||
IPv4 address or hostname, so it will not work with IPv6 clusters or local setups
|
IPv4 address or hostname, so it will not work with IPv6 clusters or local setups
|
||||||
like Minikube. For these, see "Real DNS" or "Temporary DNS".
|
like Minikube unless [`minikube tunnel`](https://minikube.sigs.k8s.io/docs/commands/tunnel/)
|
||||||
|
is running.
|
||||||
|
|
||||||
|
For these, see the "Real DNS" or "Temporary DNS" tabs.
|
||||||
|
|
||||||
=== "Real DNS"
|
=== "Real DNS"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue