Created
June 28, 2019 12:09
-
-
Save kprasad99/371575790a3b25c3c24adf55b07c9cda to your computer and use it in GitHub Desktop.
This file contains 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: kubeadm.k8s.io/v1beta2 | |
bootstrapTokens: | |
- groups: | |
- system:bootstrappers:kubeadm:default-node-token | |
token: abcdef.0123456789abcdef | |
ttl: 24h0m0s | |
usages: | |
- signing | |
- authentication | |
kind: InitConfiguration | |
localAPIEndpoint: | |
advertiseAddress: 192.168.56.112 | |
bindPort: 6443 | |
nodeRegistration: | |
criSocket: /var/run/dockershim.sock | |
name: k8s-master | |
taints: | |
- effect: NoSchedule | |
key: node-role.kubernetes.io/master | |
--- | |
apiServer: | |
timeoutForControlPlane: 4m0s | |
apiVersion: kubeadm.k8s.io/v1beta2 | |
certificatesDir: /etc/kubernetes/pki | |
clusterName: kubernetes | |
controllerManager: {} | |
dns: | |
type: CoreDNS | |
etcd: | |
local: | |
dataDir: /var/lib/etcd | |
imageRepository: k8s.gcr.io | |
kind: ClusterConfiguration | |
kubernetesVersion: v1.15.0 | |
networking: | |
dnsDomain: cluster.local | |
serviceSubnet: 10.96.0.0/12 | |
podSubnet: 10.244.0.0/16 | |
scheduler: {} | |
--- | |
apiVersion: kubeproxy.config.k8s.io/v1alpha1 | |
kind: KubeProxyConfiguration | |
bindAddress: 0.0.0.0 | |
mode: ipvs | |
ipvs: | |
scheduler: sed |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment