Skip to content

Commit b6c8cf0

Browse files
committed
doc(readme): added helm chart instructions
1 parent bf376d3 commit b6c8cf0

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,18 @@ Since this operator uses Kubernetes Secrets, it is recommended that you follow [
3232
You’ll need a Kubernetes cluster to run against. You can use [KIND](https://sigs.k8s.io/kind) to get a local cluster for testing, or run against a remote cluster.
3333
**Note:** Your controller will automatically use the current context in your kubeconfig file (i.e. whatever cluster `kubectl cluster-info` shows).
3434

35+
### Helm Chart
36+
An Helm Chart is available to simplify installation, just add our helm chart repository, create a `values.yaml` from [the default values](https://github.com/Devolutions/dvls-kubernetes-operator/blob/master/chart/values.yaml) as a baseline and update values as necessary. Run `helm install` and add your `values.yaml`.
37+
The following values should be updated from your `values.yaml`
38+
- controllerManager.manager.env.devoOperatorDvlsBaseuri
39+
- controllerManager.manager.env.devoOperatorDvlsAppid
40+
- instanceSecret.secret
41+
```sh
42+
helm repo add devolutions-helm-charts https://devolutions.github.io/helm-charts
43+
helm repo update
44+
helm install dvls-kubernetes-operator devolutions-helm-charts/dvls-kubernetes-operator --values values.yaml
45+
```
46+
3547
### Running on the cluster
3648
1. Install Instances of Custom Resources:
3749

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/Devolutions/dvls-kubernetes-operator
33
go 1.19
44

55
require (
6-
github.com/Devolutions/go-dvls v0.4.0
6+
github.com/Devolutions/go-dvls v0.4.1
77
github.com/onsi/ginkgo/v2 v2.4.0
88
github.com/onsi/gomega v1.23.0
99
k8s.io/api v0.26.1

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ github.com/Azure/go-autorest/tracing v0.6.0 h1:TYi4+3m5t6K48TGI9AUdb+IzbnSxvnvUM
6262
github.com/Azure/go-autorest/tracing v0.6.0/go.mod h1:+vhtPC754Xsa23ID7GlGsrdKBpUA79WCAKPPZVC2DeU=
6363
github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
6464
github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo=
65-
github.com/Devolutions/go-dvls v0.4.0 h1:7zNbQ2LtfDIVTGiqVP3qntGPJCEadkgDXVaf0eIWdEI=
66-
github.com/Devolutions/go-dvls v0.4.0/go.mod h1:LWmMkJugG1/aUH5oXwHN13EvJC+YhvyKH/11pPecPtw=
65+
github.com/Devolutions/go-dvls v0.4.1 h1:2euUdRYFF54/VJRiGZ/toSXhwursngsJvkwbbp/Groc=
66+
github.com/Devolutions/go-dvls v0.4.1/go.mod h1:LWmMkJugG1/aUH5oXwHN13EvJC+YhvyKH/11pPecPtw=
6767
github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU=
6868
github.com/PuerkitoBio/purell v1.1.1 h1:WEQqlqaGbrPkxLJWfBwQmfEAE1Z7ONdDLqrN38tNFfI=
6969
github.com/PuerkitoBio/purell v1.1.1/go.mod h1:c11w/QuzBsJSee3cPx9rAFu61PvFxuPbtSwDGJws/X0=

0 commit comments

Comments
 (0)