Skip to content

Latest commit

 

History

History
51 lines (40 loc) · 1.44 KB

FAQs.md

File metadata and controls

51 lines (40 loc) · 1.44 KB

Frequently Asked Questions (FAQs)

Label Studio Enterprise: Upgrade from decommissioned label-studio-enterprise Helm chart

Edit your lse-values.yaml file.

  1. Add global.image.repository and set global.image.tag to a version equal or newer 2.3.1:
global:
  image:
    repository: heartexlabs/label-studio-enterprise
    tag: 2.3.1
  1. Move global.enterpriseLicense and all sub-keys to enterprise (so enterprise will on the same level as global, app or rqworker) and set enterprise.enabled to true:
enterprise:
  enabled: true
  enterpriseLicense:
    secretName: "lse-license"
    secretKey: "license"
  1. Disable self-provisioned SQL instance:
postgresql:
  enabled: false
  1. Completely remove properties app.logLevel, app.debug, rqworker.logLevel, rqworker.debug, minio.*.

  2. Set app.ingress.enabled to true:

app:
  ingress:
    enabled: true
  1. Get the current release name using helm list command.
  2. Run upgrade command using new helm chart:
helm upgrade RELEASE_NAME heartex/label-studio -f lse-values.yaml

Error: UPGRADE FAILED: failed to create resource: admission webhook "validate.nginx.ingress.kubernetes.io" denied the request: host "xxx" and path "/" is already defined in ingress kube-system/xxx-lse-app

Remove ValidatingWebhookConfiguration resource:

kubectl delete -A ValidatingWebhookConfiguration ingress-nginx-admission