k3s/docker-compose.yml

53 lines
1.1 KiB
YAML
Raw Permalink Normal View History

2019-12-13 01:02:54 +00:00
# to run define K3S_TOKEN, K3S_VERSION is optional, eg:
# K3S_TOKEN=${RANDOM}${RANDOM}${RANDOM} docker-compose up
2019-01-22 21:14:58 +00:00
services:
2019-12-13 00:29:12 +00:00
2019-01-22 21:14:58 +00:00
server:
2019-12-13 00:29:12 +00:00
image: "rancher/k3s:${K3S_VERSION:-latest}"
command: server
tmpfs:
- /run
- /var/run
ulimits:
nproc: 65535
nofile:
soft: 65535
hard: 65535
2019-12-13 00:29:12 +00:00
privileged: true
restart: always
2019-01-22 21:14:58 +00:00
environment:
2019-12-13 01:02:54 +00:00
- K3S_TOKEN=${K3S_TOKEN:?err}
2019-01-22 21:14:58 +00:00
- K3S_KUBECONFIG_OUTPUT=/output/kubeconfig.yaml
- K3S_KUBECONFIG_MODE=666
volumes:
- k3s-server:/var/lib/rancher/k3s
# This is just so that we get the kubeconfig file out
- .:/output
ports:
- 6443:6443 # Kubernetes API Server
- 80:80 # Ingress controller port 80
- 443:443 # Ingress controller port 443
2019-01-22 21:14:58 +00:00
2019-12-13 00:29:12 +00:00
agent:
image: "rancher/k3s:${K3S_VERSION:-latest}"
2019-01-22 21:14:58 +00:00
tmpfs:
- /run
- /var/run
ulimits:
nproc: 65535
nofile:
soft: 65535
hard: 65535
2019-01-22 21:14:58 +00:00
privileged: true
restart: always
2019-01-22 21:14:58 +00:00
environment:
- K3S_URL=https://server:6443
2019-12-13 01:02:54 +00:00
- K3S_TOKEN=${K3S_TOKEN:?err}
volumes:
- k3s-agent:/var/lib/rancher/k3s
2019-01-22 21:14:58 +00:00
volumes:
k3s-server: {}
k3s-agent: {}