blob: 3f0b432441889bfd4755d5e8192e188a72825c9f [file] [log] [blame]
Giorgi Lekveishvilie009a5d2024-01-05 14:10:11 +04001input: {
2 privateKey: string
3 publicKey: string
4 adminKey: string
5}
6
7images: {
8 softserve: {
9 repository: "charmcli"
10 name: "soft-serve"
11 tag: "v0.7.1"
12 pullPolicy: "IfNotPresent"
13 }
14}
15
16charts: {
17 softserve: {
18 chart: "charts/soft-serve"
19 sourceRef: {
20 kind: "GitRepository"
21 name: "pcloud"
22 namespace: global.pcloudEnvName
23 }
24 }
25}
26
27helm: {
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}