Goglides Dev 🌱

Cover image for Creating Kubernetes Pods.
Rahul Gautam
Rahul Gautam

Posted on

Creating Kubernetes Pods.

In this series, we previously had containerized an application. Here, we created a Dockerfile and ran our applicationβ€”also, we published our image to docker hub. Now, we are going to pull our image we created and pushed before and create a pod and run it in our K8s cluster.

Kubernetes Pods

While deploying an application, Kubernetes does not directly deploy containers on the worker nodes. Those containers are first encapsulated into objects known as Pods. Hence, Pods are the smallest object that contains a single instance of an application in Kubernetes.

Note: Single Pods can have multiple containers. But, they usually don't have multiple containers of same kind.

Creating our first pod

Now, let's create our own first pod in this series. Before that, let's check if we have any pods running beforehand.

kubectl get pods
Enter fullscreen mode Exit fullscreen mode

Image description

There is no pods running on default namespace.

Let's get going.

1) We need first to create a YAML file. We would require apiVersion, kind, metadata, and spec to be in the file.

apiVersion: v1
kind: Pod
metadata:
   name: pyapi-pod
spec:
   containers:
   - name: pyapi-pod
     image: gamerited/pythonblog:v2
     ports:
     - containerPort: 8000
Enter fullscreen mode Exit fullscreen mode

here,

  • apiVersion specifies the version of api we use (v1).
  • kind specifies what we are creating here. In this case, we are creating a Pod
  • metadata has our pod's information here. We named our pod pyapi-pod
  • spec declares the state and characteristics of our pod. Here we used an image from our previous blog and specified the port.

2) Now, to create our pod, we use the following command.

kubectl create -f pyapi-pod.yaml 
Enter fullscreen mode Exit fullscreen mode

Image description

3) Now, If you look at your pods, you can see
Image description

Your pod is running.

Describing our first pod

Another feature we have in k8s is we can describe our pods. For this, we use the following command,

kubectl describe pods pyapi-pod
Enter fullscreen mode Exit fullscreen mode

Here, you can see all the information about your pods.

Image description

Now, let's try visiting our python app. we hosted it on 127.0.0.1:8000.

Image description

Oh no! The application is unavailable.

Port-forwarding our first pod

As we did in Docker, we need to forward our port to access it via our main machine. We have multiple ways/services in k8s, but in this case, we will use port-forward.

We are going to use the following command to forward our pod.

kubectl port-forward pyapi-pod 8000:8000
Enter fullscreen mode Exit fullscreen mode

Image description

Here, pyapi-pod is our pod name (the same can be done for deployments, replicasets, and services). It is then followed by the pods we desire to forward.

Now, visit your URL, http://127.0.0.1:8000/ in our case,

Image description

Your application is now perfectly running via pod. Now, we can create Kubernetes Pods.

Top comments (0)