Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 1.02 KB

README.md

File metadata and controls

33 lines (25 loc) · 1.02 KB

Simple helm chart for CVAT

Features:

  • creates a superuser and store it in a secret for integration with other kubernetes resources
  • optionally uses zalando's postgres operator (see here)

Usage

See here for all configuration options

helm repo add cvat-helm https://sebagarayco.github.io/cvat-helm/

# list the versions available
helm search repo cvat-helm

# check what settings are available
helm inspect values cvat-helm/cvat-helm

# install
helm install cvat cvat-helm/cvat-helm \
        --namespace='cvat' --create-namespace \
        --set superUser.initialPassword=boo \
        --set ingress.host=cvat.com \
        --set ingress.clusterIssuer=letsencrypt-prod
        # optionally AWS
        --set ingress.certificateArn="<certificate_arn>" \
        --set ingress.cognitoEnabled="true" \
        --set ingress.cognitoUserPool="<poolId>" \
        --set ingress.cognitoUserPoolClient="<poolClient>" \
        --set ingress.cognitoUserPoolDomain="<poolDomain>"