-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathdemo_cluster_conf.tpl.yaml
46 lines (44 loc) · 1.04 KB
/
demo_cluster_conf.tpl.yaml
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
kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
nodes:
- role: control-plane
# Ingress node tagging
# https://kind.sigs.k8s.io/docs/user/ingress/
kubeadmConfigPatches:
- |
kind: InitConfiguration
nodeRegistration:
kubeletExtraArgs:
node-labels: "ingress-ready=true"
extraMounts:
# Mount the directories in the control plane
# Then the PV will mount it from this control plane "local" directory
- hostPath: {{ csStorePath }}
containerPath: /local_cs_store
{{ extraMounts }}
# Expose the ingress port
extraPortMappings:
# diracx-web
- containerPort: 443
hostPort: 8000
protocol: TCP
# Minio
- containerPort: 32000
hostPort: 32000
protocol: TCP
# Minio web interface
- containerPort: 32001
hostPort: 32001
protocol: TCP
# Dex web interface
- containerPort: 32002
hostPort: 32002
protocol: TCP
# IAM
- containerPort: 32003
hostPort: 32003
protocol: TCP
# Grafana web interface (OpenTelemetry)
- containerPort: 32004
hostPort: 32004
protocol: TCP