Skip to content

Commit

Permalink
make ca bundle a settable value (#24)
Browse files Browse the repository at this point in the history
* make ca bundle a settable value

* bump chart version
  • Loading branch information
strangiato authored Apr 1, 2024
1 parent 9242bc6 commit b3465c5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/mlflow-server/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion charts/mlflow-server/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 2 additions & 0 deletions charts/mlflow-server/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b3465c5

Please sign in to comment.