Lightweight Kubernetes
Go to file
2019-07-17 12:44:32 -07:00
.github/ISSUE_TEMPLATE
cmd Build & enable ctr with k3s server 2019-06-30 09:30:25 -07:00
contrib/ansible Add wait for node-token file 2019-07-07 17:24:37 +02:00
e2e Add e2e tests 2019-02-28 10:31:59 -07:00
manifests Refactor certs 2019-06-25 15:04:04 -07:00
package Update Dockerfile to use bin/aux 2019-05-03 16:04:37 -07:00
pkg Merge pull request #634 from erikwilson/enforce-type-on-bootstrap 2019-07-14 00:52:37 -07:00
scripts Define containerd and cri-tools version 2019-07-09 20:54:13 -07:00
vendor Update kubernetes to v1.14.4-k3s.1 2019-07-14 00:58:54 -07:00
.dockerignore
.drone.yml Update to dapper v0.4.2 2019-07-02 16:13:42 -07:00
.gitignore Update .gitignore 2019-05-27 12:15:01 -07:00
.golangci.json Upgrade to golangci-lint 2019-03-25 16:04:28 -07:00
docker-compose-agent.yml update to v0.6.1 2019-06-24 07:09:47 +02:00
docker-compose.yml update to v0.6.1 2019-06-24 07:09:47 +02:00
Dockerfile.dapper Update to go v1.12.1 2019-03-25 16:04:29 -07:00
Dockerfile.sonobuoy.dapper Upgrade Sonobuoy to v0.15.0 2019-07-07 14:38:44 -07:00
install.sh Fix install.sh comment typo (#638) 2019-07-15 08:37:31 -07:00
k3s.service Add Restart=always to systemd unit 2019-05-08 02:54:40 +02:00
LICENSE
main.go Port to wrangler 2019-05-26 22:28:50 -07:00
Makefile Update to dapper v0.4.2 2019-07-02 16:13:42 -07:00
README.md Update README to point to new docs site 2019-07-17 12:44:32 -07:00
trash.lock Update kubernetes to v1.14.4-k3s.1 2019-07-14 00:58:54 -07:00
Vagrantfile Add Vagrantfile for development use 2019-04-22 13:47:42 -07:00
vendor.conf Update kubernetes to v1.14.4-k3s.1 2019-07-14 00:58:54 -07:00

k3s - 5 less than k8s

Lightweight Kubernetes. Easy to install, half the memory, all in a binary less than 40mb.

Great for:

  • Edge
  • IoT
  • CI
  • ARM
  • Situations where a PhD in k8s clusterology is infeasible

What is this?

k3s is intended to be a fully compliant Kubernetes distribution with the following changes:

  1. Legacy, alpha, non-default features are removed. Hopefully, you shouldn't notice the stuff that has been removed.
  2. Removed most in-tree plugins (cloud providers and storage plugins) which can be replaced with out of tree addons.
  3. Add sqlite3 as the default storage mechanism. etcd3 is still available, but not the default.
  4. Wrapped in simple launcher that handles a lot of the complexity of TLS and options.
  5. Minimal to no OS dependencies (just a sane kernel and cgroup mounts needed). k3s packages required dependencies
    • containerd
    • Flannel
    • CoreDNS
    • CNI
    • Host utilities (iptables, socat, etc)

Documentation

Please see the official docs site for complete documentation on k3s.

Quick-Start - Install Script

The k3s install.sh script provides a convenient way for installing to systemd or openrc, to install k3s as a service just run:

curl -sfL https://get.k3s.io | sh -

A kubeconfig file is written to /etc/rancher/k3s/k3s.yaml and the service is automatically started or restarted. The install script will install k3s and additional utilities, such as kubectl, crictl, k3s-killall.sh, and k3s-uninstall.sh, for example:

sudo kubectl get nodes

K3S_TOKEN is created at /var/lib/rancher/k3s/server/node-token on your server. To install on worker nodes we should pass K3S_URL along with K3S_TOKEN or K3S_CLUSTER_SECRET environment variables, for example:

curl -sfL https://get.k3s.io | K3S_URL=https://myserver:6443 K3S_TOKEN=XXX sh -

Manual Download

  1. Download k3s from latest release, x86_64, armhf, and arm64 are supported.
  2. Run server.
sudo k3s server &
# Kubeconfig is written to /etc/rancher/k3s/k3s.yaml
sudo k3s kubectl get nodes

# On a different node run the below. NODE_TOKEN comes from 
# /var/lib/rancher/k3s/server/node-token on your server
sudo k3s agent --server https://myserver:6443 --token ${NODE_TOKEN}