-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (39 loc) · 1001 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html>
<body>
<div align="center">
<h1>jpradoar - helm-repo</h1>
<p>A personal helm repo chart</a></p>
<img src="img/helm-logo.png" height="100" with="100">
</div>
<br><br>
<h3>Add this repo</h3>
<pre>helm repo add jpradoar https://jpradoar.github.io/helm-chart/ </pre>
<br>
<h3>Optional update repo</h3>
<pre>helm repo update</pre>
<br>
<h3>To see all charts</h3>
<pre>helm search repo jpradoar </pre>
<br>
<h3>Install a demo deployment</h3>
<pre>
helm upgrade -i -n superdemo --create-namespace superdemo jpradoar/demo
helm upgrade -i -n default --create-namespace demoapp jpradoar/domoticz \
--set general.name=democlient \
--set general.tz=America/Argentina/Buenos_Aires \
--set service.loadBalancer=None
</pre>
<br>
<h3>Delete demo depoyment</h3>
<pre>helm -n superdemo delete superdemo</pre>
<br>
<h3>Create new Helms (helm-chart)</h3>
<pre>
helm create demo
helm package demo/
mv demo-x.y.tgz charts/
helm repo index .
</pre>
</body>
</html>