当前位置: 首页 > news >正文

外链推广网站都有哪些一站式建设网站

外链推广网站都有哪些,一站式建设网站,广州自助网站搭建建站公司,wordpress主题上传rook-ceph安装部署到位后#xff0c;就可以开始来尝试使用StorageClass来动态创建pv了。 有状态的中间件在kubernetes上落地基本上都会用到StorageClass来动态创建pv#xff08;对于云上应用没有那么多烦恼#xff0c;云硬盘很好用#xff0c;但是对于自己学习和练习来说还…rook-ceph安装部署到位后就可以开始来尝试使用StorageClass来动态创建pv了。 有状态的中间件在kubernetes上落地基本上都会用到StorageClass来动态创建pv对于云上应用没有那么多烦恼云硬盘很好用但是对于自己学习和练习来说还是Ceph更加靠谱这里小试一试动态创建pv的威力为后续用它来玩转redis、zookeeper、elasticsearch做准备。 1、创建 StorageClass和存储池 kubectl create -f rook/deploy/examples/csi/rbd/storageclass.yaml 查看创建的cephblockpool和StorageClass kubectl get cephblockpool -n rook-ceph kubectl get sc 结果如下 rook/deploy/examples/csi/rbd/storageclass.yaml内容如下 apiVersion: ceph.rook.io/v1 kind: CephBlockPool metadata:name: replicapoolnamespace: rook-ceph # namespace:cluster spec:failureDomain: hostreplicated:size: 2# Disallow setting pool with replica 1, this could lead to data loss without recovery.# Make sure youre *ABSOLUTELY CERTAIN* that is what you wantrequireSafeReplicaSize: true# gives a hint (%) to Ceph in terms of expected consumption of the total cluster capacity of a given pool# for more info: https://docs.ceph.com/docs/master/rados/operations/placement-groups/#specifying-expected-pool-size#targetSizeRatio: .5 --- apiVersion: storage.k8s.io/v1 kind: StorageClass metadata:name: rook-ceph-block # Change rook-ceph provisioner prefix to match the operator namespace if needed provisioner: rook-ceph.rbd.csi.ceph.com parameters:# clusterID is the namespace where the rook cluster is running# If you change this namespace, also change the namespace below where the secret namespaces are definedclusterID: rook-ceph # namespace:cluster# If you want to use erasure coded pool with RBD, you need to create# two pools. one erasure coded and one replicated.# You need to specify the replicated pool here in the pool parameter, it is# used for the metadata of the images.# The erasure coded pool must be set as the dataPool parameter below.#dataPool: ec-data-poolpool: replicapool# (optional) mapOptions is a comma-separated list of map options.# For krbd options refer# https://docs.ceph.com/docs/master/man/8/rbd/#kernel-rbd-krbd-options# For nbd options refer# https://docs.ceph.com/docs/master/man/8/rbd-nbd/#options# mapOptions: lock_on_read,queue_depth1024# (optional) unmapOptions is a comma-separated list of unmap options.# For krbd options refer# https://docs.ceph.com/docs/master/man/8/rbd/#kernel-rbd-krbd-options# For nbd options refer# https://docs.ceph.com/docs/master/man/8/rbd-nbd/#options# unmapOptions: force# (optional) Set it to true to encrypt each volume with encryption keys# from a key management system (KMS)# encrypted: true# (optional) Use external key management system (KMS) for encryption key by# specifying a unique ID matching a KMS ConfigMap. The ID is only used for# correlation to configmap entry.# encryptionKMSID: kms-config-id# RBD image format. Defaults to 2.imageFormat: 2# RBD image features# Available for imageFormat: 2. Older releases of CSI RBD# support only the layering feature. The Linux kernel (KRBD) supports the# full complement of features as of 5.4# layering alone corresponds to Cephs bitfield value of 2 ;# layering fast-diff object-map deep-flatten exclusive-lock together# correspond to Cephs ORd bitfield value of 63. Here we use# a symbolic, comma-separated format:# For 5.4 or later kernels:#imageFeatures: layering,fast-diff,object-map,deep-flatten,exclusive-lock# For 5.3 or earlier kernels:imageFeatures: layering# The secrets contain Ceph admin credentials. These are generated automatically by the operator# in the same namespace as the cluster.csi.storage.k8s.io/provisioner-secret-name: rook-csi-rbd-provisionercsi.storage.k8s.io/provisioner-secret-namespace: rook-ceph # namespace:clustercsi.storage.k8s.io/controller-expand-secret-name: rook-csi-rbd-provisionercsi.storage.k8s.io/controller-expand-secret-namespace: rook-ceph # namespace:clustercsi.storage.k8s.io/node-stage-secret-name: rook-csi-rbd-nodecsi.storage.k8s.io/node-stage-secret-namespace: rook-ceph # namespace:cluster# Specify the filesystem type of the volume. If not specified, csi-provisioner# will set default as ext4. Note that xfs is not recommended due to potential deadlock# in hyperconverged settings where the volume is mounted on the same node as the osds.csi.storage.k8s.io/fstype: ext4 # uncomment the following to use rbd-nbd as mounter on supported nodes # **IMPORTANT**: CephCSI v3.4.0 onwards a volume healer functionality is added to reattach # the PVC to application pod if nodeplugin pod restart. # Its still in Alpha support. Therefore, this option is not recommended for production use. #mounter: rbd-nbd allowVolumeExpansion: true reclaimPolicy: Delete 2、创nginx的StatefulSet通过storageclass来动态创建pv绑定到 /usr/share/nginx/html    有状态的Pod,每个Pod都要有自己的pv。    对于redis、zookeeper、elasticsearch来说都会使用到storageClass来动态创建pv。 kubectl apply -f test_volumnClainTemplates.yaml  查看命令如下 kubectl get po -l appnginx kubectl get pvc 结果如下 test_volumnClainTemplates.yaml的内容如下 apiVersion: v1 kind: Service metadata:name: nginxlabels:app: nginx spec:ports:- port: 80name: webclusterIP: Noneselector:app: nginx --- apiVersion: apps/v1 kind: StatefulSet metadata:name: web spec:selector:matchLabels:app: nginxserviceName: nginxreplicas: 2 template:metadata: labels:app: nginxspec:terminationGracePeriodSeconds: 10 containers:- name: nginx image: nginx ports:- containerPort: 80 name: webvolumeMounts:- name: wwwmountPath: /usr/share/nginx/htmlvolumeClaimTemplates:- metadata:name: www spec:accessModes: [ ReadWriteOnce ] storageClassName: rook-ceph-blockresources:requests:storage: 200M
http://www.hkea.cn/news/14431461/

相关文章:

  • 网站与域名的区别学生网站建设的基本流程
  • 汕头手机模板建站赣州网站建设好么
  • 广州小企业网站制作学设计的个人网页设计作品欣赏
  • wordpress付费剧集网站wordpress恢复源代码
  • 网站建设 繁体莘县网站开发
  • 北京学生做兼职的网站杭州seo营销
  • 雅安公司做网站网站备案用的幕布
  • 怎样能注册自己的网站家具设计网站大全
  • 做打鱼网站的代理wordpress域名404
  • 重庆网站seo建设手机端便民服务平台网站建设
  • 网站建设不包括哪个阶段开发区网站建设
  • 汕头公众号建设网站网站做兼容需要多少钱
  • 专业建站网产品网络推广电商网站开发数据库表
  • 微信公众号怎么创建优惠券手机网站排名优化软件
  • 社群电商的运营模式sem优化是什么
  • 利用模板如何制作网站海淘网站
  • 做网站怎么在国外服务器租用上海政策最新规定
  • 德州整站优化网站建设与管理软件
  • 制作地图的网站电脑怎样重新装wordpress
  • 建设网站投资多少wordpress响应式企业主题
  • 自己做网站 搜索功能开发亚马逊电商平台入口
  • 网站建立的流程水网站模板
  • 网站推广策划思路的内容北京网络建站模板
  • 网网站建设与制作苏州代理注册公司
  • 网站设计与制作是网页吗html5网站建设 教程视频
  • 客户网站建设公司海外永久网站
  • 网站栏目页如何做石家庄站全景图
  • 惠城网站建设服务千图网免费素材图库设计
  • 织梦网站如何做软件下载北京页面设计制作
  • 高校思政网站建设意义开发人员公众号