-
Notifications
You must be signed in to change notification settings - Fork 5
/
docker-compose.yml
59 lines (56 loc) · 1.35 KB
/
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
54
55
56
57
58
59
services:
install-ryax:
image: ryaxtech/ryax-adm:latest
entrypoint: /data/local_ryax/k3s-ryax-install.sh
#entrypoint:
# - sleep
# - inf
volumes:
# This is just so that we get the kubeconfig file in
- .:/inout
environment:
- KUBECONFIG=/inout/kubeconfig.yaml
kubernetes:
image: rancher/k3s:v1.31.1-k3s1
command:
- server
- --disable=metrics-server
tmpfs:
- /run
- /var/run
ulimits:
nproc: 65535
nofile:
soft: 65535
hard: 65535
privileged: true
restart: always
environment:
- K3S_TOKEN=InsecureTokEn=ChangeME
- K3S_KUBECONFIG_OUTPUT=/output/kubeconfig.yaml
- K3S_KUBECONFIG_MODE=666
volumes:
- k3s-server-vol:/var/lib/rancher/k3s
# This is just so that we get the kubeconfig file out
- .:/output
ports:
- 6443:6443 # Kubernetes API Server
- 80:80 # Ingress controller port 80
- 443:443 # Ingress controller port 443
kubernetes-node:
image: rancher/k3s:v1.31.1-k3s1
tmpfs:
- /run
- /var/run
ulimits:
nproc: 65535
nofile:
soft: 65535
hard: 65535
privileged: true
restart: always
environment:
- K3S_URL=https://kubernetes:6443
- K3S_TOKEN=InsecureTokEn=ChangeME
volumes:
k3s-server-vol: { }