diff --git a/charts/mlflow-server/Chart.yaml b/charts/mlflow-server/Chart.yaml index 7da76f3..e96e144 100644 --- a/charts/mlflow-server/Chart.yaml +++ b/charts/mlflow-server/Chart.yaml @@ -8,7 +8,7 @@ sources: - https://github.com/strangiato/helm-charts/tree/main/charts/mlflow-server - https://github.com/strangiato/mlflow-server -version: 0.6.3 +version: 0.6.4 appVersion: "2.10" icon: https://avatars.githubusercontent.com/u/39938107 diff --git a/charts/mlflow-server/templates/deployment.yaml b/charts/mlflow-server/templates/deployment.yaml index 4a7f7bb..5f86ecb 100644 --- a/charts/mlflow-server/templates/deployment.yaml +++ b/charts/mlflow-server/templates/deployment.yaml @@ -84,8 +84,10 @@ spec: name: {{ include "mlflow-server.fullname" . }} key: S3_ENDPOINT_URL {{ end }} + {{ if .Values.objectStorage.caBundle }} - name: AWS_CA_BUNDLE - value: /run/secrets/kubernetes.io/serviceaccount/service-ca.crt + value: .Values.objectStorage.caBundle + {{ end }} {{ if .Values.crunchyPostgres.enabled }} - name: PGBOUNCE_HOST valueFrom: diff --git a/charts/mlflow-server/values.yaml b/charts/mlflow-server/values.yaml index 32e2385..2d706e4 100644 --- a/charts/mlflow-server/values.yaml +++ b/charts/mlflow-server/values.yaml @@ -75,6 +75,8 @@ objectStorage: s3AccessKeyId: "" # -- S3 Secret Access Key if the objectBucketClaim is disabled s3SecretAccessKey: "" + # -- The CA bundle for the internal cluster certs. Set this value to "" for AWS S3. + caBundle: /run/secrets/kubernetes.io/serviceaccount/service-ca.crt crunchyPostgres: # -- Enable creation of a postgres instance using crunchyPostgres operator