-
-
Save AahanSingh/764289f145dc943dd1e9b5cf3458b381 to your computer and use it in GitHub Desktop.
MLFlow configmap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: v1 | |
kind: ConfigMap | |
metadata: | |
name: mlflow-configmap | |
data: | |
ARTIFACT_STORE: <URI OF THE GOOGLE CLOUD ARTIFACT STORE> | |
# The DB_NAME is the same as the postgresqlDatabase value | |
# set in the helm chart while deploying PostgreSQL using Kubeapps. | |
DB_NAME: "mlflow-tracking-server-database" | |
# The DB_USERNAME is the same as the postgresqlUsername value | |
# set in the helm chart while deploying PostgreSQL using Kubeapps. | |
DB_USERNAME: "admin" | |
# The DB_URL will be the same as the DNS displayed under "Installation Notes" | |
# section seen after deploying PostgreSQL using Kubeapps | |
DB_URL: "mlflow-tracking-server-database-postgresql.default.svc.cluster.local" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment