forked from sassoftware/sas-container-recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig-multiple.yml
73 lines (71 loc) · 1.38 KB
/
config-multiple.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
httpproxy:
roles:
- tini
- sas-prerequisites
- httpproxy
- cloud-config
ports:
- "80:8080"
- "443:6443"
#environment:
#- "SAS_VERSION=3.5"
# TODO
#volumes:
#- static-content:/httpproxy
resources:
limits:
- "memory=1024Mi"
requests:
- "memory=250Mi"
programming:
user: root
roles:
- tini
- sas-prerequisites
- sas-java
- programming
- spawner-config
- batchserver
- connect-config
- sas-studio-config
- cloud-config
ports:
- "7080:7080"
resources:
limits:
- "memory=12000Mi"
requests:
- "memory=512Mi"
secrets:
- "SETINIT_TEXT_ENC="
sas-casserver-primary:
user: root
roles:
- tini
- sas-prerequisites
- sas-java
- sas-casserver-primary
- cloud-config
ports:
- "5570:5570"
- "5571:5571"
- "8777:8777"
environment:
- "CASENV_ADMIN_USER=sasdemo"
- "CASENV_CAS_VIRTUAL_PROTO=http"
- "CASENV_CAS_VIRTUAL_HOST={{ PROJECT_NAME }}.{{ SAS_K8S_NAMESPACE }}.{{ SAS_K8S_INGRESS_DOMAIN }}"
- "CASENV_CASDATADIR=/cas/data"
- "CASENV_CASPERMSTORE=/cas/permstore"
- "CASCFG_MODE=smp"
resources:
limits:
- "memory=12000Mi"
requests:
- "memory=1024Mi"
secrets:
- "SETINIT_TEXT_ENC="
- "CASKEY=REPLACE ME with unique text. This is used to allow CAS workers to talk to the CAS controller"
volumes:
- "data=/cas/data"
- "cache=/cas/cache"
- "permstore=/cas/permstore"