| Giorgi Lekveishvili | e009a5d | 2024-01-05 14:10:11 +0400 | [diff] [blame] | 1 | input: { |
| 2 | privateKey: string |
| 3 | publicKey: string |
| 4 | adminKey: string |
| 5 | } |
| 6 | |
| Giorgi Lekveishvili | 03d6f4b | 2024-03-08 13:05:21 +0400 | [diff] [blame] | 7 | name: "config-repo" |
| Giorgi Lekveishvili | 08af67a | 2024-01-18 08:53:05 +0400 | [diff] [blame] | 8 | namespace: "config-repo" |
| 9 | |
| gio | 7fbd4ad | 2024-08-27 10:06:39 +0400 | [diff] [blame] | 10 | out: { |
| 11 | images: { |
| 12 | softserve: { |
| 13 | repository: "charmcli" |
| 14 | name: "soft-serve" |
| 15 | tag: "v0.7.1" |
| 16 | pullPolicy: "IfNotPresent" |
| 17 | } |
| Giorgi Lekveishvili | e009a5d | 2024-01-05 14:10:11 +0400 | [diff] [blame] | 18 | } |
| Giorgi Lekveishvili | e009a5d | 2024-01-05 14:10:11 +0400 | [diff] [blame] | 19 | |
| gio | 7fbd4ad | 2024-08-27 10:06:39 +0400 | [diff] [blame] | 20 | charts: { |
| 21 | softserve: { |
| 22 | kind: "GitRepository" |
| 23 | address: "https://code.v1.dodo.cloud/helm-charts" |
| 24 | branch: "main" |
| 25 | path: "charts/soft-serve" |
| 26 | } |
| Giorgi Lekveishvili | e009a5d | 2024-01-05 14:10:11 +0400 | [diff] [blame] | 27 | } |
| Giorgi Lekveishvili | e009a5d | 2024-01-05 14:10:11 +0400 | [diff] [blame] | 28 | |
| gio | 7fbd4ad | 2024-08-27 10:06:39 +0400 | [diff] [blame] | 29 | helm: { |
| 30 | softserve: { |
| 31 | chart: charts.softserve |
| 32 | values: { |
| 33 | serviceType: "ClusterIP" |
| 34 | addressPool: "" |
| 35 | reservedIP: "" |
| 36 | adminKey: input.adminKey |
| 37 | privateKey: input.privateKey |
| 38 | publicKey: input.publicKey |
| 39 | image: { |
| 40 | repository: images.softserve.fullName |
| 41 | tag: images.softserve.tag |
| 42 | pullPolicy: images.softserve.pullPolicy |
| 43 | } |
| Giorgi Lekveishvili | e009a5d | 2024-01-05 14:10:11 +0400 | [diff] [blame] | 44 | } |
| 45 | } |
| 46 | } |
| 47 | } |