35 lines
687 B
YAML
35 lines
687 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
namespace: mlflow
|
|
|
|
resources:
|
|
- namespace.yaml
|
|
- minio-pvc.yaml
|
|
- minio-deployment.yaml
|
|
- minio-service.yaml
|
|
- minio-ingress.yaml
|
|
- mlflow-deployment.yaml
|
|
- mlflow-ingress.yaml
|
|
- mlflow-service.yaml
|
|
|
|
generators:
|
|
- secret-generator.yaml
|
|
|
|
helmCharts:
|
|
- name: postgresql
|
|
releaseName: postgresql
|
|
version: 15.5.5
|
|
repo: oci://registry-1.docker.io/bitnamicharts
|
|
namespace: mlflow
|
|
valuesInline:
|
|
auth:
|
|
enablePostgresUser: false
|
|
existingSecret: postgres-secret
|
|
username: mlflow
|
|
database: mlflow_db
|
|
primary:
|
|
persistence:
|
|
enabled: true
|
|
storageClass: retain-local-path
|
|
|