-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathk3s-docker-compose.yml
53 lines (50 loc) · 1.16 KB
/
k3s-docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
## Docker Compose to enable k3s to run locally exclusively on single osuosl node
services:
server:
image: "rancher/k3s:v1.31.3-k3s1-amd64"
command: server
tmpfs:
- /run
- /var/run
ulimits:
nproc: 65535
nofile:
soft: 65535
hard: 65535
privileged: true
restart: always
environment:
- K3S_TOKEN=godon
- 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
- /run:/output
ports:
- 127.0.0.1:6443:6443 # Kubernetes API Server
- 127.0.0.1:80:80 # Ingress controller port 80
- 127.0.0.1:443:443 # Ingress controller port 443
agent:
deploy:
mode: replicated
replicas: 3
image: "rancher/k3s:v1.31.3-k3s1-amd64"
tmpfs:
- /run
- /var/run
ulimits:
nproc: 65535
nofile:
soft: 65535
hard: 65535
privileged: true
restart: always
environment:
- K3S_URL=https://server:6443
- K3S_TOKEN=godon
volumes:
- k3s-agent:/var/lib/rancher/k3s
volumes:
k3s-server: {}
k3s-agent: {}