Skip to content

Commit

Permalink
Merge pull request #5 from MetroStar/0.0.10_fixes
Browse files Browse the repository at this point in the history
0.0.10 hotfix
  • Loading branch information
sblair-metrostar authored Jan 2, 2024
2 parents 9650537 + fe2757d commit 0cca99a
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion src/nebari_plugin_mlflow_aws/__about__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.0.9"
__version__ = "0.0.10"
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.2.0
version: 1.2.1

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ image:
repository: ghcr.io/metrostar/nebari-mlflow-aws
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: "2.9.2-20231229-1941"
tag: ""

imagePullSecrets: []
nameOverride: ""
Expand Down
10 changes: 5 additions & 5 deletions src/nebari_plugin_mlflow_aws/terraform/modules/mlflow/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@ resource "helm_release" "mlflow" {
artifactsDestination = "s3://${var.s3_bucket_name}"
proxyArtifacts = "true"
}
}
db = {
dbName = "mlflow_db"
username = "mlflow_user"
password = random_password.mlflow_postgres.result
db = {
dbName = "mlflow_db"
username = "mlflow_user"
password = random_password.mlflow_postgres.result
}
}
env = [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ variable "mlflow_sa_iam_role_arn" {
}

variable "overrides" {
type = map(any)
type = any
default = {}
}
2 changes: 1 addition & 1 deletion src/nebari_plugin_mlflow_aws/terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ variable "namespace" {
}

variable "overrides" {
type = map(any)
type = any
default = {}
}

Expand Down

0 comments on commit 0cca99a

Please sign in to comment.