-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathvalues.base.yaml
More file actions
153 lines (130 loc) · 4.05 KB
/
values.base.yaml
File metadata and controls
153 lines (130 loc) · 4.05 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
nico-api:
resources:
limits:
cpu: "16"
memory: "16Gi"
requests:
cpu: "1"
memory: "1Gi"
siteConfig:
enabled: true
nicoApiSiteConfig: |
bypass_rbac = true
attestation_enabled = false
dpu_ipmi_tool_impl = "test"
initial_domain_name = "local.nico"
initial_dpu_agent_upgrade_policy = "off"
# DB transactions in nico should be quick, pool size should ≈ the
# number of cores. Default postgres configuration is a 100 connection
# limit, so let's stay safely below that.
max_database_connections = 64
[pools.lo-ip]
type = "ipv4"
ranges = [{ start = "10.180.64.1", end = "10.180.127.254" }]
[pools.vlan-id]
type = "integer"
ranges = [{ start = "100", end = "501" }]
[pools.vni]
type = "integer"
ranges = [{ start = "1024500", end = "1024550" }]
[pools.vpc-vni]
type = "integer"
ranges = [{ start = "2024500", end = "2024550" }]
[pools.fnn-asn]
type = "integer"
ranges = [{ start = "1000", end = "10000" }]
[networks.admin]
type = "admin"
prefix = "192.168.64.0/18"
gateway = "192.168.64.1"
mtu = 9000
reserve_first = 2
[networks.DEV-K3S-DPU-ACORN-0]
type = "underlay"
prefix = "192.168.128.0/18"
gateway = "192.168.128.1"
mtu = 1500
reserve_first = 2
[networks.DEV-K3S-X86-BMC-UNDERLAY-ACORN-X86-0]
type = "underlay"
prefix = "192.168.192.0/18"
gateway = "192.168.192.1"
mtu = 1500
reserve_first = 2
[auth]
permissive_mode = true
[auth.trust]
spiffe_trust_domain = "nico.local"
spiffe_service_base_paths = ["/nico-system/sa/", "/default/sa/"]
spiffe_machine_base_path = "/nico-system/machine/"
additional_issuer_cns = []
[host_health]
hardware_health_reports = "MonitorOnly"
[machine_state_controller]
dpu_wait_time = "1s"
skip_polling_checks = true
[machine_state_controller.controller]
iteration_time = "30s"
max_concurrency = 100
[machine_validation_config]
enabled = false
[site_explorer]
enabled = true
create_machines = true
allow_changing_bmc_proxy = true
allow_zero_dpu_hosts = true
bmc_proxy = "machine-a-tron-bmc-mock.nico-system.svc.cluster.local:1266"
run_interval = "10s"
machines_created_per_run = 1000
explorations_per_run = 1000
concurrent_explorations = 100
explore_mode = "nv-redfish"
[firmware_global]
autoupdate = true
run_interval = "10s"
concurrency_limit = 100
nico-bmc-proxy:
enabled: true
replicas: 1 # save on local resources
configFiles:
enabled: true
nicoBmcProxyConfig: |
listen = "[::]:1079"
metrics_endpoint = "[::]:1080"
database_url = "postgres://replaced-by-env-var"
allowed_principals = ["trusted-certificate"]
bmc_proxy = "machine-a-tron-bmc-mock.nico-system.svc.cluster.local:1266"
[tls]
identity_pemfile_path = "/var/run/secrets/spiffe.io/tls.crt"
identity_keyfile_path = "/var/run/secrets/spiffe.io/tls.key"
root_cafile_path = "/var/run/secrets/spiffe.io/ca.crt"
admin_root_cafile_path = "/etc/forge/carbide-bmc-proxy/site/admin_root_cert_pem"
[auth.trust]
spiffe_trust_domain = "nico.local"
spiffe_service_base_paths = [
"/nico-system/sa/",
"/default/sa/",
]
spiffe_machine_base_path = "/nico-system/machine/"
additional_issuer_cns = []
[auth.acls]
"trusted-certificate" = ["/**"]
[carbide_api]
api_url = "https://nico-api.nico-system.svc.cluster.local:1079"
root_ca = "/var/run/secrets/spiffe.io/ca.crt"
client_cert = "/var/run/secrets/spiffe.io/tls.crt"
client_key = "/var/run/secrets/spiffe.io/tls.key"
nico-dhcp:
enabled: false
nico-dns:
enabled: false
nico-dsx-exchange-consumer:
enabled: false
nico-hardware-health:
enabled: false
nico-pxe:
enabled: false
nico-ssh-console-rs:
enabled: false
unbound:
enabled: false