2

We are using helm to deploy k8s project/set of pods. Till now "helm install" comes out immediately after loading scripts. We have added "post install" hook and the "helm install" waits for some time and comes out with error "timed out waiting for the condition".

Is there any option to make "helm install" don't wait till post install is completed ?

Chandu
  • 1,837
  • 7
  • 30
  • 51

1 Answers1

0

This is not implemented for helm3 hooks defined as Job or Pod. There are several workarounds mentioned in the open ticket.

Alternatively, run helm install --wait --timeout 15m to prevent the timeout error.

Chris
  • 75
  • 6