You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**3. Username in environment variables + password in secret**. Use this when:
347
+
* Redis v.7 or later, and with ACL-enabled users
348
+
* You want to keep the password secret but still specify a username
349
+
350
+
```yaml
351
+
global:
352
+
redisConfig:
353
+
host: "redis://redis.example.com:6379/1"
354
+
password:
355
+
secretName: "my-redis-secret" # Kubernetes Secret name
356
+
secretKey: "redis-password" # Key inside Secret
357
+
extraEnvironmentVars:
358
+
REDIS_USERNAME: "myuser" # Injected into pod env
359
+
```
360
+
316
361
## Use Helm to install Label Studio Enterprise on your Kubernetes cluster
317
362
318
363
Use Helm to install Label Studio Enterprise on your Kubernetes cluster. Provide your custom resource definitions YAML file. Specify any environment variables that you need to set for your Label Studio Enterprise installation using the `--set` argument with the `helm install` command.
0 commit comments