| 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 | |
| 7 | images: { |
| 8 | softserve: { |
| 9 | repository: "charmcli" |
| 10 | name: "soft-serve" |
| 11 | tag: "v0.7.1" |
| 12 | pullPolicy: "IfNotPresent" |
| 13 | } |
| 14 | } |
| 15 | |
| 16 | charts: { |
| 17 | softserve: { |
| 18 | chart: "charts/soft-serve" |
| 19 | sourceRef: { |
| 20 | kind: "GitRepository" |
| 21 | name: "pcloud" |
| 22 | namespace: global.pcloudEnvName |
| 23 | } |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | helm: { |
| 28 | softserve: { |
| 29 | chart: charts.softserve |
| 30 | values: { |
| 31 | serviceType: "ClusterIP" |
| 32 | addressPool: "" |
| 33 | reservedIP: "" |
| 34 | adminKey: input.adminKey |
| 35 | privateKey: input.privateKey |
| 36 | publicKey: input.publicKey |
| 37 | ingress: { |
| 38 | enabled: false |
| 39 | } |
| 40 | image: { |
| 41 | repository: images.softserve.fullName |
| 42 | tag: images.softserve.tag |
| 43 | pullPolicy: images.softserve.pullPolicy |
| 44 | } |
| 45 | } |
| 46 | } |
| 47 | } |