Hi folks, i tried to update datahub using helm ```...
# troubleshoot
f
Hi folks, i tried to update datahub using helm
Copy code
helm upgrade --install datahub datahub/datahub -f helm_custom_settings.yaml --version 0.2.90
but i got this error
Copy code
Error: failed pre-install: timed out waiting for the condition
☝️ 1
g
The helm chart has hooks that run during an update. What is maybe happening: * Some prerequisite components failing to start like elasticsearch or kafka. * Some hook job is failing and restarting over and over again. These conditions will continue until Helm breaks because of the default timeout. What I recommend: First, see if is there no errors landing the components. After that, check if the setup jobs don't fail. If everything is ok, just increase the helm timeout. I recommend using these flags: '--wait-for-jobs --timeout 10m0s'
f
found it, wrong custom helm value file 😅