Skip to content
This repository has been archived by the owner on Jan 23, 2024. It is now read-only.

Commit

Permalink
version 0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
kervel committed Nov 20, 2021
1 parent 24ab50c commit a0fd3d2
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
6 changes: 3 additions & 3 deletions charts/cvat-helm/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: cvat-helm
description: A Helm chart for Kubernetes
description: A Helm chart for CVAT

# A chart can be either an 'application' or a 'library' chart.
#
Expand All @@ -15,10 +15,10 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.3
version: 0.1.4

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "1.16.0"
appVersion: "1.7.0"
3 changes: 3 additions & 0 deletions charts/cvat-helm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
* `superUser.initialPassword` the superuser initial password to create
* `superUser.email` the email address of the super user

Note that this chart will always create another superuser with a dynamically generated password. The generated credentials will be stored in a kubernetes secret called `cvat-superuser`.
This is useful if you have other pods that need to access the CVAT API.

* `ingress.host` the public hostname for ingress
* `ingress.clusterIssuer` the cluster issuer for ingress

Expand Down
2 changes: 1 addition & 1 deletion charts/cvat-helm/templates/cvat-init-create-users.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
restartPolicy: OnFailure
containers:
- name: cvat
image: openvino/cvat_server
image: openvino/cvat_server:v{{ .Chart.AppVersion }}
env:
- name: "CVAT_REDIS_HOST"
value: 'cvat-redis'
Expand Down
2 changes: 1 addition & 1 deletion charts/cvat-helm/templates/cvat-ui.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
spec:
containers:
- name: cvat-ui
image: openvino/cvat_ui
image: openvino/cvat_ui:v{{ .Chart.AppVersion }}
ports:
- containerPort: 80
name: http
Expand Down
2 changes: 1 addition & 1 deletion charts/cvat-helm/templates/cvat.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
fsGroup: 1000
containers:
- name: cvat
image: openvino/cvat_server
image: openvino/cvat_server:v{{ .Chart.AppVersion }}
env:
- name: "DJANGO_MODWSGI_EXTRA_ARGS"
value: ''
Expand Down

0 comments on commit a0fd3d2

Please sign in to comment.