blob: 8c64eb14c174a71b004a90671c94813bcbcb52f6 [file] [log] [blame]
Giorgi Lekveishvilie009a5d2024-01-05 14:10:11 +04001input: {
2 privateKey: string
3 publicKey: string
4 adminKey: string
5}
6
Giorgi Lekveishvili08af67a2024-01-18 08:53:05 +04007namespace: "config-repo"
8
Giorgi Lekveishvilie009a5d2024-01-05 14:10:11 +04009images: {
10 softserve: {
11 repository: "charmcli"
12 name: "soft-serve"
13 tag: "v0.7.1"
14 pullPolicy: "IfNotPresent"
15 }
16}
17
18charts: {
19 softserve: {
20 chart: "charts/soft-serve"
21 sourceRef: {
22 kind: "GitRepository"
23 name: "pcloud"
24 namespace: global.pcloudEnvName
25 }
26 }
27}
28
29helm: {
30 softserve: {
31 chart: charts.softserve
32 values: {
33 serviceType: "ClusterIP"
34 addressPool: ""
35 reservedIP: ""
36 adminKey: input.adminKey
37 privateKey: input.privateKey
38 publicKey: input.publicKey
39 ingress: {
40 enabled: false
41 }
42 image: {
43 repository: images.softserve.fullName
44 tag: images.softserve.tag
45 pullPolicy: images.softserve.pullPolicy
46 }
47 }
48 }
49}