Last active
December 18, 2018 21:50
-
-
Save krsna1729/e30d825c090243c9cef81c4b9f83ae16 to your computer and use it in GitHub Desktop.
customize kubeadm using config file
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
--- | |
apiVersion: kubelet.config.k8s.io/v1beta1 | |
kind: KubeletConfiguration | |
maxPods: "2000" | |
--- | |
apiVersion: kubeadm.k8s.io/v1alpha3 | |
kind: ClusterConfiguration | |
kubernetesVersion: stable-1.11 | |
api: | |
bindPort: 443 | |
networking: | |
podSubnet: 10.244.0.0/16 | |
controllerManagerExtraArgs: | |
node-cidr-mask-size: "20" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment