@@ -10,8 +10,9 @@ This chart is community maintained by [@Matthew-Beckett](https://github.com/Matt
10
10
## TL;DR;
11
11
12
12
``` console
13
- $ git clone https://github.com/cdr/code-server.git
14
- $ helm install code-server charts/code-server
13
+ $ git clone https://github.com/cdr/code-server
14
+ $ cd code-server
15
+ $ helm upgrade --install code-server ci/helm-chart
15
16
```
16
17
17
18
## Introduction
@@ -26,10 +27,12 @@ package manager.
26
27
27
28
## Installing the Chart
28
29
29
- To install the chart with the release name ` my-release ` :
30
+ To install the chart with the release name ` code-server ` :
30
31
31
32
``` console
32
- $ helm install --name my-release charts/code-server
33
+ $ git clone https://github.com/cdr/code-server
34
+ $ cd code-server
35
+ $ helm upgrade --install code-server ci/helm-chart
33
36
```
34
37
35
38
The command deploys code-server on the Kubernetes cluster in the default
@@ -40,10 +43,10 @@ that can be configured during installation.
40
43
41
44
## Uninstalling the Chart
42
45
43
- To uninstall/delete the ` my-release ` deployment:
46
+ To uninstall/delete the ` code-server ` deployment:
44
47
45
48
``` console
46
- $ helm delete my-release
49
+ $ helm delete code-server
47
50
```
48
51
49
52
The command removes all the Kubernetes components associated with the chart and
@@ -97,9 +100,9 @@ Specify each parameter using the `--set key=value[,key=value]` argument to `helm
97
100
install`. For example,
98
101
99
102
``` console
100
- $ helm install --name my-release \
101
- --set persistence.enabled=false \
102
- deployment/chart
103
+ $ helm install code-server \
104
+ ci/helm-chart \
105
+ --set persistence.enabled=false
103
106
```
104
107
105
108
The above command sets the the persistence storage to false.
@@ -108,7 +111,7 @@ Alternatively, a YAML file that specifies the values for the above parameters
108
111
can be provided while installing the chart. For example,
109
112
110
113
``` console
111
- $ helm install --name my-release -f values.yaml deployment/chart
114
+ $ helm install code-server ci/helm-chart -f values.yaml
112
115
```
113
116
114
117
> ** Tip** : You can use the default [ values.yaml] ( values.yaml )
0 commit comments