Polyaxon CE fresh deployment never finishes #1473
-
Hi, I’m trying to deploy Polyaxon CE with helm/argocd and the polyaxon-api keeps logging in loop:
and the pod never becomes ready. More It seems the polyaxon helm chart installation always fails with the message:
The polyaxon api pods take a long time to become ready. It fails liveness probe:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The firts step is to cehck if you are using the The reason of the deadlock: helm waits forever for API to be healthy and the API is waiting for the hook to initialize the database. More info about the helm deadlock issue: helm/helm#5118 For ArgoCD, the flag is set to For the Terraform provider for helm release, the flag is set to |
Beta Was this translation helpful? Give feedback.
The firts step is to cehck if you are using the
--wait
flag with Helm, if yes the deployment will not pass because there's helm hook.The reason of the deadlock: helm waits forever for API to be healthy and the API is waiting for the hook to initialize the database.
More info about the helm deadlock issue: helm/helm#5118
For ArgoCD, the flag is set to
true
automatically: argoproj/argo-cd#6880For the Terraform provider for helm release, the flag is set to
true
by default: https://registry.terraform.io/providers/hashicorp/helm/latest/docs/resources/release#wait and should be set it tofalse
.