-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathvalues.yaml
More file actions
58 lines (48 loc) · 1.63 KB
/
values.yaml
File metadata and controls
58 lines (48 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
appName: pubgrade
pubgrade_url: "https://pubgrade.dyn.cloud.e-infra.cz"
pubgrade_build_complete_updater:
replicaCount: 1
image: "akash7778/pubgrade-updater" # This will be moved to elixir-cloud-aai
imagePullPolicy: IfNotPresent
pubgrade_mongodb:
image: mongo:3.6
name: mongodb
replicaCount: 1
port: 27017
portType: NodePort
volume:
# In case you are working with minikube or another single-worker solution
# you can add a peristent volume from a local directory. For fully-distributed
# clusters you should use a StorageClass already existing in your cluster, so set this to false.
deployLocalPv: false
name: mongodb-storage
claimName: mongo-pvc
storageActive: true
storageClass: nfs-csi
size: 2Gi
pathToLocalDir: /tmp/mongo-pv
securityContext:
runAsUser: 1004510000
pubgrade_webserver:
serviceAccountName: pubgrade
replicaCount: 3
imagePullPolicy: IfNotPresent
image: akash7778/pubgrade:test_build_1 # This will be moved to elixir-cloud-aai
port: 8080
portType: NodePort
volume:
# In case you are working with minikube or another single-worker solution
# you can add a peristent volume from a local directory. For fully-distributed
# clusters you should use a StorageClass already existing in your cluster, so set this to false.
deployLocalPv: false
pathToMountedDir: /pubgrade_temp_files
pathToLocalDir: /tmp/pubgrade-pv
pvcName: pubgrade-pvc
storageClass: nfs-csi
size: 2Gi
storage_active: true
ingress:
url: pubgrade.dyn.cloud.e-infra.cz
tlsSecrets: pubgrade-dyn-cloud-e-infra-cz-tls
securityContext:
runAsUser: 1004510000