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.
|
|
|
version: '3'
|
|
|
|
services:
|
|
|
|
|
|
|
|
server:
|
|
|
|
image: "rancher/k3s:${K3S_VERSION:-latest}"
|
|
|
|
command: server
|
|
|
|
tmpfs:
|
|
|
|
- /run
|
|
|
|
- /var/run
|
|
|
|
privileged: true
|
|
|
|
environment:
|
|
|
|
- K3S_TOKEN=${K3S_TOKEN:-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
|
|
|
|
|
|
|
|
agent:
|
|
|
|
image: "rancher/k3s:${K3S_VERSION:-latest}"
|
|
|
|
tmpfs:
|
|
|
|
- /run
|
|
|
|
- /var/run
|
|
|
|
privileged: true
|
|
|
|
environment:
|
|
|
|
- K3S_URL=https://server:6443
|
|
|
|
- K3S_TOKEN=${K3S_TOKEN:-somethingtotallyrandom}
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
k3s-server: {}
|