Files
matchbox/examples/groups/bootkube/node3.json
Dalton Hubble e194bf0355 examples/bootkube: Use DNS names for self-hosted Kubernetes
* Self-hosted Kuberntes api-server comes up without a hostname
override and detects the hostname it should use from `uname -n`
* kube-apiserver name must correspond to routable kubelet
hostname-override
* Provision /etc/hostname with the FQDN so `uname -n` can be
used by Kubernetes (until NODE_NAME is avail. in k8s 1.4)
2016-08-25 00:42:08 -07:00

21 lines
510 B
JSON

{
"id": "node3",
"name": "Worker Node",
"profile": "bootkube-worker",
"selector": {
"mac": "52:54:00:c3:61:77"
},
"metadata": {
"domain_name": "node3.example.com",
"etcd_initial_cluster": "node1=http://node1.example.com:2380",
"k8s_controller_endpoint": "https://node1.example.com:443",
"k8s_dns_service_ip": "10.3.0.10",
"k8s_pod_network": "10.2.0.0/16",
"k8s_service_ip_range": "10.3.0.0/24",
"pxe": "true",
"ssh_authorized_keys": [
"ADD ME"
]
}
}