Skip to content

Commit

Permalink
added vrt readme
Browse files Browse the repository at this point in the history
Signed-off-by: André Bauer <[email protected]>
  • Loading branch information
monotek committed Jul 20, 2022
1 parent 2057327 commit c6500e7
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 2 deletions.
5 changes: 3 additions & 2 deletions charts/visual-regression-tracker/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
apiVersion: v2
name: visual-regression-tracker
description: A Helm chart for Visual Regression Tracker
description: Backend and Frontend application for tracking differences via image comparison
home: https://visual-regression-tracker.com
sources:
- https://github.com/Visual-Regression-Tracker/Visual-Regression-Tracker
- https://github.com/kokuwaio/helm-charts/tree/main/charts/visual-regression-tracker
type: application
version: 0.3.0
version: 0.3.1
appVersion: "4.20.4"
maintainers:
- name: monotek
Expand Down
50 changes: 50 additions & 0 deletions charts/visual-regression-tracker/README.md
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._

0 comments on commit c6500e7

Please sign in to comment.