Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

heartex/label-studio: PLT-687: Add deploymentAnnotations for rqworkers #62

Merged
merged 2 commits into from
Mar 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions heartex/label-studio/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# Changelog

## 1.9.7
### Improvements
* Add deployment annotations for rq workers using `.Values.rqworker.deploymentAnnotations`.

## 1.9.6
### Fixes
* Add `scheme` field to readinessProbe and livenessProbe for nginx container.
Expand Down
2 changes: 1 addition & 1 deletion heartex/label-studio/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ home: https://labelstud.io/
type: application
icon: https://raw.githubusercontent.com/heartexlabs/label-studio/master/images/logo.png
# Chart version
version: 1.9.6
version: 1.9.7
# Label Studio release version
appVersion: "1.16.0"
kubeVersion: ">= 1.14.0-0"
Expand Down
4 changes: 4 additions & 0 deletions heartex/label-studio/templates/rqworker-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ include "ls-rqworker.fullname" $ }}-{{ $queue_name }}
{{- with .Values.rqworker.deploymentAnnotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
labels:
app.kubernetes.io/name: {{ include "ls-rqworker.name" $ }}-{{ $queue_name }}
{{- include "ls-rqworker.labels" $ | nindent 4 }}
Expand Down
4 changes: 4 additions & 0 deletions heartex/label-studio/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -831,6 +831,10 @@
},
"additionalProperties": true
},
"deploymentAnnotations": {
"type": "object",
"additionalProperties": true
},
"queues": {
"type": "object",
"properties": {
Expand Down
2 changes: 2 additions & 0 deletions heartex/label-studio/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -414,6 +414,8 @@ rqworker:
deploymentStrategy:
type: Recreate

deploymentAnnotations: { }

queues:
high:
replicas: 1
Expand Down