apache / openwhisk-deploy-kube

The Apache OpenWhisk Kubernetes Deployment repository supports deploying the Apache OpenWhisk system on Kubernetes and OpenShift clusters.
https://openwhisk.apache.org/
Apache License 2.0
297 stars 231 forks source link

Pods Never Starting Up #647

Closed dergoose closed 3 years ago

dergoose commented 3 years ago

chrome_gLGciEjdh1

I'm on Ubuntu 18.04 and my pods are never getting passed this state even days after.

My yaml file is all correct and I've went through all the logs of the pods and there's nothing out of the ordinary.

Help!

dgrove-oss commented 3 years ago

My first guess would be that your cluster doesn't have a DefaultStorageClass properly configured. The various pods that are in pending state want to allocate persistent volumes. You can try disabling persistence and redeploying the chart as one sanity check. See https://github.com/apache/openwhisk-deploy-kube/blob/master/docs/configurationChoices.md#persistence

dergoose commented 3 years ago

This was indeed the issue.

Thanks!