k3s/docker-compose.yml
2019-02-08 13:26:28 -07:00

31 lines
683 B
YAML

version: '3'
services:
server:
image: ibuildthecloud/k3s:v0.1.0-rc3
command: server --disable-agent
environment:
- K3S_CLUSTER_SECRET=somethingtotallyrandom
- 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
node:
image: ibuildthecloud/k3s:v0.1.0-rc3
tmpfs:
- /run
- /var/run
volumes:
- /var/lib/rancher/k3s
privileged: true
environment:
- K3S_URL=https://server:6443
- K3S_CLUSTER_SECRET=somethingtotallyrandom
volumes:
k3s-server: {}