diff --git a/charts/mlflow/custom-values.yaml b/charts/mlflow/custom-values.yaml new file mode 100644 index 0000000..d8bd94a --- /dev/null +++ b/charts/mlflow/custom-values.yaml @@ -0,0 +1,34 @@ +tracking: + auth: + username: mlflow + password: mlflow1234 + service: + type: ClusterIP + ingress: + enabled: true + pathType: ImplementationSpecific + hostname: mlflow.example.org + ingressClassName: "nginx" + annotations: + nginx.ingress.kubernetes.io/proxy-body-size: 2048m + # cert-manager 사용시 인증서 자동 생성 + cert-manager.io/cluster-issuer: "selfsigned-issuer" + cert-manager.io/duration: 8760h + cert-manager.io/renew-before: 720h + path: / + tls: false + extraTls: + - hosts: + - mlflow.example.org + secretName: mlflow-tls-secret + extraArgs: + - "--gunicorn-opts=--timeout 600" +postgresql: + auth: + username: mlflow + password: mlflow1234 +minio: + enabled: true + auth: + rootUser: admin + rootPassword: admin1234 \ No newline at end of file