background top icon
background center wave icon
background filled rhombus icon
background two lines icon
background stroke rhombus icon

Baixar "Kubernetes Tutorial for Beginners [FULL COURSE in 4 Hours]"

input logo icon
Tabela de conteúdo
|

Tabela de conteúdo

0:00
Course Overview
2:18
What is K8s
5:20
Main K8s Components
22:29
K8s Architecture
34:47
Minikube and kubectl - Local Setup
44:52
Main Kubectl Commands - K8s CLI
1:02:03
K8s YAML Configuration File
1:16:16
Demo Project: MongoDB and MongoExpress
1:46:16
Organizing your components with K8s Namespaces
2:01:52
K8s Ingress explained
2:24:17
Helm - Package Manager
2:38:07
Persisting Data in K8s with Volumes
2:58:38
Deploying Stateful Apps with StatefulSet
3:13:43
K8s Services explained
Etiquetas de vídeo
|

Etiquetas de vídeo

kubernetes
kubernetes tutorial
learn kubernetes
kubernetes tutorial for beginners
kubernetes course
kubernetes crash course
kubernetes ingress
kubernetes networking
kubernetes complete tutorial
kubernetes full course
kubernetes full tutorial
kubernetes helm
kubernetes services
kubernetes volumes
kubernetes pods
kubernetes for beginners
kubernetes deployment
what is kubernetes
techworld with nana
kubernetes architecture
freecodecamp
kodekloud
k8s
devops
techworldwithnana
Já tem instalado o UDL Helper Você pode baixar vídeo em um clique!
Instalado
para
Google Chrome

Descrição:

Full Kubernetes Tutorial | Kubernetes Course | Hands-on course with a lot of demos 💙 Become a Kubernetes Administrator - CKA: https://www.techworld-with-nana.com/kubernetes-administrator-cka 💚 Become a DevOps Engineer - full educational program: https://www.techworld-with-nana.com/devops-bootcamp 💜 Become a DevOps expert and 10x your value: https://www.techworld-with-nana.com/devsecops-bootcamp 🧡 Udemy courses: https://www.techworld-with-nana.com/courses Connect with me 👋 INSTAGRAM ► https://www.facebook.com/unsupportedbrowser LINKEDIN ► https://www.linkedin.com/in/nana-janashia/ ▬▬▬▬▬▬ T I M E S T A M P S ⏰ ▬▬▬▬▬▬ 0:00 - Course Overview 2:18 - What is K8s 5:20 - Main K8s Components 22:29 - K8s Architecture 34:47 - Minikube and kubectl - Local Setup 44:52 - Main Kubectl Commands - K8s CLI 1:02:03 - K8s YAML Configuration File 1:16:16 - Demo Project: MongoDB and MongoExpress 1:46:16 - Organizing your components with K8s Namespaces 2:01:52 - K8s Ingress explained 2:24:17 - Helm - Package Manager 2:38:07 - Persisting Data in K8s with Volumes 2:58:38 - Deploying Stateful Apps with StatefulSet 3:13:43 - K8s Services explained ▬▬▬▬▬▬ COURSE OVERVIEW 📚 ▬▬▬▬▬▬ 🔥 What is Kubernetes 🔥 ► What problems does Kubernetes solve? ► What features do container orchestration tools offer? 🔥 Main K8s Components 🔥 ► Node & Pod ► Service & Ingress ► ConfigMap & Secret ► Volumes ► Deployment & StatefulSet 🔥 K8s Architecture 🔥 ► Worker Nodes ► Master Nodes ► Api Server ► Scheduler ► Controller Manager ► etcd - the cluster brain 🔥 Minikube and kubectl - Local Setup 🔥 ► What is minikube? ► What is kubectl? ► install minikube and kubectl ► create and start a minikube cluster 🔗 Links: - Install Minikube (Mac, Linux and Windows): https://minikube.sigs.k8s.io/docs/start/ - Install Kubectl: https://kubernetes.io/docs/tasks/tools/ - Gitlab: If you are using Mac, you can follow along the commands. I listed them all here: https://gitlab.com/nanuchi/youtube-tutorial-series/-/blob/master/basic-kubectl-commands/cli-commands.md 🔥 Main Kubectl Commands - K8s CLI 🔥 ► Get status of different components ► create a pod/deployment ► layers of abstraction ► change the pod/deployment ► debugging pods ► delete pod/deployment ► CRUD by applying configuration file 🔗 - Git repo link of all the commands: https://gitlab.com/nanuchi/youtube-tutorial-series/-/blob/master/basic-kubectl-commands/cli-commands.md 🔥 K8s YAML Configuration File 🔥 ► 3 parts of a Kubernetes config file (metadata, specification, status) ► format of configuration file ► blueprint for pods (template) ► connecting services to deployments and pods (label & selector & port) ► demo 🔗 - Git repo link: https://gitlab.com/nanuchi/youtube-tutorial-series/-/tree/master/kubernetes-configuration-file-explained 🔥 Demo Project 🔥 ► Deploying MongoDB and Mongo Express ► MongoDB Pod ► Secret ► MongoDB Internal Service ► Deployment Service and Config Map ► Mongo Express External Service 🔗 - Git repo link: https://gitlab.com/nanuchi/youtube-tutorial-series/-/tree/master/demo-kubernetes-components 🔥 Organizing your components with K8s Namespaces 🔥 ► What is a Namespace? ► 4 Default Namespaces ► Create a Namespace ► Why to use Namespaces? 4 Use Cases ► Characteristics of Namespaces ► Create Components in Namespaces ► Change Active Namespace 🔗 - Install Kubectx: https://github.com/ahmetb/kubectx#installation 🔥 K8s Ingress explained 🔥 ► What is Ingress? External Service vs. Ingress ► Example YAML Config Files for External Service and Ingress ► Internal Service Configuration for Ingress ► How to configure Ingress in your cluster? ► What is Ingress Controller? ► Environment on which your cluster is running (Cloud provider or bare metal) ► Demo: Configure Ingress in Minikube ► Ingress Default Backend ► Routing Use Cases ► Configuring TLS Certificate 🔗 Links: - Git Repo: https://gitlab.com/nanuchi/youtube-tutorial-series/-/blob/master/kubernetes-ingress/dashboard-ingress.yaml - Ingress Controllers: https://kubernetes.io/docs/concepts/services-networking/ingress-controllers/ - Ingress Controller Bare Metal: https://kubernetes.github.io/ingress-nginx/deploy/baremetal/ 🔥 Helm - Package Manager 🔥 ► Package Manager and Helm Charts ► Templating Engine ► Use Cases for Helm ► Helm Chart Structure ► Values injection into template files ► Release Management / Tiller (Helm Version 2!) 🔗 Links: - Helm hub: https://artifacthub.io/ - Helm charts GitHub Project: https://github.com/helm/charts - Install Helm: https://helm.sh/docs/intro/install/ 🔥 Persisting Data in K8s with Volumes 🔥 ► The need for persistent storage & storage requirements ► Persistent Volume (PV) ► Local vs Remote Volume Types ► Who creates the PV and when? ► Persistent Volume Claim (PVC) ► Levels of volume abstractions ► ConfigMap and Secret as volume types ► Storage Class (SC) 🔗 - Git Repo: https://gitlab.com/nanuchi/youtube-tutorial-series/-/tree/master/kubernetes-volumes 🔥 Deploying Stateful Apps with StatefulSet 🔥 ► What is StatefulSet? Difference of stateless and stateful applications ► Deployment of stateful and stateless apps ► Deployment vs StatefulSet ► Pod Identity ► Scaling database applications: Master and Worker Pods ► Pod state, Pod Identifier ► 2 Pod endpoints 🔥 K8s Services 🔥 ► What is a Service in K8s and when we need it? ► ClusterIP Services ► Service Communication ► Multi-Port Services ► Headless Services ► NodePort Services ► LoadBalancer Services

Preparando opções de download

popular icon
Populares
hd icon
Vídeo HD
audio icon
Apenas som
total icon
Todos os formatos
* — Se o vídeo estiver sendo reproduzido em uma nova aba, vá até ele, então clique com o botão direito no vídeo e escolha "Salvar vídeo como..."
** — Este link é destinado à reprodução online em players dedicados

Perguntas sobre o download de vídeos

mobile menu iconComo posso baixar o vídeo "Kubernetes Tutorial for Beginners [FULL COURSE in 4 Hours]"?mobile menu icon

  • O site http://unidownloader.com é a melhor maneira de baixar um vídeo ou uma faixa de áudio separada se você quiser fazer isso sem instalar programas e extensões.

  • A extensão UDL Helper é um botão conveniente que é perfeitamente integrado aos sites do YouTube, Instagram e OK.ru para download rápido de conteúdo.

  • O programa UDL Client (para Windows) é a solução mais poderosa que oferece suporte a mais de 900 sites, redes sociais e sites de hospedagem de vídeo, bem como a qualquer qualidade de vídeo disponível na fonte.

  • O UDL Lite é uma maneira realmente conveniente de acessar um site a partir do seu dispositivo móvel. Com sua ajuda, você pode facilmente baixar vídeos diretamente para seu smartphone.

mobile menu iconQual formato de vídeo "Kubernetes Tutorial for Beginners [FULL COURSE in 4 Hours]" devo escolher?mobile menu icon

  • Os formatos de melhor qualidade são FullHD (1080p), 2K (1440p), 4K (2160p) e 8K (4320p). Quanto maior for a resolução da sua tela, maior deverá ser a qualidade do vídeo. No entanto, há outros fatores a serem considerados: velocidade de download, quantidade de espaço livre e desempenho do dispositivo durante a reprodução.

mobile menu iconPor que meu computador trava ao carregar um vídeo "Kubernetes Tutorial for Beginners [FULL COURSE in 4 Hours]"?mobile menu icon

  • O navegador/computador não deve congelar completamente! Se isso acontecer, informe o fato com um link para o vídeo. Às vezes, os vídeos não podem ser baixados diretamente em um formato adequado, por isso adicionamos a capacidade de converter o arquivo para o formato desejado. Em alguns casos, esse processo pode usar ativamente os recursos do computador.

mobile menu iconComo posso baixar o vídeo "Kubernetes Tutorial for Beginners [FULL COURSE in 4 Hours]" para o meu celular?mobile menu icon

  • Você pode baixar um vídeo para seu smartphone usando o site ou o aplicativo PWA UDL Lite. Também é possível enviar um link de download via código QR usando a extensão UDL Helper.

mobile menu iconComo posso fazer download de uma faixa de áudio (música) para MP3 "Kubernetes Tutorial for Beginners [FULL COURSE in 4 Hours]"?mobile menu icon

  • A maneira mais conveniente é usar o programa UDL Client, que suporta a conversão de vídeo para o formato MP3. Em alguns casos, o download de MP3 também pode ser feito por meio da extensão UDL Helper.

mobile menu iconComo posso salvar um quadro de um vídeo "Kubernetes Tutorial for Beginners [FULL COURSE in 4 Hours]"?mobile menu icon

  • Esse recurso está disponível na extensão UDL Helper. Certifique-se de que a opção "Show the video snapshot button" esteja marcada nas configurações. Um ícone de câmera deve aparecer no canto inferior direito do player, à esquerda do ícone "Settings" (Configurações). Quando você clicar nele, o quadro atual do vídeo será salvo em seu computador no formato JPEG.

mobile menu iconQual é o preço de todo esse material?mobile menu icon

  • Não custa nada. Nossos serviços são totalmente gratuitos para todos os usuários. Não há assinaturas PRO, nem restrições quanto ao número ou à duração máxima dos vídeos baixados.