-
Notifications
You must be signed in to change notification settings - Fork 720
/
settings.yaml
39 lines (38 loc) · 1.18 KB
/
settings.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
---
# cluster_name is used to group the nodes in a folder within VirtualBox:
cluster_name: Kubernetes Cluster
# Uncomment to set environment variables for services such as crio and kubelet.
# For example, configure the cluster to pull images via a proxy.
# environment: |
# HTTP_PROXY=http://my-proxy:8000
# HTTPS_PROXY=http://my-proxy:8000
# NO_PROXY=127.0.0.1,localhost,master-node,node01,node02,node03
# All IPs/CIDRs should be private and allowed in /etc/vbox/networks.conf.
network:
# Worker IPs are simply incremented from the control IP.
control_ip: 10.0.0.10
dns_servers:
- 8.8.8.8
- 1.1.1.1
pod_cidr: 172.16.1.0/16
service_cidr: 172.17.1.0/18
nodes:
control:
cpu: 2
memory: 4096
workers:
count: 2
cpu: 1
memory: 2048
# Mount additional shared folders from the host into each virtual machine.
# Note that the project directory is automatically mounted at /vagrant.
# shared_folders:
# - host_path: ../images
# vm_path: /vagrant/images
software:
box: bento/ubuntu-24.04
calico: 3.26.0
# To skip the dashboard installation, set its version to an empty value or comment it out:
dashboard: 2.7.0
kubernetes: 1.31.0-*
os: xUbuntu_24.04