forked from kokuwaio/helm-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: André Bauer <[email protected]>
- Loading branch information
Showing
2 changed files
with
53 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# Visual Regression Tracker | ||
|
||
Visual Regression Tracker is a backend and frontend application for tracking differences via image comparison. This Helm chart installs a Kubernetes statefulset containing the UI and API components. | ||
|
||
If you want to run this chart with more than 1 replica, get sure you can use a [ReadWriteMany PVC](https://kubernetes.io/docs/concepts/storage/persistent-volumes/#access-modes), as the pods needs to share the imageUploads volume. | ||
|
||
## Add Helm Repository | ||
|
||
```console | ||
helm repo add kokuwa https://kokuwaio.github.io/helm-charts | ||
helm repo update | ||
``` | ||
|
||
_See [`helm repo`](https://helm.sh/docs/helm/helm_repo/) for command documentation._ | ||
|
||
## Install Chart | ||
|
||
```console | ||
helm install vrt kokuwa/visual-regression-tracker | ||
``` | ||
|
||
_See [configuration](#configuration) below._ | ||
|
||
_See [`helm install`](https://helm.sh/docs/helm/helm_install/) for command documentation._ | ||
|
||
## Configuration | ||
|
||
See [Customizing the Chart Before Installing](https://helm.sh/docs/intro/using_helm/#customizing-the-chart-before-installing). To see all configurable options with detailed comments, visit the chart's [values.yaml](./values.yaml), or run these configuration commands: | ||
|
||
```console | ||
helm show values kokuwa/visual-regression-tracker | ||
``` | ||
|
||
## Uninstall Chart | ||
|
||
```console | ||
helm uninstall vrt | ||
``` | ||
|
||
This removes all the Kubernetes components associated with the chart and deletes the release. | ||
|
||
_See [`helm uninstall`](https://helm.sh/docs/helm/helm_uninstall/) for command documentation._ | ||
|
||
## Upgrading the Helm Chart | ||
|
||
```console | ||
helm upgrade vrt kokuwa/visual-regression-tracker | ||
``` | ||
|
||
_See [`helm upgrade`](https://helm.sh/docs/helm/helm_upgrade/) for command documentation._ |