Report this

What is the reason for this report?

How to expose k8s service to port 80 without a LoadBalancer

Posted on September 16, 2020

I have a basic kubernetes cluster with only one node and I want to add a domain to it. But for now I can only use the NodePort to expose the service. Is there a way to expose the service to port 80 without paying for additional LoadBalancer?



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

You can configure an ingress for the same. However, you will need a domain pointed to your k8s cluster or etchosts entry for cluster ips.

Yes, your option here would be to set you container as privileged and give it access to hostNetwork and use hostPort. I would not recommend this for any production workload as it relies on privileged containers and is advised against in the Kubernetes best practices.

I have provided a working example below:

apiVersion: apps/v1
kind: Deployment
metadata:
  labels:
    app: hostport
  name: hostport
spec:
  replicas: 1
  selector:
    matchLabels:
      app: hostport
  template:
    metadata:
      labels:
        app: hostport
    spec:
      containers:
      - image: nginx:latest
        name: nginx
        securityContext:
          privileged: true
        ports:
          - name: http
            containerPort: 80
            hostPort: 80
      hostNetwork: true

You should then be able to access this deployment using:

curl <NODE_IP>:80

Note that because this is using the actual port of the host only the NODE_IP of a node running this pod will respond, unlike a nodeport service where traffic will be forwarded.

Hope this helps!

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.