Commit d67105d0 authored by Daniel Dreier's avatar Daniel Dreier

Fix fedora manual config getting started guide

Add a step to create /var/run/kubernetes. Without this step the kube-apiserver service is unable to create a self-signed SSL cert and fails to start.
parent 5bd82ffe
......@@ -129,6 +129,14 @@ KUBE_API_ARGS=""
ETCD_LISTEN_CLIENT_URLS="http://0.0.0.0:4001"
```
* Create /var/run/kubernetes on master:
```sh
mkdir /var/run/kubernetes
chown kube:kube /var/run/kubernetes
chmod 750 /var/run/kubernetes
```
* Start the appropriate services on master:
```sh
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment