33This 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.
77Installation 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+
1316To use your own container image, you can override values. Please refer to the
1417[ Container image] ( ../build/container-image.md ) section for instructions about
1518building container images with lockc. Let's assume that you pushed an image
1619with lockc to ` ttl.sh/caa530ed-1371-43f7-a9ad-293a4f930f83:30m ` . In that case,
1720installation 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
2629be 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