Skip to content

Commit

Permalink
Fixed: Triton deployment tolerations placement fix (#325)
Browse files Browse the repository at this point in the history
Co-authored-by: fbrintazzoli <[email protected]>
  • Loading branch information
filippo-clearml and fbrintazzoli authored Sep 27, 2024
1 parent 02a87e1 commit 0866033
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions charts/clearml-serving/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ apiVersion: v2
name: clearml-serving
description: ClearML Serving Helm Chart
type: application
version: "1.5.7"
version: "1.5.8"
appVersion: "1.3.0"
kubeVersion: ">= 1.21.0-0 < 1.31.0-0"
kubeVersion: ">= 1.21.0-0 < 1.32.0-0"
home: https://clear.ml
icon: https://raw.githubusercontent.com/allegroai/clearml/master/docs/clearml-logo.svg
sources:
Expand Down Expand Up @@ -33,5 +33,5 @@ dependencies:
condition: grafana.enabled
annotations:
artifacthub.io/changes: |
- kind: changed
description: Updated README
- kind: fixed
description: Triton deployment tolerations placement fix
4 changes: 2 additions & 2 deletions charts/clearml-serving/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ClearML Kubernetes Serving

![Version: 1.5.7](https://img.shields.io/badge/Version-1.5.7-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.3.0](https://img.shields.io/badge/AppVersion-1.3.0-informational?style=flat-square)
![Version: 1.5.8](https://img.shields.io/badge/Version-1.5.8-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.3.0](https://img.shields.io/badge/AppVersion-1.3.0-informational?style=flat-square)

ClearML Serving Helm Chart

Expand Down Expand Up @@ -49,7 +49,7 @@ helm upgrade clearml-serving allegroai/clearml-serving --version <CURRENT CHART

## Requirements

Kubernetes: `>= 1.21.0-0 < 1.31.0-0`
Kubernetes: `>= 1.21.0-0 < 1.32.0-0`

| Repository | Name | Version |
|------------|------|---------|
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@ spec:
affinity:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.clearml_serving_triton.tolerations }}
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
containers:
- env:
- name: CLEARML_API_ACCESS_KEY
Expand Down Expand Up @@ -82,10 +86,6 @@ spec:
- name: additional-config
mountPath: /opt/clearml/config
{{- end }}
{{- with .Values.clearml_serving_triton.tolerations }}
tolerations:
{{- toYaml . | nindent 12 }}
{{- end }}
resources:
{{- toYaml .Values.clearml_serving_triton.resources | nindent 12 }}
restartPolicy: Always
Expand Down

0 comments on commit 0866033

Please sign in to comment.