Find the Best Cosmetic Hospitals

Explore trusted cosmetic hospitals and make a confident choice for your transformation.

“Invest in yourself — your confidence is always worth it.”

Explore Cosmetic Hospitals

Start your journey today — compare options in one place.

Minikube Exposing Kubernetes workload from EC2 Instance.

Part 1 – Step by step guide on MINIKUBE installation on EC2 instance can be found here,

Folks in this tutorial we will try to learn how to expose a running pod from the kubernetes cluster on Ec2 instance to outside world.

Lets get started, we are continuing where we stopped in the first article.

Step 1. Check the status of your minikube vm.

minikube status

Step 2. Lets start a node app from the official documentation of k8’s.

kubectl create deployment hello-node --image=gcr.io/hello-minikube-zero-install/hello-node

This will start, a node app which on hitting port 8080, will say – Hello worlds!!.

Index file for this :

var http = require('http');

var handleRequest = function(request, response) {
  console.log('Received request for URL: ' + request.url);
  response.writeHead(200);
  response.end('Hello World!');
};
var www = http.createServer(handleRequest);
www.listen(8080);Code language: JavaScript (javascript)

Dockerfile:

FROM node:6.14.2
EXPOSE 8080
COPY server.js .
CMD [ "node", "server.js" ] // you can type index.js file or rename above file as server.js both will workoutCode language: JavaScript (javascript)

Step 3. List out the running deployments, kubectl get deployments

Step 4. Now we should expose this service to outside internet, but before that we should expose this to host level as well.

kubectl expose deployment hello-node --type=LoadBalancer --port=8080

Step 5. So we can see that hello node is exposed on port number, 31170 of host machine which is being tunnelled to 8080 of the running pod.

try doing curl on localhost:31170 you will greeted properly!! 🙂

Step 6. Now lets goto EC2 console, open the SG for the instance and white list port 31170.

Hit save and goto : <ec2-public-ip>:31170 link

Voila !!! You have successfully expose a service from Kubernetes cluster to out side world, give yourself a pat on the back. Keep reading 🙂

Gaurav Bajpai

Note: We are running classroom batches on all of the DevOps toolset, feel free to enquire about them ! locations covered Delhi, Hyderabad, Bangalore and Chennai.

Find Trusted Cardiac Hospitals

Compare heart hospitals by city and services — all in one place.

Explore Hospitals
MotoShare.in offers unparalleled convenience and affordability in bike rentals, allowing users to enjoy hassle-free rides for commuting, exploring, or leisure trips. With a wide range of bikes and scooters, it’s your trusted partner for all two-wheeler needs.

Related Posts

Kubernetes Job & CronJob Explained: API Resource, YAML Example, and Use Cases

Kubernetes Jobs and CronJobs Explained with Examples: Complete Hands-on Guide for DevOps Engineer Keywords 1. Introduction In Kubernetes, not every workload is a long-running application like a…

Read More

Kubernetes Secret Explained: Secret API Resource, YAML Example, and Use Cases

What is Kubernetes SecretsA Secret is an object that contains a small amount of sensitive data such as a password, a token, or a key. Objects of…

Read More

Kubernetes ConfigMap Explained: API Resource, YAML Example, and Use Cases

Content of reverseproxy.conf Commands to execute to create configmap Example pod using configmap Validating configmap inside a pod Rajesh Kumar I’m a DevOps/SRE/DevSecOps/Cloud Expert passionate about sharing…

Read More

Kubernetes Service Explained: API Resource, YAML Example, and Use Cases

In Kubernetes, a Service is an abstraction that defines a logical set of pods and a policy by which to access them. It provides a stable network…

Read More

Kubernetes Deployment Explained: API Resource, YAML Example, and Use Cases

Fearture of Kubernetes Deployment Note:ReplicaSets = Replication+Controller in the Deployment Kubernetes Deployement Strategy Type of deployment .spec.strategy specifies the strategy used to replace old Pods by new…

Read More

Kubernetes ReplicaSet Explained: API Resource, YAML Example, and Use Cases

Rajesh Kumar I’m a DevOps/SRE/DevSecOps/Cloud Expert passionate about sharing knowledge and experiences. I have worked at Cotocus. I share tech blog at DevOps School, travel stories at…

Read More