我在此链接https://kubernetes.io/blog/2019/07/23/get-started-with-kubernetes-using-python/之后创建了python应用。我想配置AWS ALB Ingress Controller/nginx controller
和ingress resource
,但无法理解该文件。我没有在ec2-instance上使用Kops的域,想要在没有任何域的情况下配置它。任何帮助将不胜感激。
部署:
apiVersion: apps/v1
kind: Deployment
metadata:
name: hello-python
spec:
selector:
matchLabels:
app: hello-python
template:
metadata:
labels:
app: hello-python
spec:
containers:
- name: hello-python
image: hello-python:latest
ports:
- containerPort: 5000
服务
apiVersion: v1
kind: Service
metadata:
name: hello-python-service
spec:
selector:
app: hello-python
type: NodePort
ports:
- nodePort: 30010
port: 6000
targetPort: 5000
答案 0 :(得分:2)
Ingress通过nginx Ingress控制器将上述hello-python-service
之类的服务绑定到ALB。
通过将虚拟主机映射到您的服务来做到这一点,以便nginx知道如何路由请求。
示例:
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: python-ingress
namespace: default
annotations:
kubernetes.io/ingress.class: ingress-controller-nginx
nginx.ingress.kubernetes.io/default-backend: hello-python-service
nginx.ingress.kubernetes.io/rewrite-target: /$1
spec:
rules:
- host: python.trash.net
http:
paths:
- path: /?(.*)
backend:
serviceName: hello-python-service
servicePort: 6000
将生成类似于以下内容的类Ingress
的资源:
python-ingress python.trash.net internal-0358a08f01385b2812-331143124.us-east-2.elb.amazonaws.com 80 10s
发出这样的curl请求:
curl -H "Host: python.trash.net" http://internal-0358a08f01385b2812-331143124.us-east-2.elb.amazonaws.com
应该从您好python应用中获得响应。
这显然取决于您是否在EKS集群中部署和配置了nginx入口控制器。
入口的主要要点是:它取代了对LoadBalancer类型的专用服务的需求,以提供对服务的外部访问。相反,Ingress通过在Ingress清单文件中配置的虚拟主机将流量从群集外部映射到群集中的服务。