-
Notifications
You must be signed in to change notification settings - Fork 1
/
garden.yml
59 lines (59 loc) · 1.67 KB
/
garden.yml
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
59
kind: Project
name: mpci
variables:
execution-image-namespace: mpci
backendApiHost: "" # leave empty to use in cluster backend
postgres-persistence: {}
environments:
- name: local
providers:
- name: local-kubernetes
variables:
postgres-user: admin
postgres-password: admin
node-hosts: ""
node-name: minikube
schedulerDependencies: ['postgres','migrate-db']
- name: minimal-dev-setup
providers:
- name: local-kubernetes
variables:
postgres-user: admin
postgres-password: admin
node-hosts: ""
node-name: minikube
schedulerDependencies: ['postgres']
- name: mpci
providers:
- name: kubernetes
context: mpci
deploymentRegistry:
hostname: docker.io
namespace: mpci
production: true
variables:
postgres-user: admin
postgres-password: admin
node-hosts: vm-mpws2019.eaalab.hpi.uni-potsdam.de
node-name: vm-mpws2019
schedulerDependencies: ['postgres','migrate-db']
- name: porsche-mpci
providers:
- name: kubernetes
context: mpci
namespace: porsche-mpci
deploymentRegistry:
hostname: docker.io
namespace: mpci
production: true
variables:
postgres-user: admin
postgres-password: admin
postgres-persistence:
size: 50Gi
storageClass: nfs-client
annotations:
volume.beta.kubernetes.io/storage-provisioner: cluster.local/nfs-client-nfs-client-provisioner
node-hosts: vm-mpws2018-proj.eaalab.hpi.uni-potsdam.de, mpci.epic-hpi.de
node-name: vm-mpws2018-proj
schedulerDependencies: ['postgres','migrate-db']