-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathscalingo.json
47 lines (47 loc) · 1.59 KB
/
scalingo.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
46
47
{
"name": "Kibana",
"description": "Build analytics and data visualization dashboards for Elasticsearch with Kibana 4.",
"keywords": [
"kibana", "time-series", "metrics", "analytics", "dataviz", "visualization",
"elasticsearch", "elastic"
],
"website": "https://elastic.co/",
"repository": "https://github.com/Scalingo/kibana-scalingo",
"logo": "https://cdn.rawgit.com/Scalingo/kibana-scalingo/master/kibana.svg",
"success_url": "/",
"env": {
"ELASTICSEARCH_URL": {
"description": "URL to the Elasticsearch cluster you want to use with Kibana",
"value": "$SCALINGO_ELASTICSEARCH_URL",
"required": true
},
"ELASTICSEARCH_TLS_CA_URL": {
"description": "If Elasticsearch is using HTTPS with self-signed certificate, URL to this one",
"value": "https://db-api.osc-fr1.scalingo.com/api/ca_certificate",
"required": false
},
"ES_SSL_VERIFICATION_MODE": {
"description": "If you're using a custom hostname not handled by the TLS certificate, set to 'none'",
"value": "",
"required": false
},
"BUILDPACK_URL": {
"description": "Buildpack to use to deploy kibana",
"value": "https://github.com/Scalingo/kibana-buildpack",
"required": true
},
"KIBANA_USER": {
"description": "Username for Kibana authentication",
"value": "kibana-user",
"required": true
},
"KIBANA_PASSWORD": {
"description": "Password for Kibana authentication",
"value": "kibana-password",
"required": true
}
},
"addons": [
{"plan": "elasticsearch:elasticsearch-starter-512"}
]
}