Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions docs/Manual/Tutorials/Kubernetes/bare-metal.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ sudo chown $(id -u):$(id -g) $HOME/.kube/config
For this guide, we go with **flannel**, as it is an easy way of setting up a layer 3 network, which uses the Kubernetes API and just works anywhere, where a network between the involved machines works:

```
kubectl apply -f \
https://raw.githubusercontent.com/coreos/flannel/bc79dd1505b0c8681ece4de4c0d86c5cd2643275/Documentation/kube-flannel.yml
kubectl apply -f \
https://raw.githubusercontent.com/coreos/flannel/bc79dd1505b0c8681ece4de4c0d86c5cd2643275/Documentation/kube-flannel.yml
```
```
clusterrole.rbac.authorization.k8s.io/flannel created
Expand Down Expand Up @@ -220,8 +220,8 @@ kubectl get all --all-namespaces
- Attach `tiller` to proper role

```
kubectl create clusterrolebinding tiller-cluster-rule \
--clusterrole=cluster-admin --serviceaccount=kube-system:tiller
kubectl create clusterrolebinding tiller-cluster-rule \
--clusterrole=cluster-admin --serviceaccount=kube-system:tiller
```
```
clusterrolebinding.rbac.authorization.k8s.io/tiller-cluster-rule created
Expand Down Expand Up @@ -330,7 +330,7 @@ for how to get started.
- As unlike cloud k8s offerings no file volume infrastructure exists, we need to still deploy the storage operator chart:

```
helm install \
helm install \
https://github.com/arangodb/kube-arangodb/releases/download/0.3.7/kube-arangodb-storage.tgz
```
```
Expand Down