Nginx Ingress 在具有工作服务的 microk8s 上提供 404
Nginx Ingress gives 404 on microk8s with working service
运行 Ubuntu 20.04.4 LTS 上的 microk8s v1.23.3。我已经设置了一个最小的 pod+service:
kubectl create deployment whoami --image=containous/whoami --namespace=default
这按预期工作,curl 10.1.76.4:80
给出了 whoami
的正确回复。
我配置了一个服务,见service-whoami.yaml
:
的内容
apiVersion: v1
kind: Service
metadata:
name: whoami
namespace: default
spec:
selector:
app: whoami
ports:
- protocol: TCP
port: 80
targetPort: 80
这也按预期工作,可以通过 curl 10.152.183.220:80
上的 clusterIP 访问 pod。
现在我想使用 ingress-whoami.yaml
:
公开服务
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: whoami-ingress
namespace: default
annotations:
nginx.ingress.kubernetes.io/rewrite-target: /
spec:
defaultBackend:
service:
name: whoami
port:
number: 80
rules:
- http:
paths:
- path: /whoami
pathType: Prefix
backend:
service:
name: whoami
port:
number: 80
入口插件已启用。
microk8s is running
high-availability: no
datastore master nodes: 127.0.0.1:19001
datastore standby nodes: none
addons:
enabled:
ha-cluster # Configure high availability on the current node
ingress # Ingress controller for external access
ingress 似乎指向正确的 pod 和端口。 kubectl describe ingress
给出
Name: whoami-ingress
Labels: <none>
Namespace: default
Address:
Default backend: whoami:80 (10.1.76.12:80)
Rules:
Host Path Backends
---- ---- --------
*
/whoami whoami:80 (10.1.76.12:80)
Annotations: <none>
Events: <none>
尝试使用 curl 127.0.0.1/whoami
从外部到达 pod 会得到 404
:
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx</center>
</body>
</html>
我哪里错了?此设置在几周前有效。
好的,明白了。
我忘记在 annotations-block 中指定 ingress.class
。
我更新了 ingress-whoami.yaml
:
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: whoami-ingress
namespace: default
annotations:
kubernetes.io/ingress.class: public
nginx.ingress.kubernetes.io/rewrite-target: /
spec:
rules:
- http:
paths:
- path: /whoami
pathType: Prefix
backend:
service:
name: whoami
port:
number: 80
现在一切正常。
运行 Ubuntu 20.04.4 LTS 上的 microk8s v1.23.3。我已经设置了一个最小的 pod+service:
kubectl create deployment whoami --image=containous/whoami --namespace=default
这按预期工作,curl 10.1.76.4:80
给出了 whoami
的正确回复。
我配置了一个服务,见service-whoami.yaml
:
apiVersion: v1
kind: Service
metadata:
name: whoami
namespace: default
spec:
selector:
app: whoami
ports:
- protocol: TCP
port: 80
targetPort: 80
这也按预期工作,可以通过 curl 10.152.183.220:80
上的 clusterIP 访问 pod。
现在我想使用 ingress-whoami.yaml
:
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: whoami-ingress
namespace: default
annotations:
nginx.ingress.kubernetes.io/rewrite-target: /
spec:
defaultBackend:
service:
name: whoami
port:
number: 80
rules:
- http:
paths:
- path: /whoami
pathType: Prefix
backend:
service:
name: whoami
port:
number: 80
入口插件已启用。
microk8s is running
high-availability: no
datastore master nodes: 127.0.0.1:19001
datastore standby nodes: none
addons:
enabled:
ha-cluster # Configure high availability on the current node
ingress # Ingress controller for external access
ingress 似乎指向正确的 pod 和端口。 kubectl describe ingress
给出
Name: whoami-ingress
Labels: <none>
Namespace: default
Address:
Default backend: whoami:80 (10.1.76.12:80)
Rules:
Host Path Backends
---- ---- --------
*
/whoami whoami:80 (10.1.76.12:80)
Annotations: <none>
Events: <none>
尝试使用 curl 127.0.0.1/whoami
从外部到达 pod 会得到 404
:
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx</center>
</body>
</html>
我哪里错了?此设置在几周前有效。
好的,明白了。
我忘记在 annotations-block 中指定 ingress.class
。
我更新了 ingress-whoami.yaml
:
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: whoami-ingress
namespace: default
annotations:
kubernetes.io/ingress.class: public
nginx.ingress.kubernetes.io/rewrite-target: /
spec:
rules:
- http:
paths:
- path: /whoami
pathType: Prefix
backend:
service:
name: whoami
port:
number: 80
现在一切正常。