We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't deploy airflow chart with mysql backend?
I find chart/templates/secrets/metadata-connection-secret.yaml postgres with such code
data: connection: {{ (printf "postgresql://%s:%s@%s:%s/%s?sslmode=%s" .Values.data.metadataConnection.user .Values.data.metadataConnection.pass $host $port $database .Values.data.metadataConnection.sslmode) | b64enc | quote }}
while chart/Values.yaml
data: # If secret names are provided, use those secrets metadataSecretName: ~ resultBackendSecretName: ~ brokerUrlSecretName: ~ # Otherwise pass connection values in metadataConnection: user: ~ pass: ~
Here we can't specify mysql or postgresql if we don't specify metadataSecretName.
The text was updated successfully, but these errors were encountered:
Thanks for opening your first issue here! Be sure to follow the issue template!
Sorry, something went wrong.
Support MySQL db in the helm chart (#15616)
f8a70e1
While we generally suggest using Postgres, we should support using a non-chart-provisioned mysql database as well. closes: #15558
jedcunningham
Successfully merging a pull request may close this issue.
Can't deploy airflow chart with mysql backend?
I find chart/templates/secrets/metadata-connection-secret.yaml postgres with such code
while chart/Values.yaml
Here we can't specify mysql or postgresql if we don't specify metadataSecretName.
The text was updated successfully, but these errors were encountered: