- Популярные видео
- Авто
- Видео-блоги
- ДТП, аварии
- Для маленьких
- Еда, напитки
- Животные
- Закон и право
- Знаменитости
- Игры
- Искусство
- Комедии
- Красота, мода
- Кулинария, рецепты
- Люди
- Мото
- Музыка
- Мультфильмы
- Наука, технологии
- Новости
- Образование
- Политика
- Праздники
- Приколы
- Природа
- Происшествия
- Путешествия
- Развлечения
- Ржач
- Семья
- Сериалы
- Спорт
- Стиль жизни
- ТВ передачи
- Танцы
- Технологии
- Товары
- Ужасы
- Фильмы
- Шоу-бизнес
- Юмор
Explain Kubernetes In-Place Pods Resizing in short #devops #kubernetes
Did you know you can increase CPU or memory of a running Pod… without restarting it in Kubernetes? 🤯
That’s called In-place Pod Resizing.
In Kubernetes, In-place Pod Resizing lets you update resource requests and limits without recreating the Pod.
That means your application keeps running…
no downtime, no restart.
Earlier, changing CPU or memory meant deleting and recreating the Pod…
but now, resources can be adjusted on the fly.
It’s useful when your app suddenly needs more power…
or when you want to optimize resource usage dynamically.
And yes… this is how it looks in YAML 👇
apiVersion: v1
kind: Pod
metadata:
name: resize-demo
spec:
containers:
- name: app-container
image: nginx
resources:
requests:
cpu: "200m"
memory: "256Mi"
limits:
cpu: "500m"
memory: "512Mi"
Later, you can update these values while the Pod is running.
So now we know that: In-place Pod Resizing lets you change resources of a running Pod without restarting it.
So yeah… scaling doesn’t always mean restarting 😏
.
.
.
.
.
.
.#devops #kubernetes #shorts #youtubeshorts #viral #support #educational
Видео Explain Kubernetes In-Place Pods Resizing in short #devops #kubernetes канала DevOps With Pratik
That’s called In-place Pod Resizing.
In Kubernetes, In-place Pod Resizing lets you update resource requests and limits without recreating the Pod.
That means your application keeps running…
no downtime, no restart.
Earlier, changing CPU or memory meant deleting and recreating the Pod…
but now, resources can be adjusted on the fly.
It’s useful when your app suddenly needs more power…
or when you want to optimize resource usage dynamically.
And yes… this is how it looks in YAML 👇
apiVersion: v1
kind: Pod
metadata:
name: resize-demo
spec:
containers:
- name: app-container
image: nginx
resources:
requests:
cpu: "200m"
memory: "256Mi"
limits:
cpu: "500m"
memory: "512Mi"
Later, you can update these values while the Pod is running.
So now we know that: In-place Pod Resizing lets you change resources of a running Pod without restarting it.
So yeah… scaling doesn’t always mean restarting 😏
.
.
.
.
.
.
.#devops #kubernetes #shorts #youtubeshorts #viral #support #educational
Видео Explain Kubernetes In-Place Pods Resizing in short #devops #kubernetes канала DevOps With Pratik
Комментарии отсутствуют
Информация о видео
21 марта 2026 г. 13:00:12
00:00:44
Другие видео канала




















