Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 871 Bytes

known-limitations.md

File metadata and controls

21 lines (14 loc) · 871 Bytes

Known Limitations

## hostPort doesn't work

This is a known issue with Kubernetes while using CNI with no available workaround for kube-aws. hostPort does not work if hostNetwork: false.

If you want to deploy an Ingress controller such as nginx-ingress-controller which requires hostPort, just set hostNetwork: true:

spec:
   hostNetwork: true
   containers:
   - image: gcr.io/google_containers/nginx-ingress-controller:0.8.3
     name: nginx-ingress-lb

Relevant kube-aws issue: does hostPort not work on kube-aws/CoreOS?

See the related upstream issue for more information.

This limitation is also documented in the official Kubernetes doc.