CentOS Stream 10
Sponsored Link

Kubernetes : Deploy Pods2025/01/23

 

This is the basic operation to create pods and others on Kubernetes Cluster.

In this example, a Kubernetes cluster is configured using four nodes as follows.

+----------------------+   +----------------------+
|  [ ctrl.srv.world ]  |   |   [ dlp.srv.world ]  |
|     Manager Node     |   |     Control Plane    |
+-----------+----------+   +-----------+----------+
        eth0|10.0.0.25             eth0|10.0.0.30
            |                          |
------------+--------------------------+-----------
            |                          |
        eth0|10.0.0.51             eth0|10.0.0.52
+-----------+----------+   +-----------+----------+
| [ node01.srv.world ] |   | [ node02.srv.world ] |
|     Worker Node#1    |   |     Worker Node#2    |
+----------------------+   +----------------------+

 

Work on Manager Node or Client Hosts you did setup cluster admin file.

[1] Create or Delete Pods.
# run [test-nginx] pods

[cent@ctrl ~]$
kubectl create deployment test-nginx --image=nginx

deployment.apps/test-nginx created
[cent@ctrl ~]$
kubectl get pods

NAME                          READY   STATUS    RESTARTS   AGE
test-nginx-5fd56bf67b-pzkks   1/1     Running   0          7s

# show environment variable for [test-nginx] pod

[cent@ctrl ~]$
kubectl exec test-nginx-5fd56bf67b-pzkks -- env

PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
TERM=xterm
HOSTNAME=test-nginx-5fd56bf67b-pzkks
KUBERNETES_SERVICE_PORT_HTTPS=443
KUBERNETES_PORT=tcp://10.96.0.1:443
KUBERNETES_PORT_443_TCP=tcp://10.96.0.1:443
KUBERNETES_PORT_443_TCP_PROTO=tcp
KUBERNETES_PORT_443_TCP_PORT=443
KUBERNETES_PORT_443_TCP_ADDR=10.96.0.1
KUBERNETES_SERVICE_HOST=10.96.0.1
KUBERNETES_SERVICE_PORT=443
NGINX_VERSION=1.27.3
NJS_VERSION=0.8.7
NJS_RELEASE=1~bookworm
PKG_RELEASE=1~bookworm
DYNPKG_RELEASE=1~bookworm
HOME=/root

# shell access to [test-nginx] pod

[cent@ctrl ~]$
kubectl exec -it test-nginx-5fd56bf67b-pzkks -- bash

root@test-nginx-5fd56bf67b-pzkks:/#
exit

exit
# show logs of [test-nginx] pod

[cent@ctrl ~]$
kubectl logs test-nginx-5fd56bf67b-pzkks

/docker-entrypoint.sh: /docker-entrypoint.d/ is not empty, will attempt to perform configuration
/docker-entrypoint.sh: Looking for shell scripts in /docker-entrypoint.d/
/docker-entrypoint.sh: Launching /docker-entrypoint.d/10-listen-on-ipv6-by-default.sh
10-listen-on-ipv6-by-default.sh: info: Getting the checksum of /etc/nginx/conf.d/default.conf
10-listen-on-ipv6-by-default.sh: info: Enabled listen on IPv6 in /etc/nginx/conf.d/default.conf
/docker-entrypoint.sh: Sourcing /docker-entrypoint.d/15-local-resolvers.envsh
/docker-entrypoint.sh: Launching /docker-entrypoint.d/20-envsubst-on-templates.sh
/docker-entrypoint.sh: Launching /docker-entrypoint.d/30-tune-worker-processes.sh
/docker-entrypoint.sh: Configuration complete; ready for start up
2025/01/23 06:39:24 [notice] 1#1: using the "epoll" event method
2025/01/23 06:39:24 [notice] 1#1: nginx/1.27.3
2025/01/23 06:39:24 [notice] 1#1: built by gcc 12.2.0 (Debian 12.2.0-14)
2025/01/23 06:39:24 [notice] 1#1: OS: Linux 6.12.0-39.el10.x86_64
.....
.....

# scale out pods

[cent@ctrl ~]$
kubectl scale deployment test-nginx --replicas=3

deployment.extensions/test-nginx scaled
[cent@ctrl ~]$
kubectl get pods -o wide

NAME                          READY   STATUS    RESTARTS   AGE     IP                NODE               NOMINATED NODE   READINESS GATES
test-nginx-5fd56bf67b-7cdhv   1/1     Running   0          13s     192.168.40.196    node01.srv.world   <none>           <none>
test-nginx-5fd56bf67b-dg6c2   1/1     Running   0          13s     192.168.40.197    node01.srv.world   <none>           <none>
test-nginx-5fd56bf67b-pzkks   1/1     Running   0          2m39s   192.168.241.132   node02.srv.world   <none>           <none>

# set service

[cent@ctrl ~]$
kubectl expose deployment test-nginx --type="NodePort" --port 80

service "test-nginx" exposed
[cent@ctrl ~]$
kubectl get services test-nginx

NAME         TYPE       CLUSTER-IP      EXTERNAL-IP   PORT(S)        AGE
test-nginx   NodePort   10.109.67.221   <none>        80:31895/TCP   5s

# set port-forwarding and verify access

[cent@ctrl ~]$
kubectl port-forward service/test-nginx --address 127.0.0.1 8082:80 &

[1] 2010
[cent@ctrl ~]$
curl localhost:8082

<!DOCTYPE html>
<html>
<head>
<title>Welcome to nginx!</title>
.....
.....
<p><em>Thank you for using nginx.</em></p>
</body>
</html>

# delete service

[cent@ctrl ~]$
kubectl delete services test-nginx

service "test-nginx" deleted
# delete pods

[cent@ctrl ~]$
kubectl delete deployment test-nginx

deployment.extensions "test-nginx" deleted
Matched Content