-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
45 lines (44 loc) · 1.21 KB
/
app.json
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
{
"name": "unleash-proxy",
"env": {
"UNLEASH_URL": {
"description": "The API URL of the Unleash instance you want to connect to",
"required": true,
"order": 1
},
"UNLEASH_API_TOKEN": {
"description": "API Key to use on the proxy client sdk",
"required": true,
"order": 2
},
"UNLEASH_INSTANCE_ID": {
"description": "Typically a hostname, pod id or something similar",
"required": false,
"order": 3
},
"UNLEASH_APP_NAME": {
"description": "The application name to use when registering with Unleash",
"value": "production",
"order": 4
},
"UNLEASH_FETCH_INTERVAL": {
"description": "How often the proxy should query Unleash for updates, defined in ms.",
"value": "5000",
"order": 5
},
"UNLEASH_PROXY_SECRETS": {
"description": "API Key to use on the proxy client sdk",
"generator": "secret",
"order": 6
}
},
"options": {
"allow-unauthenticated": true,
"memory": "512Mi",
"cpu": "1",
"port": 8080,
"http2": false,
"concurrency": 80,
"max-instances": 10
}
}