File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed
kubernetes/beginners/workshop/helm Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Installing Helm on PWK
2
+
3
+ ## Installing OpenSSL
4
+
5
+ ```
6
+ $ yum install -y openssl
7
+ ```
8
+
9
+ # Installing Helm
10
+
11
+ ```
12
+ $ curl https://raw.githubusercontent.com/helm/helm/master/scripts/get > get_helm.sh
13
+ $ chmod 700 get_helm.sh
14
+ $ ./get_helm.sh
15
+ ```
16
+
17
+ ## Initializing
18
+
19
+ ```
20
+ helm init
21
+ ```
22
+
23
+ ## Enabling RBAC
24
+
25
+ ```
26
+ kubectl --namespace kube-system create serviceaccount tiller
27
+ kubectl create clusterrolebinding tiller --clusterrole cluster-admin --serviceaccount=kube-system:tiller
28
+ kubectl patch deploy --namespace kube-system tiller-deploy -p '{"spec":{"template":{"spec":{"serviceAccount":"tiller"}}}}'
29
+ helm init --service-account tiller --upgrade
30
+ ```
31
+
32
+ ## Searching for Application
33
+
34
+ ```
35
+ helm search wordpress
36
+ ```
37
+
You can’t perform that action at this time.
0 commit comments