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!
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!
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.