I start a kubernetes replication controller. When the corresponding container in the single pod in this replication controller has a gcePersistentDisk
specified the pods will start very slow. After 5 minutes the pod is still in the Pending
state.
kubectl get po
will tell me:
NAME READY STATUS RESTARTS AGE
app-1-a4ni7 0/1 Pending 0 5m
Without the gcePersistentDisk
the pod is Running
in max 30 seconds.
(I am using a 10 GB Google Cloud Storage disk and I know that these disks have lower performance for lower capacities, but I am not sure this is the issue.)
What could be the cause of this?