mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-05 02:09:56 +00:00
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.
This commit is contained in:
parent
5bd82ffe6d
commit
d67105d05a
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user