This project implements an operator using the Python k8s-client to automatically update the disk storage of StatefulSet PersistentVolumeClaims (PVCs). It completely resolves the issue of being unable to modify PVC storage, and once deployed, you will never need to worry about capacity issues.
<Operator-name>
├── Dockerfile
├── <operator>.py
└── chart
├── Chart.yaml
├── values.yaml
└── templates
└── ...
Each operator needs to build an image and deploy it to Kubernetes.
1. Webhook