Logo video2dn
  • Сохранить видео с ютуба
  • Категории
    • Музыка
    • Кино и Анимация
    • Автомобили
    • Животные
    • Спорт
    • Путешествия
    • Игры
    • Люди и Блоги
    • Юмор
    • Развлечения
    • Новости и Политика
    • Howto и Стиль
    • Diy своими руками
    • Образование
    • Наука и Технологии
    • Некоммерческие Организации
  • О сайте

Скачать или смотреть CKAD Lab 64 Part 8 of 8 (Kubernetes Certification) deployment mount configmap & emptyDir and MORE

  • Mamun Rashid
  • 2022-12-11
  • 55
CKAD Lab 64 Part 8 of 8 (Kubernetes Certification) deployment mount configmap & emptyDir and MORE
  • ok logo

Скачать CKAD Lab 64 Part 8 of 8 (Kubernetes Certification) deployment mount configmap & emptyDir and MORE бесплатно в качестве 4к (2к / 1080p)

У нас вы можете скачать бесплатно CKAD Lab 64 Part 8 of 8 (Kubernetes Certification) deployment mount configmap & emptyDir and MORE или посмотреть видео с ютуба в максимальном доступном качестве.

Для скачивания выберите вариант из формы ниже:

  • Информация по загрузке:

Cкачать музыку CKAD Lab 64 Part 8 of 8 (Kubernetes Certification) deployment mount configmap & emptyDir and MORE бесплатно в формате MP3:

Если иконки загрузки не отобразились, ПОЖАЛУЙСТА, НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если у вас возникли трудности с загрузкой, пожалуйста, свяжитесь с нами по контактам, указанным в нижней части страницы.
Спасибо за использование сервиса video2dn.com

Описание к видео CKAD Lab 64 Part 8 of 8 (Kubernetes Certification) deployment mount configmap & emptyDir and MORE

Requirements:

Create a cm called cm1 values FOO=bar

Create a deployment called foo-redis with the following parameters:
Name of the deployment should be redis using the redis:alpine image. It should have exactly 3 replicas
The container should request for .3 CPU.
The container should use the label app=foo
The container should expose the port 6379
Make sure that the pod is scheduled on the FIRST NODE
It should mount exactly 2 volumes:
An Empty directory volume called data at path /foo-data
A configmap volume called cm1 at path /foo-cm

SOLUTION:
apiVersion: apps/v1
kind: Deployment
metadata:
name: foo-redis
labels:
app: foo
spec:
replicas: 3
selector:
matchLabels:
app: foo
template:
metadata:
labels:
app: foo
spec:
affinity:
nodeAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
matchExpressions:
key: foo
operator: In
values: ["bar"]
volumes:
name: data
emptyDir:
sizeLimit: 500Mi
name: cm1
configMap:
name: cm1
items:
key: "cm1"
path: "foo-cm"
containers:
name: foo-conatiner
image: redis:alpine
resources:
requests:
cpu: "0.3"
ports:
containerPort: 6379
volumeMounts:
mountPath: /foo-data
name: data
mountPath: /foo-cm
name: cm1

Комментарии

Информация по комментариям в разработке

Похожие видео

  • О нас
  • Контакты
  • Отказ от ответственности - Disclaimer
  • Условия использования сайта - TOS
  • Политика конфиденциальности

video2dn Copyright © 2023 - 2025

Контакты для правообладателей [email protected]