blob: cff139e73f51ec1623417902a2c8a7d3c9cb7834 [file] [log] [blame]
Giorgi Lekveishvilie009a5d2024-01-05 14:10:11 +04001input: {
2 privateKey: string
3 publicKey: string
4 adminKey: string
5}
6
Giorgi Lekveishvili03d6f4b2024-03-08 13:05:21 +04007name: "config-repo"
Giorgi Lekveishvili08af67a2024-01-18 08:53:05 +04008namespace: "config-repo"
9
Giorgi Lekveishvilie009a5d2024-01-05 14:10:11 +040010images: {
11 softserve: {
12 repository: "charmcli"
13 name: "soft-serve"
14 tag: "v0.7.1"
15 pullPolicy: "IfNotPresent"
16 }
17}
18
19charts: {
20 softserve: {
giof8843412024-05-22 16:38:05 +040021 kind: "GitRepository"
22 address: "https://github.com/giolekva/pcloud.git"
23 branch: "main"
24 path: "charts/soft-serve"
Giorgi Lekveishvilie009a5d2024-01-05 14:10:11 +040025 }
26}
27
28helm: {
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}