31 lines
693 B
YAML
31 lines
693 B
YAML
tracking:
|
|
auth:
|
|
enabled: false
|
|
service:
|
|
type: ClusterIP
|
|
ingress:
|
|
enabled: true
|
|
pathType: ImplementationSpecific
|
|
hostname: mlflow.example.org
|
|
annotations:
|
|
# 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 |