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

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

input logo icon
目录
|

目录

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
视频标签
|

视频标签

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
您已经有安装的 UDL Helper 您可以一键下载 视频!
已安装了
Google Chrome

说明:

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

准备下载方式

popular icon
流行的
hd icon
HD 视频
audio icon
只有音频
total icon
所有格式
* —— 如果视频在一个新的标签页中播放,请转到该标签页,然后右键点击视频,选择 "将视频保存为..."
** —— 该链接是在专门的播放器中在线播放

关于下载视频的问题

mobile menu icon如何下载 "Kubernetes Tutorial for Beginners [FULL COURSE in 4 Hours]" 视频?mobile menu icon

  • http://unidownloader.com 网站是单独下载视频或音轨的最佳方式。如果您想避免安装程序和扩展。

  • UDL Helper 扩展是一个方便的按钮,嵌入YouTube、Instagram和OK.ru网站,用于快速下载内容。

  • UDL Client(适用于 Windows)支持900多个网站、社交网络和视频托管网站的最强大解决方案。包括源中可用的任何视频质量。

  • UDL Lite–从移动设备访问网站的便捷方式。借助此功能,您可以将视频直接下载到智能手机上。

mobile menu icon我应该选择哪种视频格式?mobile menu icon

  • 最佳质量格式为全高清(1080p)、2K(1440p)、4K(2160p)和8K(4320p)。屏幕分辨率越高,视频质量也越高。然而,还有其他因素需要考虑:下载速度、可用空间和设备性能。

mobile menu icon为什么下载 "Kubernetes Tutorial for Beginners [FULL COURSE in 4 Hours]" 视频时我的电脑冻结?mobile menu icon

  • 浏览器/电脑不应完全冻结!如果发生这种情况,请通过视频链接进行报告。有时视频无法以合适的格式直接下载,因此我们增加了将文件转换为所需格式的功能。在某些情况下,此过程可能会主动使用计算机资源。

mobile menu icon如何将 "Kubernetes Tutorial for Beginners [FULL COURSE in 4 Hours]" 视频下载到手机?mobile menu icon

  • 您可以使用网站或pwa应用程序 UDL Lite 将视频下载到智能手机上。也可以使用 UDL Helper 扩展通过二维码发送下载链接。

mobile menu icon如何将音轨(音乐)下载到MP3 "Kubernetes Tutorial for Beginners [FULL COURSE in 4 Hours]"?mobile menu icon

  • 最方便的方法是使用UDL Client 程序,该程序支持将视频转换为MP3格式。在某些情况下,MP3 也可以通过 UDL Helper 扩展下载。

mobile menu icon如何保存视频中的帧 "Kubernetes Tutorial for Beginners [FULL COURSE in 4 Hours]"?mobile menu icon

  • 此功能在 UDL Helper 扩展中可用。确保在设置中选中“显示视频快照按钮”。相机图标应出现在播放器的右下角“设置”图标的左侧。单击它时,视频中的当前帧将以 JPEG 格式保存到您的计算机中。

mobile menu icon这些东西的价格是多少?mobile menu icon

  • 完全不要花钱。我们的服务对所有用户都是绝对免费的。没有PRO订阅,下载视频的数量或最大长度没有限制。