NFS provisioner pod not starting
book
Article ID: 373448
calendar_today
Updated On:
Products
VMware Telco Cloud Service Assurance
Issue/Introduction
NFS is configured in the values.yaml but after TCSA is deployed, nfs provisioner pod is not starting.
Cause
nfs-utils rpm needs to be installed on each of the worker nodes in the Kubernetes cluster.
Resolution
- Install the nfs-utils package with the following command:
yum install nfs-utils -y
- After installation, restart the nfs-provisioner and minio pods
- Obtain the pod names to be restarted:
kubectl get pods | grep -i nfs
kubectl get pods | grep -i minio
- Delete the returned pod names:
kubectl delete pods nfs-provisioner-xxxxxxxx
kubectl delete pods minio-xxxxxx
- Verify that the pods successfully start with a 1/1 Running status:
kubectl get pods | grep -i nfs
kubectl get pods | grep -i minio
Feedback
thumb_up
Yes
thumb_down
No