Skip to content

Commit 7e6609e

Browse files
authored
Create getting-started.md
1 parent 3930e31 commit 7e6609e

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
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+

0 commit comments

Comments
 (0)