K10 - Kubernetes in Tamil - ClusterIP Service

preview_player
Показать описание
K10 - Kubernetes in Tamil - ClusterIP Service

What is a Service?

Why is it needed ?

What is Multi-Port ?

What is Headless Service ?
Рекомендации по теме
Комментарии
Автор

Excellent. Always happy to learn concepts in native language 🙂

tamilselvanmarimuthu
Автор

Very nice great one thank you very much

balanepalaiyathane
Автор

ClusterIP பற்றி மிக அருமையான விளக்கம்.

computersindia
Автор

Extremely useful, please keep posting more videos. Way you explains is out of the world, and Do not stop as the view count is less. Again this helped me to understand the K8’s to the core.

karthikpalanivelu
Автор

Indeed, very good explanation sir, you put in a lot of effort for graphics for easy understanding. Awesome job. Please upload more videos like this

tamiltechwitharun
Автор

Expecting more such videos .great wo👏👏👏

kiruthikasoft
Автор

Keep posting more videos!!very helpful

kiruthikasoft
Автор

Thanks Sir for sharing the knowledge. I have one doubt what happens when service get killed and restarted? will it get same IP address or ephimeral IP address ?

balajiveerasingam
Автор

Hi, what is stateless containers? Stateless microservice?

shahul.hameed.m
Автор

Hi Sir, 1 dbt...
can we access this clusterip service with the service name like curl ngnix-svc:32767 ? could your please confirm.

gangaayyan
Автор

nginx-deployment.yaml (Useful for copy and paste)

apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx-deployment
spec:
replicas: 2
selector:
matchLabels:
app: nginx
template:
metadata:
labels:
app: nginx
spec:
containers:
- image: nginx
name: nginx-ctr

nginx-svc.yaml

apiVersion: v1
kind: Service
metadata:
name: nginx-svc
spec:
selector:
app: nginx
ports:
- name: nginx-port
protocol: TCP
port: 32767
targetPort: 80

computersindia