Google Kubernetes Engine: Basic to Advanced on Google Cloud

所在平台: Udemy

课程主页: https://www.udemy.com/course/google-gke/

课程评论:没有评论

第一个写评论        关注课程

课程简介

课程名称:Google Kubernetes Engine:从基础到高级 概述: 欢迎参加这门关于Google Kubernetes Engine(GKE)的精彩课程,从基础到高级,包含多个实时实验室环节。GKE是最简便且常用的在Google Cloud Platform(GCP)上设置Kubernetes集群的方法。本课程涵盖的作业包括: 1. 使用YAML创建第一个Pod 2. Kubernetes Pod重启策略 3. 在Kubernetes中使用标签和选择器 4. Kubernetes中的扩展与复制 5. Kubernetes中的部署与回滚 6. Pod内容器通过本地主机通信 7. 使用特定端口的容器通信 8. Pod通过IP进行通信 9. Kubernetes服务:ClusterIP 10. Kubernetes服务:NodePort 11. Kubernetes服务:LoadBalancer 12. 创建带有emptyDir卷的Pod 13. 创建带有hostPath卷的Pod 14. 在Kubernetes集群中使用持久卷进行存储 课程大纲: 1. Kubernetes简介 - 什么是Kubernetes及其用途 - 各大云平台的Kubernetes实现 - 容器与微服务的演变 2. Kubernetes集群架构 - Kubernetes集群的构成及各组件 3. 在GCP中设置Kubernetes集群 - 集群基本设置、节点池及网络配置 4. GCP中的Kubernetes概念 - 使用YAML创建Pod及其他基础操作 5. Kubernetes Pod重启策略 - 了解三种重启策略及其应用 6. Kubernetes中的标签与选择器 - 标签管理及选择器应用 7. 扩展与复制 - 理解ReplicationController和ReplicaSet的使用 8. 部署与回滚 - 使用部署对象管理应用版本 9. Kubernetes网络 - Pod间的通信方式 10. Kubernetes服务 - 各种服务类型及其实际应用 11. Kubernetes中的卷 - 了解卷的类型及其使用方法 12. 持久卷 - 创建持久存储类及卷的使用 13. RBAC安全性 - 实现基于角色的访问控制 14. 在Google Cloud上设置Minikube集群 - Minikube的设置与实验 15. SSL/TLS证书的客户端认证 - 证书生成与Kubernetes配置 16. RBAC:角色与角色绑定 - 创建角色及角色绑定的实践 17. 作为用户访问K8s Minikube集群 - 管理Kubernetes上下文及测试权限 18. 为Pod设置网络策略 - 理解Kubernetes网络策略的应用场景 19. 使用网络政策限制Pod通信的实验 20. 安全访问Minikube集群 - SSH身份验证和VM访问 21. Nginx的安全部署与访问 - 设置Nginx对外流量的安全访问 22. 使用TLS证书为K8s中的Nginx实现HTTPS 这门课程涵盖了Kubernetes的多个重要概念和实践,适合希望掌握GKE的学习者。

课程评论(0条)

课程详情

Welcome to this amazing course on Google Kubernetes Engine: Basic to Advanced on Google Cloud, featuring various real-time lab sessions.Google Kubernetes Engine (GKE) is the simplest and most common way to set up a Kubernetes cluster on GCP.Below is the list of assignments covered in this course.1. Assignment: Create the First Pod Using YAML in Kubernetes GKE2. Assignment: Kubernetes Pod Restart Policy - GKE3. Assignment: Working with Labels and Selectors in Kubernetes GKE4. Assignment: Scaling & Replication in Kubernetes GKE5. Assignment: Deployment and Rollback in Kubernetes GKE6. Assignment - Containers within a Pod Communicate via localhost in GKE7. Assignment - Containers Communicate via localhost using a Specific Port in Kubernetes GKE8. Assignment - Pod-to-Pod Communication via POD IP in Kubernetes GKE9. Assignment - Kubernetes Services: ClusterIP in GKE10. Assignment - Kubernetes Services: NodePort in Kubernetes GKE11. Assignment - Kubernetes Services: LoadBalancer in Kubernetes GKE12. Assignment - Create a POD with attached emptyDir volume in Kubernetes GKE13. Assignment - Create a POD with attached hostpath volume GKE14. Assignment - Persistent Volumes for Storage in Kubernetes Cluster GKECourse OutlineSection 1: Kubernetes IntroductionWhat is KubernetesWhy do we use Kubernetes?Kubernetes Implementations - GCP, AWS, Azure, Minikube etcMonolithic approach for developing applications.Microservices Vs. MonolithicKubernetes Gateway APIEvolution of Containers, Dockers & VMsMicroservices running as containersKubernetes - Orchestration or container management toolFeatures of KubernetesSection2: Architecture of the Kubernetes ClusterThe architecture of the Kubernetes ClusterUnderstand architecture with various examplesWorking with KubernetesRoles of Master NodeComponents of Control Plane (Master Node)API ServerEtcdSchedulerController ManagerKubeletService ProxyPODContainer Engine - Docker, Containerd, or RocketSection 3: Setup of Kubernetes Cluster in GCPSet up a Kubernetes Cluster in GCP EnvironmentCluster basics, Node Pools, Networking etc.Activate cloud shell to access Kubernetes ClusterConfigure KubectlSection 4: Kubernetes Concepts in GCPCreate the first POD using manifest file written in YAML LanguageHow to deploy ubuntu pod in Kubernetes?Check logs for pods and containers in KubernetesCreate multiple containers in a PODRetrieve information from running containersGet a Shell to a Running ContainerMultiple Containers in a Pod (Ubuntu, Nginx Web Sever)Download image for containers like Curl, Ubuntu, Nginx etc.Image Pull Policy of containersKubernetes AnnotationsDefine Environment variablesPod-to-pod communicationLogin to Cluster nodes using cloud shell or control planeSection 5: Kubernetes Pod Restart PolicyOverview of Pod Restart PoliciesThree restart policies: Always, OnFailure & NeverLab - Restart Policy: AlwaysLab - Restart Policy: OnFailureLab - Restart Policy: NeverSection 6: Labels and Selectors in KubernetesLabels & SelectorsLab - Labels and SelectorsCommands for managing labels & selectorsDeclarative vs. Imperative Kubernetes commandsLab - Search the pod using labelsTwo types SelectorsEquality BasedSet basedLab - Search the pod using set-basedOverview of Node SelectorLab - Create a pod on a specific nodeSection 7: Scaling & ReplicationWhat is ReplicationController - RC?Features of RCLab - Create Replicas of POD using RCLab - Deleting a pod of ReplicationControllerLab - Scale-up & scale-down the pod: ReplicationControllerWhat is ReplicaSet - RS?Lab - Create Replicas of POD using ReplicaSetLab - Scale-up & scale-down the pod: ReplicaSetDifference between ReplicationController & ReplicaSetSection 8: Deployment and RollbackOverview of Deployment and RollbackLab: Launch two PODs using deployment objectLab: upgrade the application v1 to v2 using deployment objectLab: Roll back the application to previous versionLab: Roll back to any specific versionSection 9: Kubernetes NetworkingOverview of Kubernetes NetworkingContainers within a POD communicate via localhostContainers communicate via localhost using a specific portPod-to-pod communication via Pod IPPractice Lab - Pod-to-pod communicationSection 10: Kubernetes Services: ClusterIP, Nodeport and LoadBalancerObject - ServiceWhy service is required?Service type - Cluster IP, NodePort & LoadBalancerLab 1 - Access the Web appl using Cluster IPLab 2 - Access the Web appl using Cluster IPLab 1 - Access the Web appl using NodePortLab 2 - Access the Web appl using NodePortLab 3 - Access the Web appl using specific NodePortAbout LoadBalancerLab 1 - Kubernetes Services: LoadBalancerLab 2 - Kubernetes Services: LoadBalancerSection 11: Volumes in Kubernetes ClusterOverview of Volumes in Kubernetes Cluster.Volume types - EmptyDir, hostpathLab1: Create a POD with attached emptyDir volumeLab2: Create a POD with attached emptyDir volumeLab1: Create a POD with attached hostpath volumeLab2: Create a POD with attached hostpath volumeSection 12: Persistent VolumesOverview of Persistent volumesCreate a storage class for GKECreate a Persistent Volume using PVCGKE Pod With Persistent VolumeSection 13: RBAC Policies for Securing Kubernetes ClusterIntroductionKey components of RBACHow RBAC works?How Role and RoleBinding Work TogetherKubernetes Roles: Defining Permissions and AccessPermissions Granted by Kubernetes RolesCreate a roleBind the Role to a User or Service AccountSection 14: Set Up a Minikube Kubernetes Cluster on Google CloudProject OverviewLaunch VM for Minikube ClusterActivate Cloud Shell and Connect to VMMinikube Kubernetes Cluster Setup - Practical Lab 1Minikube Kubernetes Cluster Setup - Practical Lab 2Minikube Kubernetes Cluster Setup - Practical Lab 3Start Minikube and Deploy Nginx PodSection 15: Client Authentication using SSL/TLS CertificateSet Up New Namespace & Launch PodOverview of Client Certificate GenerationGenerate a Private KeyGenerate a Certificate Signing Request (CSR)Sign a CSR with Minikube's CA to Generate a User CertificateSet and Verify Client Credentials in Kubernetes ConfigSection 16: RBAC: Role and RoleBindingCreate a RoleCreate RoleBinding to Assign Role to UserTest RBAC PermissionsSection 17: Access the K8s Minikube Cluster as a UserList and Manage Kubernetes ContextsSet Up a New Context for a UserVerify RBAC Permissions with New ContextModify and Test RBAC Role PermissionsSection 18: Set Up and Verify Network Policies for PodsIntroduction to Kubernetes Network PoliciesWhy Restrict Pod-To-Pod Communication?Understanding K8s Network Policies and CNI PluginsExample Use Case ScenariosSection 19: Lab: Restrict Pod Communication Using Network PoliciesStart Minikube with Cilium CNICreate Two Pods with LabelsVerify Pod Connectivity Using CurlCreate Ingress Network Policy to Restrict Pod AccessCheck if Pod-to-Pod Access is BlockedRestrict Ingress/Egress Traffic with Network PolicySection 20: Securely Access Minikube Cluster Using MobaXterm or PuTTYDeploy a Virtual MachineAdd User and Setup SSH AuthenticationCreate SSH Key PairConvert Private Key to.ppk FormatVM Access TroubleshootingDeploy Minikube on Virtual MachineInitialize Minikube ClusterSection 21: Secure Deployment and Access of Nginx on KubernetesOverview of Securing Nginx with HTTPSDeploy and Expose a Nginx Pod to External TrafficAccess Nginx Web Server Through HTTPSet Up Nginx on Host Machine for Accessing Nginx PodAccess Nginx Web Server via Web Browser (HTTP Only)Section 22: Implement HTTPS for Nginx in a K8s Cluster Using TLS CertificatesDeploy and Expose a Nginx Pod to External TrafficGenerate a self-signed TLS CertificateStore the TLS Certificate as a SecretCheck Minikube's Ingress Controller StatusCreate Ingress Resource for HTTPSLast Lecture

课程标签

0人关注该课程

主题相关的课程