ImageVerifierCode 换一换
格式:PPT , 页数:37 ,大小:2.77MB ,
文档编号:3912238      下载积分:25 文币
快捷下载
登录下载
邮箱/手机:
温馨提示:
系统将以此处填写的邮箱或者手机号生成账号和密码,方便再次下载。 如填写123,账号和密码都是123。
支付方式: 支付宝    微信支付   
验证码:   换一换

优惠套餐
 

温馨提示:若手机下载失败,请复制以下地址【https://www.163wenku.com/d-3912238.html】到电脑浏览器->登陆(账号密码均为手机号或邮箱;不要扫码登陆)->重新下载(不再收费)。

已注册用户请登录:
账号:
密码:
验证码:   换一换
  忘记密码?
三方登录: 微信登录  
下载须知

1: 试题类文档的标题没说有答案,则无答案;主观题也可能无答案。PPT的音视频可能无法播放。 请谨慎下单,一旦售出,概不退换。
2: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。
3: 本文为用户(晟晟文业)主动上传,所有收益归该用户。163文库仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知163文库(点击联系客服),我们立即给予删除!。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 本站仅提供交流平台,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

版权提示 | 免责声明

1,本文(Kubernetes有状态集群服务部署与管理(-37张)课件.ppt)为本站会员(晟晟文业)主动上传,163文库仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。
2,用户下载本文档,所消耗的文币(积分)将全额增加到上传者的账号。
3, 若此文所含内容侵犯了您的版权或隐私,请立即通知163文库(发送邮件至3464097650@qq.com或直接QQ联系客服),我们立即给予删除!

Kubernetes有状态集群服务部署与管理(-37张)课件.ppt

1、Kubernetes有状态集群服务部署与管理Agenda Background What is Kubernetes?Run stateful serviceson Kubernetes Kubernetes Storage Volume Persistent Volume Dynamic StorageProvision Kubernetes Stateful Service Features Init Container Pet Set Run MySQL Cluster on Kubernetes Galera MySQL Introduction Deploy MySQL Cluste

2、r with PetSet Cluster Operation on KubernetesWhat is KubernetesWhat is KubernetesWhat is KubernetesWhat is KubernetesPetCattleRun Stateful Service on Kubernetes Stateless services are popular in containerized worldbecause they are disposable and easy to be re-createdwith container images.Beyond stat

3、eless services like web server,users areincreasingly deploying stateful services with containersto benefit from“build once,run anywhere”and toimprove bare metal efficiency/utilization.These“pets”bring new requirements including longerlife cycle,configuration dependencies and statefulfailover.Contain

4、er orchestration must address theseneeds to successfully deploy and scale apps.Run Stateful Service on KubernetesStateless Pod RCReplica Set ServiceStateful Volume PersistentVolumeClusteredPet SetInit ContainerHeadless ServiceDynamic StorageProvisionAgenda Background What is Kubernetes?Run stateful

5、serviceson Kubernetes Kubernetes Storage Volume Persistent Volume Dynamic StorageProvision Kubernetes Stateful Service Features Init Container Pet Set Run MySQL Cluster on Kubernetes Galera MySQL Introduction Deploy MySQL Cluster with PetSet Cluster Operation on KubernetesKubernetes Storage Node Bas

6、edVolume emptyDir hostPath Use Cases:Store temp data Data sharingamongcontainersKubernetes Storage hostPath emptyDirKubernetes Storage Cross Node VolumeKubernetes StorageKubernetes ClusterShared VolumeVarious volume pluginsUnshared VolumeNodeCCCCNodeCCCCNodeC CCCemptyDirhostPathgcePersistentDiskawsE

7、lasticBlockStoreiscsirbdazureFileVolumenfshostPathglusterfsflockercephfssecretvsphereVirtualDiskKubernetes Storage Add your volume pluginKubernetes Storage Persistent Volume&Persistent Volume Claim PV/PVC abstracts details of how storage is providedfrom how it is consumed.PV/PVC are API resources.PV

8、s are volume plugins like Volumes,but have alifecycle independent of any individual pod that usesthe PV.Kubernetes Storage PV Access ModesKubernetes Storage PV LifecycleProvisioningBindingUsingReleasingReclaimingStaticDynamicAvailableBoundReleasedRetainDeleteRecycleFailedKubernetes Storage PV Provis

9、ion&Binding Processkind:StorageClassapiVersion:storage.k8s.io/v1beta1metadata:name:slowprovisioner:kubernetes.io/gce-pdparameters:type:pd-standardKubernetes Storage Dynamic Storage Provisionkind:StorageClassapiVersion:storage.k8s.io/v1beta1metadata:name:fastprovisioner:kubernetes.io/gce-pdparameters

10、:type:pd-ssdkind:PersistentVolumeClaim,apiVersion:v1,metadata:name:claim1,annotations:volume.beta.kubernetes.io/storage-class:fast,Kubernetes Storage Dynamic Storage Provisionspec:accessModes:ReadWriteOnce,resources:requests:storage:30GiThis claim will result in an SSD-like Persistent Disk beingauto

11、matically provisioned.When the claim is deleted,the volume willbe destroyed.Agenda Background What is Kubernetes?Run stateful serviceson Kubernetes Kubernetes Storage Volume Persistent Volume Dynamic StorageProvision Kubernetes Stateful Service Features Init Container Pet Set Run MySQL Cluster on Ku

12、bernetes Galera MySQL Introduction Deploy MySQL Cluster with PetSet Cluster Operation on KubernetesInit Container What is Init ContainerSequentially executed containers in a podInitialize shared volumesAlways run to completionUsed on a pod,replica set,deployment,daemonset,pet set or job.Init Contain

13、er 1Shared VolumesInit Container 2PrimaryContainerPodInit Container Why Init ContainerWaiting for other components to be availablePerforming configurationRegistering the pod into a central databaseDownloading application dependenciesInit ContainerPet Set Pet vs PodPetStatefulIdentityComplexPodStatel

14、essNoIdentitySimplePet SetStableStorageNetworkIdentityOrdinalIndexPetPV/PVCHeadlessServicePet SetNo Cluster IPDNS RecordCreationPet Set PetSet OperationsPeer discoveryScaling a PetSetImage upgradesDeleting a PetSetAgenda Background What is Kubernetes?Run stateful serviceson Kubernetes Kubernetes Sto

15、rage Volume Persistent Volume Dynamic StorageProvision Kubernetes Stateful Service Features Init Container Pet Set Run MySQL Cluster on Kubernetes Galera MySQL Introduction Deploy MySQL Cluster with PetSet Cluster Operation on KubernetesGalera MySQL IntroductionHeadless ServiceDeploy MySQL Cluster w

16、ith PetSetPet SetPV PoolInit:installInit:bootstrapContainer:mysqlPVPVPVPVPVPVCLocalStorageDNSRecordDNSRecordDNSRecordMySQLPetMySQLPetDeploy MySQL Cluster with PetSetHeadless Service&PetSetDeploy MySQL Cluster with PetSetInit ContainersDeploy MySQL Cluster with PetSetGalera MySQL ContainerDeploy MySQ

17、L Cluster with PetSetVolumes&PVCCreate Pet SetCluster Operation Auto Recovery The failed pets can be automatically recreated The new created pet will use the data of the diedone Scaling the Cluster kubectl scale petset mysql-replicas=5 Image Upgrades Update the image field of any container in thepod

18、Template Delete Pets one by one,the PetSet controller willrecreate it with the new imageAgenda Background What is Kubernetes?Run stateful serviceson Kubernetes Kubernetes Storage Volume Persistent Volume Dynamic StorageProvision Kubernetes Stateful Service Features Init Container Pet Set Run MySQL C

19、luster on Kubernetes Galera MySQL Introduction Deploy MySQL Cluster with PetSet Cluster Operation on KubernetesSummaryClustered Stateful ServiceStorage RequirementCluster RequirementVolumeGaleraMySQLClusterDeploymentPV/PVCStorageClassHeadlessServicePet SetInitContainerKubernetesAutoRecoveryScalingUpgrade

侵权处理QQ:3464097650--上传资料QQ:3464097650

【声明】本站为“文档C2C交易模式”,即用户上传的文档直接卖给(下载)用户,本站只是网络空间服务平台,本站所有原创文档下载所得归上传人所有,如您发现上传作品侵犯了您的版权,请立刻联系我们并提供证据,我们将在3个工作日内予以改正。


163文库-Www.163Wenku.Com |网站地图|