2014-09-12 22:53:32 +00:00
##Getting started on [Fedora](http://fedoraproject.org)
2014-10-28 18:43:39 +00:00
This is a getting started guide for Fedora. It is a manual configuration so you understand all the underlying packages / services / ports, etc...
2015-03-19 11:19:16 +00:00
This guide will only get ONE minion working. Multiple minions require a functional [networking configuration ](https://github.com/GoogleCloudPlatform/kubernetes/blob/master/docs/networking.md ) done outside of kubernetes. Although the additional kubernetes configuration requirements should be obvious.
2014-10-28 18:43:39 +00:00
2015-03-19 11:19:16 +00:00
The kubernetes package provides a few services: kube-apiserver, kube-scheduler, kube-controller-manager, kubelet, kube-proxy. These services are managed by systemd and the configuration resides in a central location: /etc/kubernetes. We will break the services up between the hosts. The first host, fed-master, will be the kubernetes master. This host will run the kube-apiserver, kube-controller-manager, and kube-scheduler. In addition, the master will also run _etcd_ (not needed if _etcd_ runs on a different host but this guide assumes that _etcd_ and kubernetes master run on the same host). The remaining host, fed-minion will be the minion and run kubelet, proxy and docker.
2014-09-12 22:53:32 +00:00
**System Information:**
Hosts:
```
2014-10-21 21:37:44 +00:00
fed-master = 192.168.121.9
fed-minion = 192.168.121.65
2014-09-12 22:53:32 +00:00
```
**Prepare the hosts:**
2015-03-19 11:19:16 +00:00
* Install kubernetes on all hosts - fed-{master,minion}. This will also pull in etcd and docker. This guide has been tested with kubernetes-0.12.0 but should work with later versions too.
2014-09-12 22:53:32 +00:00
```
2014-10-21 21:37:44 +00:00
yum -y install --enablerepo=updates-testing kubernetes
2014-09-12 22:53:32 +00:00
```
2015-03-19 11:19:16 +00:00
* Add master and minion to /etc/hosts on all machines (not needed if hostnames already in DNS). Make sure that communication works between fed-master and fed-minion by using a utility such as ping.
2014-09-12 22:53:32 +00:00
```
2014-10-21 21:37:44 +00:00
echo "192.168.121.9 fed-master
192.168.121.65 fed-minion" >> /etc/hosts
2014-09-12 22:53:32 +00:00
```
2014-12-11 03:03:33 +00:00
* Edit /etc/kubernetes/config which will be the same on all hosts to contain:
2014-09-12 22:53:32 +00:00
```
2015-02-18 19:37:11 +00:00
# Comma separated list of nodes in the etcd cluster
2015-03-19 11:19:16 +00:00
KUBE_MASTER="--master=http://fed-master:8080"
2014-10-21 21:37:44 +00:00
# logging to stderr means we get it in the systemd journal
KUBE_LOGTOSTDERR="--logtostderr=true"
# journal message level, 0 is debug
KUBE_LOG_LEVEL="--v=0"
2015-02-18 19:33:09 +00:00
# Should this cluster be allowed to run privileged docker containers
2014-10-21 21:37:44 +00:00
KUBE_ALLOW_PRIV="--allow_privileged=false"
2014-09-12 22:53:32 +00:00
```
2015-03-19 11:19:16 +00:00
* Disable the firewall on both the master and minion, as docker does not play well with other firewall rule managers. Please note that iptables-services does not exist on default fedora server install.
2014-09-12 22:53:32 +00:00
```
2014-10-21 21:37:44 +00:00
systemctl disable iptables-services firewalld
systemctl stop iptables-services firewalld
2014-09-12 22:53:32 +00:00
```
2014-10-21 21:37:44 +00:00
**Configure the kubernetes services on the master.**
2015-03-19 11:19:16 +00:00
* Edit /etc/kubernetes/apiserver to appear as such. The portal_net IP addresses must be an unused block of addresses, not used anywhere else. They do not need to be routed or assigned to anything.
2014-09-12 22:53:32 +00:00
2015-03-19 11:19:16 +00:00
```
2014-09-12 22:53:32 +00:00
# The address on the local server to listen to.
2014-10-21 21:37:44 +00:00
KUBE_API_ADDRESS="--address=0.0.0.0"
2014-09-12 22:53:32 +00:00
2015-03-19 11:19:16 +00:00
# Comma separated list of nodes in the etcd cluster
KUBE_ETCD_SERVERS="--etcd_servers=http://fed-master:4001"
2014-09-12 22:53:32 +00:00
2014-10-21 21:37:44 +00:00
# Address range to use for services
KUBE_SERVICE_ADDRESSES="--portal_net=10.254.0.0/16"
2014-09-12 22:53:32 +00:00
2014-10-21 21:37:44 +00:00
# Add you own!
KUBE_API_ARGS=""
2014-09-12 22:53:32 +00:00
```
2014-11-02 03:38:45 +00:00
* Edit /etc/kubernetes/controller-manager to appear as such:
```
2015-03-19 11:19:16 +00:00
# The following values are used to configure the kubernetes controller-manager
# defaults from config and apiserver should be adequate
2015-02-18 19:37:11 +00:00
# Comma separated list of minions
2014-11-02 03:38:45 +00:00
KUBELET_ADDRESSES="--machines=fed-minion"
2015-03-19 11:19:16 +00:00
# Add you own!
KUBE_CONTROLLER_MANAGER_ARGS=""
2014-11-02 03:38:45 +00:00
```
2014-10-21 21:37:44 +00:00
* Start the appropriate services on master:
2014-09-12 22:53:32 +00:00
```
for SERVICES in etcd kube-apiserver kube-controller-manager kube-scheduler; do
systemctl restart $SERVICES
systemctl enable $SERVICES
systemctl status $SERVICES
done
```
2014-10-21 21:37:44 +00:00
**Configure the kubernetes services on the minion.**
2015-03-19 11:19:16 +00:00
***We need to configure the kubelet and proxy and start them.***
2014-09-12 22:53:32 +00:00
2014-10-21 21:37:44 +00:00
* Edit /etc/kubernetes/kubelet to appear as such:
2014-09-12 22:53:32 +00:00
2015-03-19 11:19:16 +00:00
```
###
# kubernetes kubelet (minion) config
2014-09-12 22:53:32 +00:00
2015-03-19 11:19:16 +00:00
# The address for the info server to serve on (set to 0.0.0.0 or "" for all interfaces)
KUBELET_ADDRESS="--address=0.0.0.0"
2014-09-12 22:53:32 +00:00
# You may leave this blank to use the actual hostname
2014-10-29 16:33:34 +00:00
KUBELET_HOSTNAME="--hostname_override=fed-minion"
2014-10-08 22:39:26 +00:00
2015-03-19 11:19:16 +00:00
# location of the api-server
KUBELET_API_SERVER="--api_servers=http://fed-master:8080"
# Add your own!
#KUBELET_ARGS=""
```
* Edit /etc/kubernetes/proxy to appear as such:
```
###
# kubernetes proxy config
# default config should be adequate
2014-12-15 00:07:05 +00:00
# Add your own!
2015-03-19 11:19:16 +00:00
KUBE_PROXY_ARGS="--master=http://fed-master:8080"
```
2014-09-12 22:53:32 +00:00
2014-10-21 21:37:44 +00:00
* Start the appropriate services on minion (fed-minion).
2014-09-12 22:53:32 +00:00
```
for SERVICES in kube-proxy kubelet docker; do
systemctl restart $SERVICES
systemctl enable $SERVICES
systemctl status $SERVICES
done
```
2014-12-11 03:03:33 +00:00
*You should be finished!*
2014-09-12 22:53:32 +00:00
2015-03-19 11:19:16 +00:00
* Check to make sure the cluster can see the minion (on fed-master).
2014-09-12 22:53:32 +00:00
2014-10-21 21:37:44 +00:00
```
kubectl get minions
2015-02-23 17:45:23 +00:00
NAME LABELS STATUS
fed-minion < none > Ready
2014-10-21 21:37:44 +00:00
```
2014-09-12 22:53:32 +00:00
2014-10-21 21:37:44 +00:00
**The cluster should be running! Launch a test pod.**
2014-09-12 22:53:32 +00:00
2014-12-11 02:57:52 +00:00
You should have a functional cluster, check out [101 ](https://github.com/GoogleCloudPlatform/kubernetes/blob/master/examples/walkthrough/README.md )!