Skip to content

Commit 9f14603

Browse files
committed
Update lockc installation on Kubernetes
1 parent a062689 commit 9f14603

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

docs/src/install/kubernetes.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,24 @@
33
This section explains how to install lockc on a Kubernetes cluster with
44
[helm](https://helm.sh/).
55

6-
The helm chart is available in lockc git repository / source code.
6+
The helm chart is available on [lockc-helm-chart](https://github.com/rancher-sandbox/lockc-helm-charts) git repository.
77
Installation with default values can be done with:
88

99
```bash
10-
helm install lockc contrib/helm/lockc/ --namespace kube-system
10+
repo add lockc https://rancher-sandbox.github.io/lockc-helm-charts/
11+
helm install install --create-namespace -n lockc lockc lockc/lockc
1112
```
1213

14+
More info on lockc helm chart installation can be found [here](https://rancher-sandbox.github.io/lockc-helm-charts)
15+
1316
To use your own container image, you can override values. Please refer to the
1417
[Container image](../build/container-image.md) section for instructions about
1518
building container images with lockc. Let's assume that you pushed an image
1619
with lockc to `ttl.sh/caa530ed-1371-43f7-a9ad-293a4f930f83:30m`. In that case,
1720
installation with that image can be done with the following command:
1821

1922
```bash
20-
helm install lockc contrib/helm/lockc/ --namespace kube-system \
23+
helm install lockc lockc/lockc --namespace lockc \
2124
--set lockcd.image.repository=ttl.sh/caa530ed-1371-43f7-a9ad-293a4f930f83 \
2225
--set lockcd.image.tag=30m
2326
```
@@ -26,7 +29,7 @@ Enabling debug logs can be helpful for troubleshooting or development. That can
2629
be done with the following command:
2730

2831
```bash
29-
helm install lockc contrib/helm/lockc/ --namespace kube-system \
32+
helm install lockc lockc/lockc/ --namespace lockc \
3033
--set lockcd.image.repository=ttl.sh/caa530ed-1371-43f7-a9ad-293a4f930f83 \
3134
--set lockcd.image.tag=30m \
3235
--set lockcd.debug.enabled=true

0 commit comments

Comments
 (0)