-
Notifications
You must be signed in to change notification settings - Fork 0
/
sip.yml
107 lines (102 loc) · 2.13 KB
/
sip.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
---
ingress:
- name: "http-default"
subdomain: exams
http:
- path: /
port: 80
postgres:
- name: db
s3:
- name: files
auth:
- name: oidc
accessType: confidential
clientProtocol: openid-connect
validRedirectURIs:
- https://exams.com.staging-sip.ethz.ch/*
scopes:
defaultClientScopes:
- profile
- home-organization
- roles
roles:
- name: admin
description: Admin of the application
env:
- name: "RUNTIME_COMMUNITY_SOLUTIONS_SESSION_SECRET"
secret:
key: key
create: random
- name: "RUNTIME_COMMUNITY_SOLUTIONS_API_KEY"
secret:
key: api-key
create: provided
- name: "FRONTEND_GLOB_ID"
secret:
key: frontend-glob-id
create: provided
- name: "FRONTEND_TITLE_PREFIX"
secret:
key: frontend-title-prefix
create: provided
- name: "FRONTEND_TITLE_SUFFIX"
secret:
key: frontend-title-suffix
create: provided
- name: "FRONTEND_EMAIL_ADDRESS"
secret:
key: frontend-email-address
create: provided
- name: "FRONTEND_IMPRINT"
secret:
key: frontend-imprint
create: provided
- name: "FRONTEND_PRIVACY_POLICY"
secret:
key: frontend-privacy-policy
create: provided
- name: "FRONTEND_FAVICON_URL"
secret:
key: frontend-favicon-url
create: provided
- name: "RUNTIME_FRONTEND_KEYCLOAK_URL"
value: https://auth.vseth.ethz.ch/auth
- name: "RUNTIME_FRONTEND_KEYCLOAK_REALM"
value: VSETH
- name: "FRONTEND_UNLOCK_DEPOSIT_NOTICE"
secret:
key: frontend-unlock-deposit-notice
create: provided
- name: "BANNED_USERS"
secret:
key: banned-users
create: provided
livenessProbe:
httpGet:
path: /health
port: 80
initialDelaySeconds: 10
periodSeconds: 3
startupProbe:
httpGet:
path: /health
port: 80
failureThreshold: 30
periodSeconds: 10
readinessProbe:
httpGet:
path: /
port: 80
initialDelaySeconds: 10
periodSeconds: 3
prometheus:
path: /metrics/
port: 80
resources:
limits:
memory: 512Mi
cpu: 500m
requests:
memory: 256Mi
cpu: 250m