blob: 603b4b3f29781fc173376772b12c892f613fdc6d [file] [log] [blame]
Giorgi Lekveishvilie009a5d2024-01-05 14:10:11 +04001input: {
2 name: string
3 from: string
4 to: string
5 autoAssign: bool | *false
6 namespace: string
7}
8
Giorgi Lekveishvili03d6f4b2024-03-08 13:05:21 +04009name: "metallb-ipaddresspool"
Giorgi Lekveishvili08af67a2024-01-18 08:53:05 +040010namespace: "metallb-ipaddresspool"
11
Giorgi Lekveishvilie009a5d2024-01-05 14:10:11 +040012images: {}
13
14charts: {
15 metallbIPAddressPool: {
16 chart: "charts/metallb-ipaddresspool"
17 sourceRef: {
18 kind: "GitRepository"
19 name: "pcloud"
20 namespace: global.pcloudEnvName // TODO(gio): id ?
21 }
22 }
23}
24
25helm: {
26 "metallb-ipaddresspool-\(input.name)": {
27 chart: charts.metallbIPAddressPool
28 values: {
29 name: input.name
30 from: input.from
31 to: input.to
32 autoAssign: input.autoAssign
33 namespace: input.namespace
34 }
35 }
36}