I have an existing postgres-ha up and running installed using bitnami helm chart. This postgres has loadbalancer and has the port opened to access from external.
Now, I want the keycloak to be installed using this existing postgres as persistent store. First I added the repo as
helm repo add codecentric https://codecentric.github.io/helm-charts
then I tried to follow the ReadMe steps,
helm install --name keycloak codecentric/keycloak
and I keep getting the error
Error: found in Chart.yaml, but missing in charts/ directory: postgresql. In the steps it is mentioned as postgres as default a
This happens even without any changes to the default values. Can someone points to, how to resolve thi? Thanks.
helm dep update
beforehelm install
? – hoque