| 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 | |
| Giorgi Lekveishvili | e009a5d | 2024-01-05 14:10:11 +0400 | [diff] [blame] | 10 | images: { |
| 11 | softserve: { |
| 12 | repository: "charmcli" |
| 13 | name: "soft-serve" |
| 14 | tag: "v0.7.1" |
| 15 | pullPolicy: "IfNotPresent" |
| 16 | } |
| 17 | } |
| 18 | |
| 19 | charts: { |
| 20 | softserve: { |
| gio | f884341 | 2024-05-22 16:38:05 +0400 | [diff] [blame] | 21 | kind: "GitRepository" |
| 22 | address: "https://github.com/giolekva/pcloud.git" |
| 23 | branch: "main" |
| 24 | path: "charts/soft-serve" |
| Giorgi Lekveishvili | e009a5d | 2024-01-05 14:10:11 +0400 | [diff] [blame] | 25 | } |
| 26 | } |
| 27 | |
| 28 | helm: { |
| 29 | softserve: { |
| 30 | chart: charts.softserve |
| 31 | values: { |
| 32 | serviceType: "ClusterIP" |
| 33 | addressPool: "" |
| 34 | reservedIP: "" |
| 35 | adminKey: input.adminKey |
| 36 | privateKey: input.privateKey |
| 37 | publicKey: input.publicKey |
| 38 | ingress: { |
| 39 | enabled: false |
| 40 | } |
| 41 | image: { |
| 42 | repository: images.softserve.fullName |
| 43 | tag: images.softserve.tag |
| 44 | pullPolicy: images.softserve.pullPolicy |
| 45 | } |
| 46 | } |
| 47 | } |
| 48 | } |