【k8s】存储 pv 参数列表

文章目录

  • 1. pv概述
  • 2. pv完整参数列表
  • 参考

相关文章:
【K8s】初识PV和PVC
【k8s】存储 pv 参数列表
【k8s】存储 pvc 参数列表

1. pv概述

PV 持久卷是用插件的形式来实现的。Kubernetes 目前支持以下插件:

  • cephfs - CephFS volume
  • csi - 容器存储接口 (CSI)
  • fc - Fibre Channel (FC) 存储
  • hostPath - HostPath 卷 (仅供单节点测试使用;不适用于多节点集群;请尝试使用 local 卷作为替代)
  • iscsi - iSCSI (SCSI over IP) 存储
  • local - 节点上挂载的本地存储设备
  • nfs - 网络文件系统 (NFS) 存储
  • rbd - Rados 块设备 (RBD) 卷

以local为例:

apiVersion: v1
kind: PersistentVolume
metadata:name: pv-local
spec :capacity:storage: 2GivolumeMode: FilesystemaccessModes:- ReadWriteOncepersistentVolumeReclaimPolicy: DeletestorageClassName: local-storagelocal:path: /data/localpv # k8s-node-03节点上的目录nodeAffinity:required:nodeSelectorTerms:- matchExpressions:- key: kubernetes.io/hostnameoperator: Invalues :- k8s-node-03

pv资源类型不是通过统一的type='xxx’进行区分的,而是直接使用特定的属性,例如上面的local 就是 表示local pv

2. pv完整参数列表

完整的参数类型如下:

[root@paas-controller-3:/home/ubuntu]$ kubectl explain pv.spec
KIND:     PersistentVolume
VERSION:  v1RESOURCE: spec <Object>DESCRIPTION:Spec defines a specification of a persistent volume owned by the cluster.Provisioned by an administrator. More info:https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistent-volumesPersistentVolumeSpec is the specification of a persistent volume.FIELDS:accessModes  <[]string>AccessModes contains all ways the volume can be mounted. More info:https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modesawsElasticBlockStore <Object>AWSElasticBlockStore represents an AWS Disk resource that is attached to akubelet's host machine and then exposed to the pod. More info:https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstoreazureDisk    <Object>AzureDisk represents an Azure Data Disk mount on the host and bind mount tothe pod.azureFile    <Object>AzureFile represents an Azure File Service mount on the host and bind mountto the pod.capacity     <map[string]string>A description of the persistent volume's resources and capacity. More info:https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacitycephfs       <Object>CephFS represents a Ceph FS mount on the host that shares a pod's lifetimecinder       <Object>Cinder represents a cinder volume attached and mounted on kubelets hostmachine. More info: https://examples.k8s.io/mysql-cinder-pd/README.mdclaimRef     <Object>ClaimRef is part of a bi-directional binding between PersistentVolume andPersistentVolumeClaim. Expected to be non-nil when bound. claim.VolumeNameis the authoritative bind between PV and PVC. More info:https://kubernetes.io/docs/concepts/storage/persistent-volumes#bindingcsi  <Object>CSI represents storage that is handled by an external CSI driver (Betafeature).fc   <Object>FC represents a Fibre Channel resource that is attached to a kubelet's hostmachine and then exposed to the pod.flexVolume   <Object>FlexVolume represents a generic volume resource that isprovisioned/attached using an exec based plugin.flocker      <Object>Flocker represents a Flocker volume attached to a kubelet's host machineand exposed to the pod for its usage. This depends on the Flocker controlservice being runninggcePersistentDisk    <Object>GCEPersistentDisk represents a GCE Disk resource that is attached to akubelet's host machine and then exposed to the pod. Provisioned by anadmin. More info:https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdiskglusterfs    <Object>Glusterfs represents a Glusterfs volume that is attached to a host andexposed to the pod. Provisioned by an admin. More info:https://examples.k8s.io/volumes/glusterfs/README.mdhostPath     <Object>HostPath represents a directory on the host. Provisioned by a developer ortester. This is useful for single-node development and testing only!On-host storage is not supported in any way and WILL NOT WORK in amulti-node cluster. More info:https://kubernetes.io/docs/concepts/storage/volumes#hostpathiscsi        <Object>ISCSI represents an ISCSI Disk resource that is attached to a kubelet'shost machine and then exposed to the pod. Provisioned by an admin.local        <Object>Local represents directly-attached storage with node affinitymountOptions <[]string>A list of mount options, e.g. ["ro", "soft"]. Not validated - mount willsimply fail if one is invalid. More info:https://kubernetes.io/docs/concepts/storage/persistent-volumes/#mount-optionsnfs  <Object>NFS represents an NFS mount on the host. Provisioned by an admin. Moreinfo: https://kubernetes.io/docs/concepts/storage/volumes#nfsnodeAffinity <Object>NodeAffinity defines constraints that limit what nodes this volume can beaccessed from. This field influences the scheduling of pods that use thisvolume.# 亲和性 persistentVolumeReclaimPolicy        <string>What happens to a persistent volume when released from its claim. Validoptions are Retain (default for manually created PersistentVolumes), Delete(default for dynamically provisioned PersistentVolumes), and Recycle(deprecated). Recycle must be supported by the volume plugin underlyingthis PersistentVolume. More info:https://kubernetes.io/docs/concepts/storage/persistent-volumes#reclaimingphotonPersistentDisk <Object>PhotonPersistentDisk represents a PhotonController persistent disk attachedand mounted on kubelets host machineportworxVolume       <Object>PortworxVolume represents a portworx volume attached and mounted onkubelets host machinequobyte      <Object>Quobyte represents a Quobyte mount on the host that shares a pod's lifetimerbd  <Object>RBD represents a Rados Block Device mount on the host that shares a pod'slifetime. More info: https://examples.k8s.io/volumes/rbd/README.mdscaleIO      <Object>ScaleIO represents a ScaleIO persistent volume attached and mounted onKubernetes nodes.storageClassName     <string>Name of StorageClass to which this persistent volume belongs. Empty valuemeans that this volume does not belong to any StorageClass.storageos    <Object>StorageOS represents a StorageOS volume that is attached to the kubelet'shost machine and mounted into the pod More info:https://examples.k8s.io/volumes/storageos/README.mdvolumeMode   <string>volumeMode defines if a volume is intended to be used with a formattedfilesystem or to remain in raw block state. Value of Filesystem is impliedwhen not included in spec.vsphereVolume        <Object>VsphereVolume represents a vSphere volume attached and mounted on kubeletshost machine

参考

关于k8s持久卷
研发工程师玩转Kubernetes——local型PV和PVC绑定过程中的状态变化

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/diannao/18918.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

地图下钻,双击返回上一级

介绍&#xff1a; 看了好多地图下钻的案例&#xff0c;要么json文件不全胡&#xff0c;要么返回功能不全胡&#xff0c;有的返回是直接写死&#xff0c;返回到首页&#xff0c;我这个小案例是使用地理小工具的数据&#xff0c;本案例可以逐步一级一级的返回&#xff0c;地图的其…

【旧文更新】【优秀课设】基于FPGA的Verilog HDL自动售货机

【旧文更新】基于FPGA的Verilog HDL自动售货机 文章目录 关于旧文新发FPGACortex-M架构SysTick系统定时器阻塞和非阻塞延时 附录&#xff1a;压缩字符串、大小端格式转换压缩字符串浮点数压缩Packed-ASCII字符串 大小端转换什么是大端和小端数据传输中的大小端总结大小端转换函…

Three.js 中的场景与相机基础

Three.js 中的场景与相机基础 一、场景&#xff08;Scene&#xff09; 在 Three.js 中&#xff0c;场景是所有 3D 对象存在和交互的容器。艾斯视觉作为行业ui设计与前端开发服务商很高兴能在这里与你共同探讨&#xff1a;它就像是一个虚拟的 3D 空间&#xff0c;我们可以在其中…

端午节趣味互动小游戏的作用是什么

端午节吃粽子&#xff0c;多数行业商家都可借势进行品牌营销&#xff0c;而一场营销效果的优劣&#xff0c;除了好方案外&#xff0c;还需要好的工具/渠道及运营等&#xff0c;围绕粽子元素的互动小游戏是营销互动的主要形式之一。 运用【雨科】平台拥有多款端午节粽子主题互动…

C# 中的值类型与引用类型:内存大小解析

在 C# 中&#xff0c;类型可以被归类为值类型或引用类型&#xff0c;它们在内存中的存储和管理方式不同。了解这些差异对于优化程序性能和资源管理至关重要。 值类型 (Value Types) 值类型包括所有内置的数值类型&#xff08;如 int, double 等&#xff09;、char 类型、bool…

关于APM32F407配置串口DMA收发没有数据的问题记录

一.问题环境 ​ 整活了一套APM32F407的板子&#xff0c;用了APM32F4xx_SDK_V1.4的标准外设库&#xff0c;正在搭建移植底层BSP框架串口部分&#xff0c;BSP底层配置逻辑是从STM32F407移植过来的。DMA发送时才使能通道及配置外设地址及缓存大小。 ​ 串口1DMA配置过程如下&…

leetcode 1270 向公司CEO汇报工作的所有人(postgresql)

需求 员工表&#xff1a;Employees ---------------------- | Column Name | Type | ---------------------- | employee_id | int | | employee_name | varchar | | manager_id | int | ---------------------- employee_id 是这个表的主键。 这个表中每一行中&#xff0c;e…

多个查询有同一个字段做关联,各个查询用临时表再用join 链接 拼接一个查询语句

查询自定日期活跃充值和总充值 TotalRecharge总金额字段 SELECT a.UserID, a.TotalRecharge, b.dayamount FROM ( SELECT i.UserID, a.TotalRecharge FROM qplogdb.user_inout_log_202405 AS i …

用于脑肿瘤分割的跨模态深度特征学习| 文献速递-深度学习肿瘤自动分割

Title 题目 Cross-modality deep feature learning for brain tumor segmentation 用于脑肿瘤分割的跨模态深度特征学习 01 文献速递介绍 作为最致命的流行病&#xff0c;脑肿瘤的研究越来越受到关注。本文研究了一种基于深度学习的自动分割胶质瘤的方法&#xff0c;称为脑…

utf8mb4_general_ci和utf8mb4_0900_ai_ci

utf8mb4_general_ci和utf8mb4_0900_ai_ci 在 MySQL 数据库中&#xff0c;字符集和排序规则&#xff08;collation&#xff09;决定了如何存储和比较字符串数据。utf8mb4 是 MySQL 中用于支持完整的 UTF-8 字符&#xff08;包括表情符号和其他 4 字节字符&#xff09;的一种字符…

筛斗数据:如何利用数据提取技术进行环境监测与预警

利用数据提取技术进行环境监测与预警&#xff0c;是现代环境管理中的一项重要手段。它通过高效地从多源数据中提取、分析关键信息&#xff0c;实现对环境状况的实时监测和潜在风险的早期预警。以下是几个具体步骤和方法&#xff0c;说明如何有效利用数据提取技术&#xff1a; …

raid 磁盘阵列

raid 磁盘阵列&#xff1a; **条带化存储&#xff1a;**数据分散在多个物理磁盘上的存储方式。利用多个磁盘并行读取和写入。 条带化的存储性能和读写性能是最好的。 磁盘的组成方式不同&#xff0c;也就是不同的raid级别&#xff1a; **raid 0&#xff08;条带化存储&#x…

音视频开发_SDL入门

SDL是 “Simple DirectMedia Layer”的缩写&#xff0c;它是一个开源的项目。其主要用于游戏开发中的多媒体处理&#xff0c;如视频渲染&#xff0c;音频播放&#xff0c;鼠标/键盘控制等操作。 并且它是一个跨平台的多媒体库。也就是说它对外接供了一套统一的接口&#xff0c…

高级软件工程师带你解决MySQL死锁问题Deadlock found when trying to get lock实战案例全网唯一

高级软件工程师带你解决MySQL死锁问题Deadlock found when trying to get lock实战 前言 笔者我实际工作中&#xff0c;经常遇到mysql数据库死锁问题&#xff01;CSDN上面也有很多大神刨析解决方法&#xff01; 我在实际工作中的MySQL数据库架构很复杂&#xff0c;又涉及到主…

MT3045 松鼠接松果

思路&#xff1a; 求x的一个区间&#xff0c;使区间中的松果的最大y坐标和最小y坐标的差至少为D。若有多个区间&#xff0c;则取最小的那个。 即使用单调队列不断维护最大值和最小值。 首先L固定不动&#xff0c;R不断右移&#xff1a; 即若函数f(R)max[L,R]-min[L,R] >…

自建视频托管平台:MediaCMS

目录 1 MediaCMS简介1.1 介绍1.2 特性1.3 应用场景 2 安装配置2.1 安装1、安装2、汉化 2.2 一些常见配置 3 简单使用3.1 上传3.2 下载3.3 添加标题或者字幕3.4 通过Tag/Category实现视频/文件分类添加 Tag给任一资源分类 1 MediaCMS简介 1.1 介绍 MediaCMS是一个现代的&#…

Spring +SpringMVC+Mybatis项目详细构造

一&#xff0c;文档详解 1&#xff0c;web.xml配置 配置spring监听器&#xff1a; 指定spring配置文件的位置和名称&#xff0c;扫描会先扫描此文件&#xff0c;此文件中的扫描文档作为父类扫描&#xff0c;父类扫描不可访问子类扫描&#xff0c;子类扫描可访问父类扫描 &l…

LeetCode --- 399周赛

题目列表 3162. 优质数对的总数 I 3163. 压缩字符串 III 3164. 优质数对的总数 II 3165. 不包含相邻元素的子序列的最大和 一、优质数对的总数I 这里由于数据范围比较小&#xff0c;我们可以直接暴力枚举&#xff0c;代码如下 class Solution { public:int numberOfPairs…

JavaScript字符串方法

charAt() 方法&#xff1a;返回指定索引处的字符。 示例&#xff1a; let str "Hello World"; console.log(str.charAt(0)); // Output: "H" console.log(str.charAt(6)); // Output: "W"charCodeAt() 方法&#xff1a;返回指定索引处字符的 Un…

数组321

package demo; public class Goodtest { public static void main(String[] args) { Good arr[]new Good[3]; Good g1new Good("001","小米",5990,100); Good g2new Good("002","保温杯",227,100); Good g3new G…