blob: 8d6a52f98e7581ade8f0b741e4af18c1a06c82aa [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: {
21 chart: "charts/soft-serve"
22 sourceRef: {
23 kind: "GitRepository"
24 name: "pcloud"
25 namespace: global.pcloudEnvName
26 }
27 }
28}
29
30helm: {
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}