general helm qn, if i want to adjust the liveness ...
# all-things-deployment
b
general helm qn, if i want to adjust the liveness probe for datahub-gms, should i edit the the values.yaml inside /charts/datahub-gms/values.yaml or /subcharts/datahub-gms/values.yaml? i dont think it can be adjusted inside the top-level values.yaml
f
I think you can add these values inside this template
charts/datahub/values.yaml
https://github.com/acryldata/datahub-helm/blob/master/charts/datahub/values.yaml
b
whats the purpose of subcharts folder, then ? seems like a dup of charts
b
the subChars allow deploying those components separately
b
thanks for the ans
b
in general you can edit edit subchar values in the top level values.yaml. so you can add new probes in the top level as well.
b
hmm i was looking at the deployment.yaml inside /charts/datahub-gms liveness was puling from values.livenessprobe, which referred to /charts/datahub-gms/values.yaml which was why i concluded the top level value.yaml cannot affect the chart deployment values? im still learning about helm, so my understanding is a little weak
b
you can overwrite chart values.yaml in the toplevel:
Copy code
datahub-gms:
 <add sub chart config here>
b
ok, i will give it a shot, thanks!