Я не могу заставить мой вход работать по-местному docker-desktop
Я сделал helm create my-project-helm
, как все
, тогда я делаю изменения в ./my-project-helm/values.yaml
Я просто показываю вам больше всегоинтересная часть (о входе)
...
replicaCount: 3
image:
repository: localhost:5000/my-project-helm
tag: latest
pullPolicy: IfNotPresent
...
service:
type: ClusterIP
port: 80
ingress:
enabled: true
annotations: {
kubernetes.io/ingress.class: nginx
}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
hosts:
- host: chart-example.local
paths: [/]
...
Я устанавливаю этот шлем helm upgrade --install my-project-helm ./my-project-helm
Я устанавливаю nginx helm upgrade --install nginx-ingress stable/nginx-ingress
Я проверю свой вход с помощью kubectl describe ingress my-project-helm
Name: my-project-helm
Namespace: default
Address:
Default backend: default-http-backend:80 (<none>)
Rules:
Host Path Backends
---- ---- --------
chart-example.local / my-project-helm:80 (10.1.0.71:80,10.1.0.72:80,10.1.0.73:80)
Annotations:
kubernetes.io/ingress.class: nginx
Events:
Type Reason Age From Message
---- ------ ---- ---- -------
Normal CREATE 14m nginx-ingress-controller Ingress default/my-project-helm
Normal UPDATE 13m nginx-ingress-controller Ingress default/my-project-helm
Все кажется таким чудесным.
Я делаю curl chart-example.local
ничего не происходит curl: (6) Could not resolve host: chart-example.local
У кого-нибудь есть подсказка?