| Giorgi Lekveishvili | e009a5d | 2024-01-05 14:10:11 +0400 | [diff] [blame] | 1 | input: { |
| 2 | name: string |
| 3 | from: string |
| 4 | to: string |
| 5 | autoAssign: bool | *false |
| 6 | namespace: string |
| 7 | } |
| 8 | |
| Giorgi Lekveishvili | 03d6f4b | 2024-03-08 13:05:21 +0400 | [diff] [blame] | 9 | name: "metallb-ipaddresspool" |
| Giorgi Lekveishvili | 08af67a | 2024-01-18 08:53:05 +0400 | [diff] [blame] | 10 | namespace: "metallb-ipaddresspool" |
| 11 | |
| Giorgi Lekveishvili | e009a5d | 2024-01-05 14:10:11 +0400 | [diff] [blame] | 12 | images: {} |
| 13 | |
| 14 | charts: { |
| 15 | metallbIPAddressPool: { |
| gio | f884341 | 2024-05-22 16:38:05 +0400 | [diff] [blame] | 16 | kind: "GitRepository" |
| 17 | address: "https://github.com/giolekva/pcloud.git" |
| 18 | branch: "main" |
| 19 | path: "charts/metallb-ipaddresspool" |
| Giorgi Lekveishvili | e009a5d | 2024-01-05 14:10:11 +0400 | [diff] [blame] | 20 | } |
| 21 | } |
| 22 | |
| 23 | helm: { |
| 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 | } |