Lightweight Kubernetes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Catherine Luse 9809e784a4
Explain where K3s docs source code is
5 years ago
.github/ISSUE_TEMPLATE Ask more clearly for K3s args and logs 5 years ago
cmd Update check-config.sh for k3s 5 years ago
contrib Remove trailing whitespaces 5 years ago
e2e Add e2e tests 6 years ago
manifests coredns: readiness- and livenessProbe tweaks 5 years ago
package [systemd] Add value to LimitNOFILE due to performance problems 5 years ago
pkg Merge pull request #1795 from StateFarmIns/support_for_setting_default_ssl_ciphers 5 years ago
scripts Merge pull request #1835 from evrardjp/remove-trailing-whitespaces 5 years ago
tests/perf Merge pull request #1494 from joakimr-axis/joakimr-axis_backticks 5 years ago
vendor Update k8s 1.18.3 5 years ago
.dockerignore Add rpm build & repo publish 5 years ago
.drone.yml Use curl to send dispatch event to k3s-upgrade repo 5 years ago
.gitignore Check for changes in the airgap image list 5 years ago
.golangci.json Upgrade to golangci-lint 6 years ago
BUILDING.md Fix markdown files according to markdownlint recommendations 5 years ago
CODE_OF_CONDUCT.md add code of conduct 5 years ago
Dockerfile.dapper Bump golang to 1.13.11 5 years ago
Dockerfile.manifest Upgrade golang to v1.13.8 5 years ago
Dockerfile.test.dapper Update sonobouy to v0.17.2 5 years ago
LICENSE Initial Commit 6 years ago
Makefile $ must be escaped in Makefile 5 years ago
README.md Explain where K3s docs source code is 5 years ago
Vagrantfile Reduce memory for dev vms 5 years ago
channel.yaml Update stable channel to v1.18.3+k3s1 5 years ago
docker-compose.yml Remove docker-compose default token 5 years ago
go.mod Update k8s 1.18.3 5 years ago
go.sum Update k8s 1.18.3 5 years ago
install.sh Merge pull request #1735 from stellirin/performance 5 years ago
k3s.service [systemd] Add value to LimitNOFILE due to performance problems 5 years ago
main.go Drop openapi hack 5 years ago
vendor.go Update k3s for k8s 1.17.0 5 years ago

README.md

k3s - Lightweight Kubernetes

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

Great for:

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

What is this?

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

  1. Packaged as a single binary.
  2. Lightweight storage backend based on sqlite3 as the default storage mechanism. etcd3, MySQL, Postgres also still available.
  3. Wrapped in simple launcher that handles a lot of the complexity of TLS and options.
  4. Secure by default with reasonable defaults for lightweight environments.
  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)
    • Ingress controller (traefik)
    • Embedded service loadbalancer
    • Embedded network policy controller

What's with the name?

We wanted an installation of Kubernetes that was half the size in terms of memory footprint. Kubernetes is a 10 letter word stylized as k8s. So something half as big as Kubernetes would be a 5 letter word stylized as k3s. There is no long form of k3s and no official pronunciation.

Documentation

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

Contributing to the Docs

  • Issues: Doc issues are raised in this repository, and they are tracked under the kind/documentation label.
  • Pull Requests: Pull requests are submitted to the K3s documentation source code in the Rancher docs repository. The K3s docs content is in the content/k3s/ directory.

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}