Skip to content

Instantly share code, notes, and snippets.

@AahanSingh
Created October 20, 2021 09:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AahanSingh/764289f145dc943dd1e9b5cf3458b381 to your computer and use it in GitHub Desktop.
Save AahanSingh/764289f145dc943dd1e9b5cf3458b381 to your computer and use it in GitHub Desktop.
MLFlow configmap
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