2020-05-01 22:07:59 +00:00
|
|
|
version: '3'
|
|
|
|
services:
|
|
|
|
server:
|
|
|
|
image: "rancher/k3s"
|
|
|
|
restart: always
|
|
|
|
command: server --no-deploy traefik --kubelet-arg authentication-token-webhook --kubelet-arg authorization-mode=Webhook
|
|
|
|
tmpfs:
|
|
|
|
- /run
|
|
|
|
- /var/run
|
|
|
|
privileged: true
|
|
|
|
environment:
|
2020-05-14 13:52:49 +00:00
|
|
|
- K3S_CLUSTER_SECRET=${K3S_CLUSTER_SECRET:-replaceme}
|
|
|
|
- K3S_KUBECONFIG_OUTPUT=/host/build/kubeconfig.yaml
|
2020-05-01 22:07:59 +00:00
|
|
|
- K3S_KUBECONFIG_MODE=666
|
|
|
|
volumes:
|
|
|
|
- k3s_data:/var/lib/rancher/k3s
|
|
|
|
- .:/host
|
|
|
|
- ./manifests:/var/lib/rancher/k3s/server/manifests/host
|
|
|
|
ports:
|
|
|
|
- 80:80
|
|
|
|
- 443:443
|
|
|
|
- 6443:6443
|
|
|
|
agent:
|
|
|
|
image: "rancher/k3s"
|
|
|
|
restart: always
|
|
|
|
command: agent --kubelet-arg authentication-token-webhook --kubelet-arg authorization-mode=Webhook
|
|
|
|
tmpfs:
|
|
|
|
- /run
|
|
|
|
- /var/run
|
|
|
|
privileged: true
|
|
|
|
environment:
|
|
|
|
- K3S_URL=https://server:6443
|
2020-05-14 13:52:49 +00:00
|
|
|
- K3S_CLUSTER_SECRET=${K3S_CLUSTER_SECRET:-replaceme}
|
2020-05-01 22:07:59 +00:00
|
|
|
|
|
|
|
volumes:
|
|
|
|
k3s_data:
|
|
|
|
|
|
|
|
|