| 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: { |
| 21 | chart: "charts/soft-serve" |
| 22 | sourceRef: { |
| 23 | kind: "GitRepository" |
| 24 | name: "pcloud" |
| 25 | namespace: global.pcloudEnvName |
| 26 | } |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | helm: { |
| 31 | softserve: { |
| 32 | chart: charts.softserve |
| 33 | values: { |
| 34 | serviceType: "ClusterIP" |
| 35 | addressPool: "" |
| 36 | reservedIP: "" |
| 37 | adminKey: input.adminKey |
| 38 | privateKey: input.privateKey |
| 39 | publicKey: input.publicKey |
| 40 | ingress: { |
| 41 | enabled: false |
| 42 | } |
| 43 | image: { |
| 44 | repository: images.softserve.fullName |
| 45 | tag: images.softserve.tag |
| 46 | pullPolicy: images.softserve.pullPolicy |
| 47 | } |
| 48 | } |
| 49 | } |
| 50 | } |