Kubernetes --- Service (SVC) service --ingress api

For k8s traditional svc is that it only supports 4-layer proxy, if you encounter seven-layer proxy, then there is no way to achieve
k8s official launch ingress api interfaces in 1.11, the ingress of the agent to achieve the effect layer 7
For ingress, it must bind to a domain name, because it is based on the 7 layer agent
 
Profile Information 
Ingress Nginx GitHub 地址: httos: //github.com/kubernetes/ingress-nginx 
Ingress-Nginx official website: https: /kubernetes.github.io/ingress-nginx/
 
Access flow chart
  Essentially creates a Node pod of Nginx, but this need not handwritten Nginx configuration file but by way of automatically generated implementation

⒈ deployment Ingress-Nginx

  1. Download the resource file

# Resources file
 wget HTTPS: // raw.githubusercontent.com/kubernetes/ingress-nginx/master/deploy/static/mandatory.yaml

  

Guess you like

Origin www.cnblogs.com/fanqisoft/p/11609172.html