mirror of
https://github.com/clearml/clearml-helm-charts
synced 2025-04-17 01:31:13 +00:00
update ingress templates to accept per-service annotation overrides (#48)
* update ingress yamls to accept annotation overrides * bump version to 3.3.1 * update readme via helm-docs
This commit is contained in:
parent
70b07c637a
commit
078e394e24
@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
name: clearml
|
name: clearml
|
||||||
description: MLOps platform
|
description: MLOps platform
|
||||||
type: application
|
type: application
|
||||||
version: "3.3.0"
|
version: "3.3.1"
|
||||||
appVersion: "1.1.1"
|
appVersion: "1.1.1"
|
||||||
home: https://clear.ml
|
home: https://clear.ml
|
||||||
icon: https://raw.githubusercontent.com/allegroai/clearml/master/docs/clearml-logo.svg
|
icon: https://raw.githubusercontent.com/allegroai/clearml/master/docs/clearml-logo.svg
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# ClearML Ecosystem for Kubernetes
|
# ClearML Ecosystem for Kubernetes
|
||||||
|
|
||||||
  
|
  
|
||||||
|
|
||||||
MLOps platform
|
MLOps platform
|
||||||
|
|
||||||
@ -268,11 +268,14 @@ For detailed instructions, see the [Optional Configuration](https://github.com/a
|
|||||||
| fileserver.storage.data.size | string | `"50Gi"` | |
|
| fileserver.storage.data.size | string | `"50Gi"` | |
|
||||||
| fileserver.tolerations | list | `[]` | |
|
| fileserver.tolerations | list | `[]` | |
|
||||||
| ingress.annotations | object | `{}` | |
|
| ingress.annotations | object | `{}` | |
|
||||||
|
| ingress.api.annotations | object | `{}` | |
|
||||||
| ingress.api.hostName | string | `"api.clearml.127-0-0-1.nip.io"` | |
|
| ingress.api.hostName | string | `"api.clearml.127-0-0-1.nip.io"` | |
|
||||||
| ingress.api.tlsSecretName | string | `""` | |
|
| ingress.api.tlsSecretName | string | `""` | |
|
||||||
|
| ingress.app.annotations | object | `{}` | |
|
||||||
| ingress.app.hostName | string | `"app.clearml.127-0-0-1.nip.io"` | |
|
| ingress.app.hostName | string | `"app.clearml.127-0-0-1.nip.io"` | |
|
||||||
| ingress.app.tlsSecretName | string | `""` | |
|
| ingress.app.tlsSecretName | string | `""` | |
|
||||||
| ingress.enabled | bool | `false` | |
|
| ingress.enabled | bool | `false` | |
|
||||||
|
| ingress.files.annotations | object | `{}` | |
|
||||||
| ingress.files.hostName | string | `"files.clearml.127-0-0-1.nip.io"` | |
|
| ingress.files.hostName | string | `"files.clearml.127-0-0-1.nip.io"` | |
|
||||||
| ingress.files.tlsSecretName | string | `""` | |
|
| ingress.files.tlsSecretName | string | `""` | |
|
||||||
| ingress.name | string | `"clearml-server-ingress"` | |
|
| ingress.name | string | `"clearml-server-ingress"` | |
|
||||||
|
@ -11,10 +11,13 @@ metadata:
|
|||||||
name: {{ include "clearml.fullname" . }}-api
|
name: {{ include "clearml.fullname" . }}-api
|
||||||
labels:
|
labels:
|
||||||
{{- include "clearml.labels" . | nindent 4 }}
|
{{- include "clearml.labels" . | nindent 4 }}
|
||||||
{{- with .Values.ingress.annotations }}
|
{{- $annotations := .Values.ingress.annotations }}
|
||||||
annotations:
|
{{- if .Values.ingress.api.annotations }}
|
||||||
{{- toYaml . | nindent 4 }}
|
{{- $annotations = mergeOverwrite $annotations .Values.ingress.api.annotations }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
annotations:
|
||||||
|
{{- toYaml $annotations | nindent 4 }}
|
||||||
|
|
||||||
spec:
|
spec:
|
||||||
{{- if .Values.ingress.api.tlsSecretName }}
|
{{- if .Values.ingress.api.tlsSecretName }}
|
||||||
tls:
|
tls:
|
||||||
|
@ -11,10 +11,12 @@ metadata:
|
|||||||
name: {{ include "clearml.fullname" . }}-app
|
name: {{ include "clearml.fullname" . }}-app
|
||||||
labels:
|
labels:
|
||||||
{{- include "clearml.labels" . | nindent 4 }}
|
{{- include "clearml.labels" . | nindent 4 }}
|
||||||
{{- with .Values.ingress.annotations }}
|
{{- $annotations := .Values.ingress.annotations }}
|
||||||
annotations:
|
{{- if .Values.ingress.app.annotations }}
|
||||||
{{- toYaml . | nindent 4 }}
|
{{- $annotations = mergeOverwrite $annotations .Values.ingress.app.annotations }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
annotations:
|
||||||
|
{{- toYaml $annotations | nindent 4 }}
|
||||||
spec:
|
spec:
|
||||||
{{- if .Values.ingress.app.tlsSecretName }}
|
{{- if .Values.ingress.app.tlsSecretName }}
|
||||||
tls:
|
tls:
|
||||||
|
@ -11,10 +11,12 @@ metadata:
|
|||||||
name: {{ include "clearml.fullname" . }}-files
|
name: {{ include "clearml.fullname" . }}-files
|
||||||
labels:
|
labels:
|
||||||
{{- include "clearml.labels" . | nindent 4 }}
|
{{- include "clearml.labels" . | nindent 4 }}
|
||||||
{{- with .Values.ingress.annotations }}
|
{{- $annotations := .Values.ingress.annotations }}
|
||||||
annotations:
|
{{- if .Values.ingress.files.annotations }}
|
||||||
{{- toYaml . | nindent 4 }}
|
{{- $annotations = mergeOverwrite $annotations .Values.ingress.files.annotations }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
annotations:
|
||||||
|
{{- toYaml $annotations | nindent 4 }}
|
||||||
spec:
|
spec:
|
||||||
{{- if .Values.ingress.files.tlsSecretName }}
|
{{- if .Values.ingress.files.tlsSecretName }}
|
||||||
tls:
|
tls:
|
||||||
|
@ -7,12 +7,15 @@ ingress:
|
|||||||
app:
|
app:
|
||||||
hostName: "app.clearml.127-0-0-1.nip.io"
|
hostName: "app.clearml.127-0-0-1.nip.io"
|
||||||
tlsSecretName: ""
|
tlsSecretName: ""
|
||||||
|
annotations: {}
|
||||||
api:
|
api:
|
||||||
hostName: "api.clearml.127-0-0-1.nip.io"
|
hostName: "api.clearml.127-0-0-1.nip.io"
|
||||||
tlsSecretName: ""
|
tlsSecretName: ""
|
||||||
|
annotations: {}
|
||||||
files:
|
files:
|
||||||
hostName: "files.clearml.127-0-0-1.nip.io"
|
hostName: "files.clearml.127-0-0-1.nip.io"
|
||||||
tlsSecretName: ""
|
tlsSecretName: ""
|
||||||
|
annotations: {}
|
||||||
|
|
||||||
secret:
|
secret:
|
||||||
# -- Set for http_session field
|
# -- Set for http_session field
|
||||||
|
Loading…
Reference in New Issue
Block a user