# https://kubernetes.io/docs/getting-started-guides/fedora/fedora_manual_config/
dnf install kubernetes
Last active
May 16, 2018 18:39
-
-
Save loa/9b1d30ae1e61601ddc98e8f392a53fb7 to your computer and use it in GitHub Desktop.
Kubernetes Fedora Single node
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /etc/kubernetes/kubelet | |
KUBELET_ARGS="--cgroup-driver=systemd --fail-swap-on=false --kubeconfig=/var/lib/kubelet/kubelet.kubeconfig" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://github.com/kubernetes/kubernetes/issues/58217#issuecomment-364450818 | |
apiVersion: v1 | |
kind: Config | |
clusters: | |
- cluster: | |
server: http://127.0.0.1:8080/ | |
name: local | |
contexts: | |
- context: | |
cluster: local | |
name: local | |
current-context: local |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment