1
0
mirror of https://github.com/rancher/rke.git synced 2025-06-29 00:38:23 +00:00
rke/README.md

377 lines
12 KiB
Markdown
Raw Normal View History

# rke
2017-10-26 00:02:49 +00:00
2017-11-30 03:13:41 +00:00
Rancher Kubernetes Engine, an extremely simple, lightning fast Kubernetes installer that works everywhere.
2017-10-26 00:02:49 +00:00
2017-11-30 03:13:41 +00:00
## Download
2017-10-26 00:02:49 +00:00
2017-11-30 03:13:41 +00:00
Please check the [releases](https://github.com/rancher/rke/releases/) page.
2017-10-26 00:02:49 +00:00
2017-11-30 03:13:41 +00:00
## Requirements
2017-12-13 16:26:27 +00:00
- Docker versions 1.12.6, 1.13.1, or 17.03 should be installed for Kubernetes 1.8.
- OpenSSH 7.0+ must be installed on each node for stream local forwarding to work.
2017-11-30 03:13:41 +00:00
- The SSH user used for node access must be a member of the `docker` group:
2017-11-30 03:13:41 +00:00
```bash
usermod -aG docker <user_name>
```
2017-12-13 16:26:27 +00:00
- Ports 6443, 2379, and 2380 should be opened between cluster nodes.
2018-01-28 08:59:27 +00:00
- Swap disabled on worker nodes.
2017-12-13 16:26:27 +00:00
## Getting Started
2017-10-26 00:02:49 +00:00
Starting out with RKE? Check out this [blog post](http://rancher.com/an-introduction-to-rke/).
## Using RKE
2017-12-16 10:03:35 +00:00
Standing up a Kubernetes is as simple as creating a `cluster.yml` configuration file and running the command:
2017-11-30 03:13:41 +00:00
```bash
2017-12-16 10:03:35 +00:00
./rke up --config cluster.yml
2017-11-30 03:13:41 +00:00
```
2017-12-16 10:03:35 +00:00
### Full `cluster.yml` example
2017-11-30 03:13:41 +00:00
2017-12-13 16:26:27 +00:00
You can view full sample of cluster.yml [here](https://github.com/rancher/rke/blob/master/cluster.yml).
2017-11-30 03:13:41 +00:00
2017-12-16 10:03:35 +00:00
### Minimal `cluster.yml` example
```yaml
2018-03-28 22:52:25 +00:00
# default k8s version: v1.8.9-rancher1-1
# default network plugin: flannel
2017-11-30 03:13:41 +00:00
nodes:
2018-03-28 22:52:25 +00:00
- address: 1.2.3.4
2017-11-30 03:13:41 +00:00
user: ubuntu
2017-12-13 16:26:27 +00:00
role: [controlplane,worker,etcd]
2017-11-30 03:13:41 +00:00
2017-12-13 16:26:27 +00:00
```
## Network Plugins
RKE supports the following network plugins:
- Flannel
- Calico
2018-02-14 19:39:19 +00:00
- Canal
2017-12-13 16:26:27 +00:00
- Weave
To use specific network plugin configure `cluster.yml` to include:
```yaml
2017-12-13 16:26:27 +00:00
network:
plugin: flannel
```
### Network Options
There are extra options that can be specified for each network plugin:
#### Flannel
- **flannel_image**: Flannel daemon Docker image
- **flannel_cni_image**: Flannel CNI binary installer Docker image
- **flannel_iface**: Interface to use for inter-host communication
#### Calico
- **calico_node_image**: Calico Daemon Docker image
- **calico_cni_image**: Calico CNI binary installer Docker image
- **calico_controllers_image**: Calico Controller Docker image
- **calicoctl_image**: Calicoctl tool Docker image
2018-01-14 17:52:01 +00:00
- **calico_cloud_provider**: Cloud provider where Calico will operate, currently supported values are: `aws`, `gce`
2017-12-13 16:26:27 +00:00
2018-02-14 19:39:19 +00:00
#### Canal
2017-12-13 16:26:27 +00:00
2018-02-14 19:39:19 +00:00
- **canal_node_image**: Canal Node Docker image
- **canal_cni_image**: Canal CNI binary installer Docker image
- **canal_flannel_image**: Canal Flannel Docker image
2017-12-13 16:26:27 +00:00
#### Weave
- **weave_node_image**: Weave Node Docker image
- **weave_cni_image**: Weave CNI binary installer Docker image
## Addons
2018-03-28 22:52:25 +00:00
RKE supports pluggable addons on cluster bootstrap, user can specify the addon yaml in the cluster.yml file, and when running
```yaml
2017-12-13 16:26:27 +00:00
rke up --config cluster.yml
```
2017-12-13 16:26:27 +00:00
RKE will deploy the addons yaml after the cluster starts, RKE first uploads this yaml file as a configmap in kubernetes cluster and then run a kubernetes job that mounts this config map and deploy the addons.
> Note that RKE doesn't support yet removal of the addons, so once they are deployed the first time you can't change them using rke
To start using addons use `addons:` option in the `cluster.yml` file for example:
2017-11-30 03:13:41 +00:00
```yaml
2017-11-30 03:13:41 +00:00
addons: |-
---
apiVersion: v1
kind: Pod
metadata:
name: my-nginx
namespace: default
spec:
containers:
- name: my-nginx
image: nginx
ports:
- containerPort: 80
```
2017-12-13 16:26:27 +00:00
Note that we are using `|-` because the addons option is a multi line string option, where you can specify multiple yaml files and separate them with `---`
2018-03-23 21:50:08 +00:00
For `addons_include:` you may pass either http/https urls or file paths, for example:
```yaml
addons_include:
- https://raw.githubusercontent.com/rook/rook/master/cluster/examples/kubernetes/rook-operator.yaml
- https://raw.githubusercontent.com/rook/rook/master/cluster/examples/kubernetes/rook-cluster.yaml
- /opt/manifests/example.yaml
- ./nginx.yaml
```
2017-12-13 16:26:27 +00:00
## High Availability
RKE is HA ready, you can specify more than one controlplane host in the `cluster.yml` file, and rke will deploy master components on all of them, the kubelets are configured to connect to `127.0.0.1:6443` by default which is the address of `nginx-proxy` service that proxy requests to all master nodes.
to start an HA cluster, just specify more than one host with role `controlplane`, and start the cluster normally.
## Adding/Removing Nodes
2018-03-28 22:52:25 +00:00
RKE supports adding/removing nodes for worker and controlplane hosts, in order to add additional nodes you will only need to update the `cluster.yml` file with additional nodes and run `rke up` with the same file.
2017-12-13 16:26:27 +00:00
To remove nodes just remove them from the hosts list in the cluster configuration file `cluster.yml`, and re run `rke up` command.
## Cluster Remove
2018-03-28 22:52:25 +00:00
RKE supports `rke remove` command, the command does the following:
2017-12-13 16:26:27 +00:00
- Connect to each host and remove the kubernetes services deployed on it.
- Clean each host from the directories left by the services:
- /etc/kubernetes/ssl
- /var/lib/etcd
- /etc/cni
- /opt/cni
- /var/run/calico
Note that this command is irreversible and will destroy the kubernetes cluster entirely.
## Cluster Upgrade
2018-03-28 22:52:25 +00:00
RKE supports kubernetes cluster upgrade through changing the image version of services, in order to do that change the image option for each services, for example:
```yaml
2017-12-13 16:26:27 +00:00
image: rancher/k8s:v1.8.2-rancher1
```
2017-12-13 16:26:27 +00:00
TO
```yaml
2017-12-13 16:26:27 +00:00
image: rancher/k8s:v1.8.3-rancher2
```
And then run:
```bash
2017-12-13 16:26:27 +00:00
rke up --config cluster.yml
```
2018-01-30 18:31:42 +00:00
RKE will first look for the local `kube_config_cluster.yml` and then tries to upgrade each service to the latest image.
2017-12-13 16:26:27 +00:00
> Note that rollback isn't supported in RKE and may lead to unxpected results
2018-03-29 23:43:02 +00:00
## Service Upgrade
Service can also be upgraded by changing any of the services arguments or extra args and run `rke up` again with the updated configuration file.
> Please note that changing the following arguments: `service_cluster_ip_range` or `cluster_cidr` will result in a broken cluster, because currently the network pods will not be automatically upgraded.
2017-12-13 16:26:27 +00:00
## RKE Config
2018-03-28 22:52:25 +00:00
RKE supports command `rke config` which generates a cluster config template for the user, to start using this command just write:
```bash
2017-12-13 16:26:27 +00:00
rke config --name mycluster.yml
```
2017-10-26 00:02:49 +00:00
RKE will ask some questions around the cluster file like number of the hosts, ips, ssh users, etc, `--empty` option will generate an empty cluster.yml file, also if you just want to print on the screen and not save it in a file you can use `--print`.
2017-10-26 00:02:49 +00:00
## Ingress Controller
RKE will deploy Nginx controller by default, user can disable this by specifying `none` to ingress `provider` option in the cluster configuration, user also can specify list of options for nginx config map listed in this [doc](https://github.com/kubernetes/ingress-nginx/blob/master/docs/user-guide/configmap.md), for example:
```
ingress:
provider: nginx
options:
map-hash-bucket-size: "128"
ssl-protocols: SSLv2
```
By default, RKE will deploy ingress controller on all schedulable nodes (controlplane and workers), to specify only certain nodes for ingress controller to be deployed, user has to specify `node_selector` for the ingress and the right label on the node, for example:
```
nodes:
- address: 1.1.1.1
role: [controlplane,worker,etcd]
user: root
labels:
app: ingress
ingress:
provider: nginx
node_selector:
app: ingress
```
RKE will deploy Nginx Ingress controller as a DaemonSet with `hostnetwork: true`, so ports `80`, and `443` will be opened on each node where the controller is deployed.
## Extra Args and Binds
RKE supports additional service arguments.
```yaml
services:
# ...
kube-controller:
extra_args:
cluster-name: "mycluster"
```
This will add/append `--cluster-name=mycluster` to the container list of arguments.
2018-03-24 00:08:45 +00:00
As of `v0.1.3-rc2` using `extra_args` will add new arguments and **override** existing defaults. For example, if you need to modify the default admission controllers list, you need to change the default list and add apply it using `extra_args`.
RKE also supports additional volume binds:
```yaml
services:
# ...
kubelet:
extra_binds:
- "/host/dev:/dev"
- "/usr/libexec/kubernetes/kubelet-plugins:/usr/libexec/kubernetes/kubelet-plugins:z"
```
## Authentication
RKE Supports x509 authentication strategy. You can additionally define a list of SANs (Subject Alternative Names) to add to the Kubernetes API Server PKI certificates. This allows you to connect to your Kubernetes cluster API Server through a load balancer, for example, rather than a single node.
```yaml
authentication:
strategy: x509
sans:
- "10.18.160.10"
- "my-loadbalancer-1234567890.us-west-2.elb.amazonaws.com"
```
2018-02-14 20:58:35 +00:00
## External etcd
RKE supports using external etcd instead of deploying etcd servers, to enable external etcd the following parameters should be populated:
```
services:
etcd:
path: /etcdcluster
external_urls:
- https://etcd-example.com:2379
ca_cert: |-
-----BEGIN CERTIFICATE-----
xxxxxxxxxx
-----END CERTIFICATE-----
cert: |-
-----BEGIN CERTIFICATE-----
xxxxxxxxxx
-----END CERTIFICATE-----
key: |-
-----BEGIN PRIVATE KEY-----
xxxxxxxxxx
-----END PRIVATE KEY-----
```
Note that RKE only supports connecting to TLS enabled etcd setup, user can enable multiple endpoints in the `external_urls` field. RKE will not accept having external urls and nodes with `etcd` role at the same time, user should only specify either etcd role for servers or external etcd but not both.
2018-03-28 19:46:28 +00:00
## Cloud Providers
Starting from v0.1.3 rke supports cloud providers.
### AWS Cloud Provider
To enable AWS cloud provider, you can set the following in the cluster configuration file:
```
cloud_provider:
name: aws
```
AWS cloud provider has to be enabled on ec2 instances with the right IAM role.
### Azure Cloud provider
Azure cloud provider can be enabled by passing `azure` as the cloud provider name and set of options to the configuration file:
```
cloud_provider:
name: azure
cloud_config:
aadClientId: xxxxxxxxxxxx
aadClientSecret: xxxxxxxxxxx
location: westus
resourceGroup: rke-rg
subnetName: rke-subnet
subscriptionId: xxxxxxxxxxx
vnetName: rke-vnet
tenantId: xxxxxxxxxx
securityGroupName: rke-nsg
```
You also have to make sure that the Azure node name must match the kubernetes node name, you can do that by changing the value of hostname_override in the config file:
```
nodes:
- address: x.x.x.x
hostname_override: azure-rke1
user: ubuntu
role:
- controlplane
- etcd
- worker
```
2018-03-28 22:52:25 +00:00
## Deploying Rancher 2.0 using rke
Using RKE's pluggable user addons, it's possible to deploy Rancher 2.0 server with a single command after updating the node settings in the [rancher-minimal.yml](https://github.com/rancher/rke/blob/master/rancher-minimal.yml) cluster configuration:
2018-03-28 22:52:25 +00:00
```bash
rke up --config rancher-minimal.yml
```
2018-01-25 21:29:21 +00:00
## Operating Systems Notes
### Atomic OS
- Container volumes may have some issues in Atomic OS due to SELinux, most of volumes are mounted in rke with option `z`, however user still need to run the following commands before running rke:
```
# mkdir /opt/cni /etc/cni
# chcon -Rt svirt_sandbox_file_t /etc/cni
# chcon -Rt svirt_sandbox_file_t /opt/cni
```
- OpenSSH 6.4 shipped by default on Atomic CentOS which doesn't support SSH tunneling and therefore breaks rke, upgrading OpenSSH to the latest version supported by Atomic host will solve this problem:
```
# atomic host upgrade
```
- Atomic host doesn't come with docker group by default, you can change ownership of docker.sock to enable specific user to run rke:
```
# chown <user> /var/run/docker.sock
```
2017-10-26 00:02:49 +00:00
## License
2017-12-05 06:55:29 +00:00
Copyright (c) 2017 [Rancher Labs, Inc.](http://rancher.com)
2017-10-26 00:02:49 +00:00
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
[http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.