k8s pv,pvc无法删除问题

news/2024/11/8 8:55:21/

k8s pv,pvc无法删除问题
一般删除步骤为:先删pod再删pvc最后删pv

但是遇到pv始终处于“Terminating”状态,而且delete不掉。如下图:
在这里插入图片描述
解决方法:

直接删除k8s中的记录:

1

kubectl patch pv xxx -p '{"metadata":{"finalizers":null}}'

参考信息:

This happens when persistent volume is protected. You should be able to cross verify this:Command:kubectl describe pvc PVC_NAME | grep FinalizersOutput:Finalizers: [kubernetes.io/pvc-protection]You can fix this by setting finalizers to null using kubectl patch:kubectl patch pvc PVC_NAME -p '{"metadata":{"finalizers": []}}' --type=merge

实例操作:

# kubectl patch pvc test-01  -p '{"metadata":{"finalizers":null}}' -n xitu-test
persistentvolumeclaim/test-es01 patched# kubectl patch pvc datadir-0  -p '{"metadata":{"finalizers":null}}' -n xitu-test
persistentvolumeclaim/datadir-0 patched# kubectl patch pv d-bp1flc3jh6rcc0le0x7y  -p '{"metadata":{"finalizers":null}}' -n xitu-test 
persistentvolume/d-bp1flc3jh6rcc0le0x7y patched

http://www.ppmy.cn/news/172098.html

相关文章

error pulling image configuration: read tcp xxx.xxx.x.xxx:xx->xxx.xx.xxx.xx:xxx: read: connection

问题描述: 当我们使用docker pull拉取镜像的时候,会报error pulling image configuration: read tcp xxx.xxx.x.xxx:xx->xxx.xx.xxx.xx:xxx: read: connection类似这样的错误。 问题分析: 由于国内网络问题,无法连接到 dock…

ORA-15099: disk ‘/dev/asm_data‘ is larger than maximum size of 2097152 MBs

数据库版本 12c(12.1.0.2)ASM 12c以后支持超过2T 的盘记录ORA-15099 问题处理过程: ORA-15099:disk /dev/asm_data is larger than maximum size of 2097152 MBs查看磁盘的组的rdbms兼容版本 [gridl01testdb01 ~]$ asmcmd lsattr -G DATA -l Name …

固件错误Possible missing firmware解决办法

问题: W: Possible missing firmware /lib/firmware/rtl_nic/rtl8125a-3.fw for module r8169 解决方法: 1,进入如下这个地址,固件文件非常全面,找到适合自己的版本, https://git.kernel.org/pub/scm/linux…

ASM无法启动的问题分析(一)(r7笔记第87天)

最近碰到了一个关于ASM无法启动的案例,当然这个案例比较长,准备分两篇来写。 问题的背景如下: 目前存在一套standalone的环境,采用了ASM作为存储管理,业务属于实时统计,在某一天下班的时候开发的同事突然联…

【Docker】Docker 快速入门(精讲)

文章目录 一、Docker 简介1、docker的概念2、镜像(images)、容器(container)和仓库(DockerHub)3、容器与虚拟机的区别 二、Docker 安装1、基本步骤2、配置阿里云镜像加速 三、Docker 卸载四、Docker 的基本…

linux vmware shell 虚拟机挂载硬盘过程

【小白入门 通俗易懂】2021韩顺平 一周学会Linux https://www.bilibili.com/video/BV1Sv411r7vd?p59 step1 查看当前计算机硬盘 [rootshell37 ~]# lsblk NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT sda 8:0 0 20G 0 disk ├─sda1 8:1 0 300M 0 part /boot ├─sda2 8:2 0 2G …

基于docker的ELK+filebeat+kafka环境部署

基于docker的ELKfilebeatkafka环境部署 ELK以及常用模式环境部署一、docker二、centos三、kafka四、filebeat(centos容器中)五、logstash六、elasticsearch(es)七、kibana八、最后走一遍过程九、docker-compose和dockerfile ELK以及常用模式 什么是elk以及常用模式 环境部署 …

ctfshow 密码挑战(上)

由于题目有点小难&#xff0c;老攒着不发我很难受&#xff0c;拆成上下两篇 我真聪明 目录 真Beginner Lousy RSA Not That Right Use so Damn big e? Hammingway 真Beginner assert(len(open(flag.txt, rb).read()) < 50) assert(str(int.from_bytes(open(flag.txt,…