mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
32 lines
545 B
YAML
32 lines
545 B
YAML
|
version: '3'
|
||
|
services:
|
||
|
server:
|
||
|
image: rancher/k3s:v0.1.0-rc8
|
||
|
command: server
|
||
|
environment:
|
||
|
- K3S_CLUSTER_SECRET=somethingtotallyrandom
|
||
|
volumes:
|
||
|
- config:/etc/rancher/k3s
|
||
|
tmpfs:
|
||
|
- /run
|
||
|
- /var/run
|
||
|
privileged: true
|
||
|
|
||
|
node:
|
||
|
image: rancher/k3s:v0.1.0-rc8
|
||
|
tmpfs:
|
||
|
- /run
|
||
|
- /var/run
|
||
|
privileged: true
|
||
|
environment:
|
||
|
- K3S_URL=https://server:6443
|
||
|
- K3S_CLUSTER_SECRET=somethingtotallyrandom
|
||
|
|
||
|
sonobuoy:
|
||
|
build: .
|
||
|
volumes:
|
||
|
- config:/etc/rancher/k3s
|
||
|
|
||
|
volumes:
|
||
|
config: {}
|