I would like to add https://hub.helm.sh/charts/bitnami/mysql as a dependency to my helm charts. So I added this to my Chart.yaml:
dependencies:
- name: mysql
version: "6.14.9"
repository: "https://charts.bitnami.com/bitnami"
How can I now get the service name the password and the user as environment variables in my main chart deployments to connect to the mysql server? Somehow all the documentation of the chart only ever mentions directly installing it with helm. Is it not correct to use a dependency here?