blob: d990a8823bc926724af12ec284f6a3b1811255b9 [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: {
giof8843412024-05-22 16:38:05 +040016 kind: "GitRepository"
17 address: "https://github.com/giolekva/pcloud.git"
18 branch: "main"
19 path: "charts/metallb-ipaddresspool"
Giorgi Lekveishvilie009a5d2024-01-05 14:10:11 +040020 }
21}
22
23helm: {
24 "metallb-ipaddresspool-\(input.name)": {
25 chart: charts.metallbIPAddressPool
26 values: {
27 name: input.name
28 from: input.from
29 to: input.to
30 autoAssign: input.autoAssign
31 namespace: input.namespace
32 }
33 }
34}