templates.deployment.mlflow.mlflow.ingress.yaml.vm Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of foundation-mda Show documentation
Show all versions of foundation-mda Show documentation
Model driven architecture artifacts for aiSSEMBLE
The newest version!
{{ if .Values.ingress.enabled }}
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: mlflow
{{- with .Values.ingressmlflow.metadata.annotations }}
annotations:
{{- toYaml . | nindent 8 }}
{{- end }}
spec:
rules:
{{- range .Values.ingress.hosts }}
- host: {{ .host | quote }}
http:
paths:
{{- range .paths }}
- path: {{ .path }}
pathType: {{ .pathType }}
backend:
service:
name: {{ .backend.service.name }}
port:
number: {{ .backend.service.port.number }}
{{- end }}
{{- end }}
{{ if .Values.ingress.status }}
status:
loadBalancer:
ingress:
- ip: {{ .Values.ingress.status }}
{{ end }}
{{ end }}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy