본문 바로가기

TroubleShooting/Cloud-native

[Kubernetes]Do not want to remove the pvc when uninstalling helm chart

Concept

Helm chart로 플랫폼을 구성하고 helm uninstall을 하는 경우 구성했던 PVC가 없어 지는 경우가 있다.

이때 아래 PVC에 annotations을 추가해 PVC를 유지할 수 있다.

Do not remove resource such as pvc

Add annotations

metadata:
  annotations:
    "helm.sh/resource-policy": keep
[...]

Example

apiVersion: v1
kind: PersistentVolumeClaim
metadata:
  annotations:
    helm.sh/resource-policy: keep
  labels:
    app: harbor
    component: redis
  name: harbor-redis
  namespace: harbor
spec:
  accessModes:
  - ReadWriteOnce
  resources:
    requests:
      storage: 5Gi
  volumeMode: Filesystem
  volumeName: harbor-redis