| Giorgi Lekveishvili | e009a5d | 2024-01-05 14:10:11 +0400 | [diff] [blame^] | 1 | input: { |
| Giorgi Lekveishvili | 7c42760 | 2024-01-04 00:13:55 +0400 | [diff] [blame] | 2 | network: #Network |
| 3 | subdomain: string |
| 4 | } |
| 5 | |
| Giorgi Lekveishvili | 7c42760 | 2024-01-04 00:13:55 +0400 | [diff] [blame] | 6 | _domain: "\(input.subdomain).\(input.network.domain)" |
| 7 | |
| 8 | readme: "rpuppy application will be installed on \(input.network.name) network and be accessible to any user on https://\(_domain)" |
| 9 | |
| 10 | images: { |
| 11 | rpuppy: { |
| 12 | repository: "giolekva" |
| 13 | name: "rpuppy" |
| 14 | tag: "latest" |
| 15 | pullPolicy: "Always" |
| 16 | } |
| 17 | } |
| 18 | |
| 19 | charts: { |
| 20 | rpuppy: { |
| Giorgi Lekveishvili | 9b52ab9 | 2024-01-05 13:12:48 +0400 | [diff] [blame] | 21 | chart: "charts/rpuppy" |
| 22 | sourceRef: { |
| Giorgi Lekveishvili | 7c42760 | 2024-01-04 00:13:55 +0400 | [diff] [blame] | 23 | kind: "GitRepository" |
| Giorgi Lekveishvili | 9b52ab9 | 2024-01-05 13:12:48 +0400 | [diff] [blame] | 24 | name: "pcloud" |
| 25 | namespace: global.id |
| Giorgi Lekveishvili | 7c42760 | 2024-01-04 00:13:55 +0400 | [diff] [blame] | 26 | } |
| Giorgi Lekveishvili | 7c42760 | 2024-01-04 00:13:55 +0400 | [diff] [blame] | 27 | } |
| 28 | } |
| 29 | |
| 30 | helm: { |
| 31 | rpuppy: { |
| 32 | chart: charts.rpuppy |
| 33 | values: { |
| 34 | ingressClassName: input.network.ingressClass |
| 35 | certificateIssuer: input.network.certificateIssuer |
| 36 | domain: _domain |
| 37 | image: { |
| 38 | repository: images.rpuppy.fullName |
| 39 | tag: images.rpuppy.tag |
| 40 | pullPolicy: images.rpuppy.pullPolicy |
| 41 | } |
| 42 | } |
| 43 | } |
| 44 | } |