Skip to content

Commit e53ebdc

Browse files
committed
ci: add more examples
1 parent 0ee12c5 commit e53ebdc

File tree

2 files changed

+65
-1
lines changed

2 files changed

+65
-1
lines changed
Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
ci: true # Not recommended for production
2+
3+
global:
4+
imagePullSecrets:
5+
- name: heartex-pull-key
6+
7+
image:
8+
repository: heartexlabs/label-studio-enterprise
9+
tag: "" # Get the latest version from https://docs.humansignal.com/guide/release_notes
10+
11+
# extraEnvironmentVars is a list of extra environment variables to set in the deployment, empty by default
12+
extraEnvironmentVars: {}
13+
# extraEnvironmentSecrets is a list of extra environment secrets to set in the deployment, empty by default
14+
extraEnvironmentSecrets: {}
15+
16+
enterpriseLicense:
17+
enabled: true
18+
enterpriseLicense:
19+
secretName: "lse-license"
20+
secretKey: "license"
21+
22+
app:
23+
# High Availability (HA) mode: adjust according to your resources
24+
replicas: 1
25+
# Ingress config for Label Studio
26+
ingress:
27+
enabled: true
28+
host: studio.yourdomain.com
29+
# You might need to set path to '/*' in order to use this with ALB ingress controllers.
30+
path: /*
31+
# Annotations required for your ingress controller, empty by default
32+
annotations: {}
33+
34+
# default compute resources run label studio enterprise for a basic installation. adjust according to your business needs:
35+
resources:
36+
requests:
37+
memory: 1024Mi
38+
cpu: 1000m
39+
limits:
40+
memory: 6144Mi
41+
cpu: 4000m
42+
43+
rqworker:
44+
# HA mode: adjust according to your business needs/resources
45+
queues:
46+
high:
47+
replicas: 2
48+
low:
49+
replicas: 2
50+
default:
51+
replicas: 2
52+
critical:
53+
replicas: 2
54+
all:
55+
replicas: 2
56+
57+
postgresql:
58+
enabled: true
59+
primary:
60+
persistence:
61+
enabled: true
62+
63+
redis:
64+
enabled: true

heartex/label-studio/example-values/label-studio-enterprise-external-db-and-redis.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ global:
44

55
image:
66
repository: heartexlabs/label-studio-enterprise
7-
tag: 2.3.1
7+
tag: "" # Get the latest version from https://docs.humansignal.com/guide/release_notes
88

99
pgConfig:
1010
# PostgreSql instance hostname

0 commit comments

Comments
 (0)