mirror of
https://github.com/clearml/clearml-helm-charts
synced 2025-02-12 07:26:14 +00:00
193 after upgrade to the new chart version error (#194)
* Fixed: agent selector label * Changed: version bump
This commit is contained in:
parent
4e3169c033
commit
27b52fa5b3
@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
name: clearml-agent
|
name: clearml-agent
|
||||||
description: MLOps platform Task running agent
|
description: MLOps platform Task running agent
|
||||||
type: application
|
type: application
|
||||||
version: "4.0.2"
|
version: "4.0.3"
|
||||||
appVersion: "1.24"
|
appVersion: "1.24"
|
||||||
kubeVersion: ">= 1.21.0-0 < 1.27.0-0"
|
kubeVersion: ">= 1.21.0-0 < 1.27.0-0"
|
||||||
home: https://clear.ml
|
home: https://clear.ml
|
||||||
@ -21,6 +21,4 @@ keywords:
|
|||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- kind: fixed
|
- kind: fixed
|
||||||
description: extra envs in base pod template
|
description: wrong selector for agent
|
||||||
- kind: fixed
|
|
||||||
description: fullname usage
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# ClearML Kubernetes Agent
|
# ClearML Kubernetes Agent
|
||||||
|
|
||||||
![Version: 4.0.2](https://img.shields.io/badge/Version-4.0.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.24](https://img.shields.io/badge/AppVersion-1.24-informational?style=flat-square)
|
![Version: 4.0.3](https://img.shields.io/badge/Version-4.0.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.24](https://img.shields.io/badge/AppVersion-1.24-informational?style=flat-square)
|
||||||
|
|
||||||
MLOps platform Task running agent
|
MLOps platform Task running agent
|
||||||
|
|
||||||
|
@ -45,6 +45,21 @@ app.kubernetes.io/managed-by: {{ .Release.Service }}
|
|||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
||||||
|
{{/*
|
||||||
|
Common labels (agentk8sglue)
|
||||||
|
*/}}
|
||||||
|
{{- define "agentk8sglue.labels" -}}
|
||||||
|
helm.sh/chart: {{ include "clearmlAgent.chart" . }}
|
||||||
|
{{ include "agentk8sglue.selectorLabels" . }}
|
||||||
|
{{- if .Chart.AppVersion }}
|
||||||
|
app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
|
||||||
|
{{- end }}
|
||||||
|
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
||||||
|
{{- if $.Values.agentk8sglue.labels }}
|
||||||
|
{{ toYaml $.Values.agentk8sglue.labels }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
{{/*
|
{{/*
|
||||||
Common annotations
|
Common annotations
|
||||||
*/}}
|
*/}}
|
||||||
|
@ -3,7 +3,7 @@ kind: Deployment
|
|||||||
metadata:
|
metadata:
|
||||||
name: {{ include "clearmlAgent.fullname" . }}
|
name: {{ include "clearmlAgent.fullname" . }}
|
||||||
labels:
|
labels:
|
||||||
{{- include "clearmlAgent.labels" . | nindent 4 }}
|
{{- include "agentk8sglue.labels" . | nindent 4 }}
|
||||||
annotations:
|
annotations:
|
||||||
{{- include "clearmlAgent.annotations" . | nindent 4 }}
|
{{- include "clearmlAgent.annotations" . | nindent 4 }}
|
||||||
spec:
|
spec:
|
||||||
@ -17,7 +17,7 @@ spec:
|
|||||||
checksum/config: {{ printf "%s" .Values | sha256sum }}
|
checksum/config: {{ printf "%s" .Values | sha256sum }}
|
||||||
{{- include "clearmlAgent.annotations" . | nindent 8 }}
|
{{- include "clearmlAgent.annotations" . | nindent 8 }}
|
||||||
labels:
|
labels:
|
||||||
{{- include "clearmlAgent.labels" . | nindent 8 }}
|
{{- include "agentk8sglue.labels" . | nindent 8 }}
|
||||||
spec:
|
spec:
|
||||||
{{- if .Values.imageCredentials.enabled }}
|
{{- if .Values.imageCredentials.enabled }}
|
||||||
imagePullSecrets:
|
imagePullSecrets:
|
||||||
|
Loading…
Reference in New Issue
Block a user