blob: a0bb4e539ea62e0e03c547ae27d95b53ee5c0d96 [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
gio7fbd4ad2024-08-27 10:06:39 +040012out: {
13 charts: {
14 metallbIPAddressPool: {
15 kind: "GitRepository"
16 address: "https://code.v1.dodo.cloud/helm-charts"
17 branch: "main"
18 path: "charts/metallb-ipaddresspool"
19 }
Giorgi Lekveishvilie009a5d2024-01-05 14:10:11 +040020 }
Giorgi Lekveishvilie009a5d2024-01-05 14:10:11 +040021
gio7fbd4ad2024-08-27 10:06:39 +040022 helm: {
23 "metallb-ipaddresspool-\(input.name)": {
24 chart: charts.metallbIPAddressPool
25 values: {
26 name: input.name
27 from: input.from
28 to: input.to
29 autoAssign: input.autoAssign
30 namespace: input.namespace
31 }
Giorgi Lekveishvilie009a5d2024-01-05 14:10:11 +040032 }
33 }
34}