scalingo 3.5.0 → 4.0.beta2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/dependabot.yml +1 -1
- data/.github/workflows/ruby.yml +1 -1
- data/.rubocop.yml +40 -0
- data/CHANGELOG.md +22 -1
- data/Gemfile +2 -0
- data/README.md +13 -62
- data/bin/console +11 -1
- data/bin/lint +2 -0
- data/bin/setup +21 -6
- data/bin/specs +2 -0
- data/lib/scalingo/api/client.rb +21 -39
- data/lib/scalingo/api/endpoint.rb +88 -11
- data/lib/scalingo/auth/keys.rb +4 -50
- data/lib/scalingo/auth/scm_integrations.rb +4 -51
- data/lib/scalingo/auth/tokens.rb +5 -72
- data/lib/scalingo/auth/two_factor_auth.rb +4 -55
- data/lib/scalingo/auth/user.rb +3 -38
- data/lib/scalingo/bearer_token.rb +16 -9
- data/lib/scalingo/billing/profile.rb +3 -40
- data/lib/scalingo/client.rb +21 -31
- data/lib/scalingo/configuration.rb +0 -24
- data/lib/scalingo/core_client.rb +9 -29
- data/lib/scalingo/database/backups.rb +9 -0
- data/lib/scalingo/database/databases.rb +8 -0
- data/lib/scalingo/{regional_database.rb → database.rb} +3 -3
- data/lib/scalingo/faraday/extract_meta.rb +33 -0
- data/lib/scalingo/faraday/extract_root_value.rb +18 -0
- data/lib/scalingo/faraday/response.rb +36 -0
- data/lib/scalingo/regional/addons.rb +18 -130
- data/lib/scalingo/regional/apps.rb +10 -103
- data/lib/scalingo/regional/autoscalers.rb +5 -64
- data/lib/scalingo/regional/collaborators.rb +4 -51
- data/lib/scalingo/regional/containers.rb +4 -51
- data/lib/scalingo/regional/deployments.rb +3 -38
- data/lib/scalingo/regional/domains.rb +5 -64
- data/lib/scalingo/regional/environment.rb +6 -77
- data/lib/scalingo/regional/events.rb +5 -50
- data/lib/scalingo/regional/logs.rb +10 -28
- data/lib/scalingo/regional/metrics.rb +2 -34
- data/lib/scalingo/regional/notifiers.rb +7 -90
- data/lib/scalingo/regional/operations.rb +5 -18
- data/lib/scalingo/regional/scm_repo_links.rb +8 -103
- data/lib/scalingo/token_holder.rb +1 -46
- data/lib/scalingo/version.rb +1 -1
- data/scalingo.gemspec +4 -1
- metadata +61 -205
- data/lib/scalingo/api/response.rb +0 -69
- data/lib/scalingo/regional_database/backups.rb +0 -44
- data/lib/scalingo/regional_database/databases.rb +0 -31
- data/samples/auth/keys/_meta.json +0 -13
- data/samples/auth/keys/all-200.json +0 -62
- data/samples/auth/keys/create-201.json +0 -67
- data/samples/auth/keys/create-422.json +0 -34
- data/samples/auth/keys/destroy-204.json +0 -19
- data/samples/auth/keys/destroy-404.json +0 -19
- data/samples/auth/keys/show-200.json +0 -60
- data/samples/auth/keys/show-404.json +0 -19
- data/samples/auth/scm_integrations/_meta.json +0 -14
- data/samples/auth/scm_integrations/all-200.json +0 -41
- data/samples/auth/scm_integrations/create-201.json +0 -41
- data/samples/auth/scm_integrations/create-422.json +0 -36
- data/samples/auth/scm_integrations/destroy-204.json +0 -15
- data/samples/auth/scm_integrations/destroy-404.json +0 -23
- data/samples/auth/scm_integrations/show-200.json +0 -34
- data/samples/auth/scm_integrations/show-404.json +0 -23
- data/samples/auth/tokens/_meta.json +0 -13
- data/samples/auth/tokens/all-200.json +0 -32
- data/samples/auth/tokens/create-201.json +0 -37
- data/samples/auth/tokens/destroy-204.json +0 -19
- data/samples/auth/tokens/destroy-404.json +0 -19
- data/samples/auth/tokens/exchange-200.json +0 -25
- data/samples/auth/tokens/exchange-401.json +0 -24
- data/samples/auth/tokens/renew-200.json +0 -32
- data/samples/auth/tokens/renew-404.json +0 -20
- data/samples/auth/two_factor_auth/_meta.json +0 -10
- data/samples/auth/two_factor_auth/disable-not-initiated.json +0 -23
- data/samples/auth/two_factor_auth/disable-success.json +0 -29
- data/samples/auth/two_factor_auth/initiate-already-enabled.json +0 -29
- data/samples/auth/two_factor_auth/initiate-success.json +0 -36
- data/samples/auth/two_factor_auth/initiate-wrong-provider.json +0 -29
- data/samples/auth/two_factor_auth/status.json +0 -29
- data/samples/auth/two_factor_auth/validate-not-initiated.json +0 -29
- data/samples/auth/two_factor_auth/validate-success.json +0 -49
- data/samples/auth/two_factor_auth/validate-wrong.json +0 -29
- data/samples/auth/user/_meta.json +0 -10
- data/samples/auth/user/self.json +0 -54
- data/samples/auth/user/stop-free-trial.json +0 -24
- data/samples/auth/user/update-200.json +0 -59
- data/samples/auth/user/update-422.json +0 -33
- data/samples/billing/profile/_meta.json +0 -23
- data/samples/billing/profile/create-201.json +0 -50
- data/samples/billing/profile/create-400.json +0 -27
- data/samples/billing/profile/create-422.json +0 -44
- data/samples/billing/profile/show-200.json +0 -41
- data/samples/billing/profile/show-404.json +0 -22
- data/samples/billing/profile/update-200.json +0 -47
- data/samples/billing/profile/update-422.json +0 -32
- data/samples/regional/addons/_meta.json +0 -22
- data/samples/regional/addons/categories-guest.json +0 -36
- data/samples/regional/addons/categories-logged.json +0 -37
- data/samples/regional/addons/destroy-204.json +0 -19
- data/samples/regional/addons/destroy-404.json +0 -24
- data/samples/regional/addons/find-200.json +0 -48
- data/samples/regional/addons/find-404.json +0 -24
- data/samples/regional/addons/for-200.json +0 -50
- data/samples/regional/addons/providers-guest.json +0 -588
- data/samples/regional/addons/providers-logged.json +0 -705
- data/samples/regional/addons/provision-201.json +0 -58
- data/samples/regional/addons/provision-400.json +0 -29
- data/samples/regional/addons/sso-200.json +0 -49
- data/samples/regional/addons/sso-404.json +0 -24
- data/samples/regional/addons/token-200.json +0 -49
- data/samples/regional/addons/token-404.json +0 -24
- data/samples/regional/addons/update-200.json +0 -58
- data/samples/regional/addons/update-404.json +0 -30
- data/samples/regional/apps/_meta.json +0 -52
- data/samples/regional/apps/all.json +0 -99
- data/samples/regional/apps/create-201.json +0 -66
- data/samples/regional/apps/create-422.json +0 -34
- data/samples/regional/apps/destroy-204.json +0 -19
- data/samples/regional/apps/destroy-404.json +0 -24
- data/samples/regional/apps/destroy-422.json +0 -27
- data/samples/regional/apps/find-200.json +0 -60
- data/samples/regional/apps/find-404.json +0 -24
- data/samples/regional/apps/logs_url.json +0 -62
- data/samples/regional/apps/rename-200.json +0 -65
- data/samples/regional/apps/rename-404.json +0 -29
- data/samples/regional/apps/rename-422.json +0 -33
- data/samples/regional/apps/transfer-200.json +0 -65
- data/samples/regional/apps/transfer-404.json +0 -27
- data/samples/regional/apps/transfer-422.json +0 -34
- data/samples/regional/apps/update-200.json +0 -66
- data/samples/regional/apps/update-stack-404.json +0 -30
- data/samples/regional/autoscalers/_meta.json +0 -27
- data/samples/regional/autoscalers/create-201.json +0 -49
- data/samples/regional/autoscalers/create-500.json +0 -32
- data/samples/regional/autoscalers/destroy-204.json +0 -20
- data/samples/regional/autoscalers/destroy-404.json +0 -25
- data/samples/regional/autoscalers/find-200.json +0 -39
- data/samples/regional/autoscalers/find-404.json +0 -25
- data/samples/regional/autoscalers/for-200.json +0 -41
- data/samples/regional/autoscalers/update-200.json +0 -45
- data/samples/regional/autoscalers/update-404.json +0 -31
- data/samples/regional/autoscalers/update-500.json +0 -30
- data/samples/regional/collaborators/_meta.json +0 -17
- data/samples/regional/collaborators/accept-200.json +0 -60
- data/samples/regional/collaborators/accept-400.json +0 -24
- data/samples/regional/collaborators/accept-404.json +0 -24
- data/samples/regional/collaborators/destroy-204.json +0 -19
- data/samples/regional/collaborators/destroy-404.json +0 -24
- data/samples/regional/collaborators/for-200.json +0 -34
- data/samples/regional/collaborators/invite-201.json +0 -37
- data/samples/regional/collaborators/invite-422.json +0 -34
- data/samples/regional/containers/_meta.json +0 -25
- data/samples/regional/containers/for-200.json +0 -39
- data/samples/regional/containers/restart-202.json +0 -28
- data/samples/regional/containers/restart-422.json +0 -33
- data/samples/regional/containers/scale-202.json +0 -48
- data/samples/regional/containers/scale-422.json +0 -36
- data/samples/regional/containers/sizes-guest.json +0 -115
- data/samples/regional/containers/sizes-logged.json +0 -116
- data/samples/regional/deployments/_meta.json +0 -8
- data/samples/regional/deployments/find-200.json +0 -45
- data/samples/regional/deployments/find-404.json +0 -24
- data/samples/regional/deployments/for-with-paging.json +0 -35
- data/samples/regional/deployments/for-without-pages.json +0 -56
- data/samples/regional/deployments/logs-200.json +0 -22
- data/samples/regional/deployments/logs-404.json +0 -24
- data/samples/regional/domains/_meta.json +0 -21
- data/samples/regional/domains/create-201.json +0 -44
- data/samples/regional/domains/create-422.json +0 -33
- data/samples/regional/domains/destroy-204.json +0 -19
- data/samples/regional/domains/destroy-404.json +0 -24
- data/samples/regional/domains/find-200.json +0 -38
- data/samples/regional/domains/find-404.json +0 -24
- data/samples/regional/domains/for-200.json +0 -40
- data/samples/regional/domains/update-200.json +0 -44
- data/samples/regional/domains/update-404.json +0 -30
- data/samples/regional/domains/update-422.json +0 -33
- data/samples/regional/environment/_meta.json +0 -43
- data/samples/regional/environment/bulk-destroy-204.json +0 -19
- data/samples/regional/environment/bulk-update-200.json +0 -70
- data/samples/regional/environment/create-201.json +0 -36
- data/samples/regional/environment/create-422.json +0 -37
- data/samples/regional/environment/destroy-204.json +0 -19
- data/samples/regional/environment/destroy-404.json +0 -24
- data/samples/regional/environment/for-200.json +0 -31
- data/samples/regional/environment/update-200.json +0 -35
- data/samples/regional/environment/update-404.json +0 -30
- data/samples/regional/events/_meta.json +0 -3
- data/samples/regional/events/all-200.json +0 -619
- data/samples/regional/events/categories-guest.json +0 -66
- data/samples/regional/events/categories-logged.json +0 -67
- data/samples/regional/events/for-200.json +0 -404
- data/samples/regional/events/types-guest.json +0 -288
- data/samples/regional/events/types-logged.json +0 -289
- data/samples/regional/logs/_meta.json +0 -11
- data/samples/regional/logs/archives-200.json +0 -28
- data/samples/regional/logs/get-guest-200.json +0 -18
- data/samples/regional/logs/get-logged-200.json +0 -19
- data/samples/regional/logs/get-with-limit-200.json +0 -18
- data/samples/regional/metrics/_meta.json +0 -15
- data/samples/regional/metrics/for-invalid-400.json +0 -23
- data/samples/regional/metrics/for-valid-cpu-200.json +0 -747
- data/samples/regional/metrics/for-valid-router-404.json +0 -23
- data/samples/regional/metrics/types-guest.json +0 -66
- data/samples/regional/metrics/types-logged.json +0 -67
- data/samples/regional/notifiers/_meta.json +0 -23
- data/samples/regional/notifiers/create-201.json +0 -55
- data/samples/regional/notifiers/create-404.json +0 -30
- data/samples/regional/notifiers/create-422.json +0 -36
- data/samples/regional/notifiers/destroy-204.json +0 -19
- data/samples/regional/notifiers/destroy-404.json +0 -24
- data/samples/regional/notifiers/find-200.json +0 -47
- data/samples/regional/notifiers/find-404.json +0 -24
- data/samples/regional/notifiers/for-200.json +0 -49
- data/samples/regional/notifiers/platforms-guest.json +0 -184
- data/samples/regional/notifiers/platforms-logged.json +0 -185
- data/samples/regional/notifiers/test-200.json +0 -22
- data/samples/regional/notifiers/test-404.json +0 -25
- data/samples/regional/notifiers/update-200.json +0 -53
- data/samples/regional/operations/_meta.json +0 -5
- data/samples/regional/operations/find-200.json +0 -31
- data/samples/regional/operations/find-404.json +0 -24
- data/samples/regional/scm_repo_links/_meta.json +0 -22
- data/samples/regional/scm_repo_links/create-201.json +0 -54
- data/samples/regional/scm_repo_links/destroy-204.json +0 -15
- data/samples/regional/scm_repo_links/manual-deploy-200.json +0 -32
- data/samples/regional/scm_repo_links/show-200.json +0 -43
- data/samples/regional/scm_repo_links/update-200.json +0 -50
- data/samples/regional_database/backups/_meta.json +0 -4
- data/samples/regional_database/backups/archive-200.json +0 -24
- data/samples/regional_database/backups/archive-400.json +0 -24
- data/samples/regional_database/backups/create-201.json +0 -32
- data/samples/regional_database/backups/create-400.json +0 -24
- data/samples/regional_database/backups/for-200.json +0 -52
- data/samples/regional_database/backups/for-400.json +0 -24
- data/samples/regional_database/databases/_meta.json +0 -3
- data/samples/regional_database/databases/find-200.json +0 -47
- data/samples/regional_database/databases/find-400.json +0 -24
- data/samples/regional_database/databases/upgrade-202.json +0 -39
- data/samples/regional_database/databases/upgrade-400.json +0 -24
@@ -1,48 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"path": "/apps/example-running-application/scale",
|
3
|
-
"method": "post",
|
4
|
-
"request": {
|
5
|
-
"headers": {
|
6
|
-
"Authorization": "Bearer the-bearer-token",
|
7
|
-
"Content-Type": "application/json"
|
8
|
-
},
|
9
|
-
"json_body": {
|
10
|
-
"containers": [
|
11
|
-
{
|
12
|
-
"name": "web",
|
13
|
-
"amount": 3
|
14
|
-
}
|
15
|
-
]
|
16
|
-
}
|
17
|
-
},
|
18
|
-
"response": {
|
19
|
-
"status": 202,
|
20
|
-
"headers": {
|
21
|
-
"Date": "Fri, 29 May 2020 13:27:45 GMT",
|
22
|
-
"Content-Type": "application/json; charset=utf-8",
|
23
|
-
"Transfer-Encoding": "chunked",
|
24
|
-
"Connection": "keep-alive",
|
25
|
-
"Cache-Control": "no-cache",
|
26
|
-
"Referrer-Policy": "strict-origin-when-cross-origin",
|
27
|
-
"Location": "https://api.st-sc.fr/v1/apps/example-running-application/operations/5ed10dd1f112e2000f9f93e1"
|
28
|
-
},
|
29
|
-
"json_body": {
|
30
|
-
"containers": [
|
31
|
-
{
|
32
|
-
"name": "web",
|
33
|
-
"command": "",
|
34
|
-
"amount": 3,
|
35
|
-
"size": "S",
|
36
|
-
"app_id": "5ed0fe5d884fef000f5e4fd1"
|
37
|
-
},
|
38
|
-
{
|
39
|
-
"name": "clock",
|
40
|
-
"command": "node cron.js",
|
41
|
-
"amount": 0,
|
42
|
-
"size": "M",
|
43
|
-
"app_id": "5ed0fe5d884fef000f5e4fd1"
|
44
|
-
}
|
45
|
-
]
|
46
|
-
}
|
47
|
-
}
|
48
|
-
}
|
@@ -1,36 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"path": "/apps/example-running-application/scale",
|
3
|
-
"method": "post",
|
4
|
-
"request": {
|
5
|
-
"headers": {
|
6
|
-
"Authorization": "Bearer the-bearer-token",
|
7
|
-
"Content-Type": "application/json"
|
8
|
-
},
|
9
|
-
"json_body": {
|
10
|
-
"containers": [
|
11
|
-
{
|
12
|
-
"name": "web",
|
13
|
-
"amount": 11
|
14
|
-
}
|
15
|
-
]
|
16
|
-
}
|
17
|
-
},
|
18
|
-
"response": {
|
19
|
-
"status": 422,
|
20
|
-
"headers": {
|
21
|
-
"Date": "Fri, 29 May 2020 13:27:44 GMT",
|
22
|
-
"Content-Type": "application/json; charset=utf-8",
|
23
|
-
"Transfer-Encoding": "chunked",
|
24
|
-
"Connection": "keep-alive",
|
25
|
-
"Cache-Control": "no-cache",
|
26
|
-
"Referrer-Policy": "strict-origin-when-cross-origin"
|
27
|
-
},
|
28
|
-
"json_body": {
|
29
|
-
"errors": {
|
30
|
-
"container-web-amount": [
|
31
|
-
"can't scale over 10 containers, contact us at support@scalingo.com if you need more"
|
32
|
-
]
|
33
|
-
}
|
34
|
-
}
|
35
|
-
}
|
36
|
-
}
|
@@ -1,115 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"path": "/features/container_sizes",
|
3
|
-
"method": "get",
|
4
|
-
"request": {
|
5
|
-
"headers": {
|
6
|
-
}
|
7
|
-
},
|
8
|
-
"response": {
|
9
|
-
"status": 200,
|
10
|
-
"headers": {
|
11
|
-
"Date": "Fri, 29 May 2020 13:27:44 GMT",
|
12
|
-
"Etag": "W/\"30e33a7afe7a41cc528bfeaeb2af8750\"",
|
13
|
-
"Content-Type": "application/json; charset=utf-8",
|
14
|
-
"Transfer-Encoding": "chunked",
|
15
|
-
"Connection": "keep-alive",
|
16
|
-
"Cache-Control": "max-age=0, private, must-revalidate",
|
17
|
-
"Referrer-Policy": "strict-origin-when-cross-origin"
|
18
|
-
},
|
19
|
-
"json_body": {
|
20
|
-
"container_sizes": [
|
21
|
-
{
|
22
|
-
"id": "2f6fb9e0-a23e-4c7b-b06d-3a00c3ec9d4f",
|
23
|
-
"human_cpu": "low CPU priority",
|
24
|
-
"name": "S",
|
25
|
-
"human_name": "S",
|
26
|
-
"memory": 268435456,
|
27
|
-
"ordinal": 2,
|
28
|
-
"hourly_price": 10,
|
29
|
-
"thirtydays_price": 720,
|
30
|
-
"pids_limit": 128,
|
31
|
-
"swap": null,
|
32
|
-
"sku": "ovh-st-fr1-app-s"
|
33
|
-
},
|
34
|
-
{
|
35
|
-
"id": "c8d9eec1-c1fb-4349-8f74-0eee76c1d6dd",
|
36
|
-
"human_cpu": "standard CPU priority",
|
37
|
-
"name": "M",
|
38
|
-
"human_name": "M",
|
39
|
-
"memory": 536870912,
|
40
|
-
"ordinal": 3,
|
41
|
-
"hourly_price": 20,
|
42
|
-
"thirtydays_price": 1440,
|
43
|
-
"pids_limit": 256,
|
44
|
-
"swap": null,
|
45
|
-
"sku": "ovh-st-fr1-app-m"
|
46
|
-
},
|
47
|
-
{
|
48
|
-
"id": "8cd5b2c4-952a-41bc-98bb-2e6f23c9cc2f",
|
49
|
-
"human_cpu": "standard CPU priority",
|
50
|
-
"name": "L",
|
51
|
-
"human_name": "L",
|
52
|
-
"memory": 1073741824,
|
53
|
-
"ordinal": 4,
|
54
|
-
"hourly_price": 40,
|
55
|
-
"thirtydays_price": 2880,
|
56
|
-
"pids_limit": 512,
|
57
|
-
"swap": null,
|
58
|
-
"sku": "ovh-st-fr1-app-l"
|
59
|
-
},
|
60
|
-
{
|
61
|
-
"id": "528077c6-cea1-4240-85b0-b87108c3b7ca",
|
62
|
-
"human_cpu": "high CPU priority",
|
63
|
-
"name": "XL",
|
64
|
-
"human_name": "XL",
|
65
|
-
"memory": 2147483648,
|
66
|
-
"ordinal": 5,
|
67
|
-
"hourly_price": 80,
|
68
|
-
"thirtydays_price": 5760,
|
69
|
-
"pids_limit": 1024,
|
70
|
-
"swap": null,
|
71
|
-
"sku": "ovh-st-fr1-app-xl"
|
72
|
-
},
|
73
|
-
{
|
74
|
-
"id": "85b8676f-f9d3-4a6e-91a3-4132211325d0",
|
75
|
-
"human_cpu": "high CPU priority",
|
76
|
-
"name": "2XL",
|
77
|
-
"human_name": "2XL",
|
78
|
-
"memory": 4294967296,
|
79
|
-
"ordinal": 6,
|
80
|
-
"hourly_price": 160,
|
81
|
-
"thirtydays_price": 11520,
|
82
|
-
"pids_limit": 2048,
|
83
|
-
"swap": null,
|
84
|
-
"sku": "ovh-st-fr1-app-2xl"
|
85
|
-
},
|
86
|
-
{
|
87
|
-
"id": "47cc2149-a965-47d8-a4e1-55cb33a18bda",
|
88
|
-
"human_cpu": "very high CPU priority",
|
89
|
-
"name": "3XL",
|
90
|
-
"human_name": "3XL",
|
91
|
-
"memory": 8589934592,
|
92
|
-
"ordinal": 7,
|
93
|
-
"hourly_price": 320,
|
94
|
-
"thirtydays_price": 23040,
|
95
|
-
"pids_limit": 4096,
|
96
|
-
"swap": null,
|
97
|
-
"sku": "ovh-st-fr1-app-3xl"
|
98
|
-
},
|
99
|
-
{
|
100
|
-
"id": "526f629a-f532-45a9-a16e-66d65ec20411",
|
101
|
-
"human_cpu": "very high CPU priority",
|
102
|
-
"name": "4XL",
|
103
|
-
"human_name": "4XL",
|
104
|
-
"memory": 17179869184,
|
105
|
-
"ordinal": 8,
|
106
|
-
"hourly_price": 480,
|
107
|
-
"thirtydays_price": 46080,
|
108
|
-
"pids_limit": 8182,
|
109
|
-
"swap": null,
|
110
|
-
"sku": "ovh-st-fr1-app-4xl"
|
111
|
-
}
|
112
|
-
]
|
113
|
-
}
|
114
|
-
}
|
115
|
-
}
|
@@ -1,116 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"path": "/features/container_sizes",
|
3
|
-
"method": "get",
|
4
|
-
"request": {
|
5
|
-
"headers": {
|
6
|
-
"Authorization": "Bearer the-bearer-token"
|
7
|
-
}
|
8
|
-
},
|
9
|
-
"response": {
|
10
|
-
"status": 200,
|
11
|
-
"headers": {
|
12
|
-
"Date": "Fri, 29 May 2020 13:27:44 GMT",
|
13
|
-
"Etag": "W/\"30e33a7afe7a41cc528bfeaeb2af8750\"",
|
14
|
-
"Content-Type": "application/json; charset=utf-8",
|
15
|
-
"Transfer-Encoding": "chunked",
|
16
|
-
"Connection": "keep-alive",
|
17
|
-
"Cache-Control": "max-age=0, private, must-revalidate",
|
18
|
-
"Referrer-Policy": "strict-origin-when-cross-origin"
|
19
|
-
},
|
20
|
-
"json_body": {
|
21
|
-
"container_sizes": [
|
22
|
-
{
|
23
|
-
"id": "2f6fb9e0-a23e-4c7b-b06d-3a00c3ec9d4f",
|
24
|
-
"human_cpu": "low CPU priority",
|
25
|
-
"name": "S",
|
26
|
-
"human_name": "S",
|
27
|
-
"memory": 268435456,
|
28
|
-
"ordinal": 2,
|
29
|
-
"hourly_price": 10,
|
30
|
-
"thirtydays_price": 720,
|
31
|
-
"pids_limit": 128,
|
32
|
-
"swap": null,
|
33
|
-
"sku": "ovh-st-fr1-app-s"
|
34
|
-
},
|
35
|
-
{
|
36
|
-
"id": "c8d9eec1-c1fb-4349-8f74-0eee76c1d6dd",
|
37
|
-
"human_cpu": "standard CPU priority",
|
38
|
-
"name": "M",
|
39
|
-
"human_name": "M",
|
40
|
-
"memory": 536870912,
|
41
|
-
"ordinal": 3,
|
42
|
-
"hourly_price": 20,
|
43
|
-
"thirtydays_price": 1440,
|
44
|
-
"pids_limit": 256,
|
45
|
-
"swap": null,
|
46
|
-
"sku": "ovh-st-fr1-app-m"
|
47
|
-
},
|
48
|
-
{
|
49
|
-
"id": "8cd5b2c4-952a-41bc-98bb-2e6f23c9cc2f",
|
50
|
-
"human_cpu": "standard CPU priority",
|
51
|
-
"name": "L",
|
52
|
-
"human_name": "L",
|
53
|
-
"memory": 1073741824,
|
54
|
-
"ordinal": 4,
|
55
|
-
"hourly_price": 40,
|
56
|
-
"thirtydays_price": 2880,
|
57
|
-
"pids_limit": 512,
|
58
|
-
"swap": null,
|
59
|
-
"sku": "ovh-st-fr1-app-l"
|
60
|
-
},
|
61
|
-
{
|
62
|
-
"id": "528077c6-cea1-4240-85b0-b87108c3b7ca",
|
63
|
-
"human_cpu": "high CPU priority",
|
64
|
-
"name": "XL",
|
65
|
-
"human_name": "XL",
|
66
|
-
"memory": 2147483648,
|
67
|
-
"ordinal": 5,
|
68
|
-
"hourly_price": 80,
|
69
|
-
"thirtydays_price": 5760,
|
70
|
-
"pids_limit": 1024,
|
71
|
-
"swap": null,
|
72
|
-
"sku": "ovh-st-fr1-app-xl"
|
73
|
-
},
|
74
|
-
{
|
75
|
-
"id": "85b8676f-f9d3-4a6e-91a3-4132211325d0",
|
76
|
-
"human_cpu": "high CPU priority",
|
77
|
-
"name": "2XL",
|
78
|
-
"human_name": "2XL",
|
79
|
-
"memory": 4294967296,
|
80
|
-
"ordinal": 6,
|
81
|
-
"hourly_price": 160,
|
82
|
-
"thirtydays_price": 11520,
|
83
|
-
"pids_limit": 2048,
|
84
|
-
"swap": null,
|
85
|
-
"sku": "ovh-st-fr1-app-2xl"
|
86
|
-
},
|
87
|
-
{
|
88
|
-
"id": "47cc2149-a965-47d8-a4e1-55cb33a18bda",
|
89
|
-
"human_cpu": "very high CPU priority",
|
90
|
-
"name": "3XL",
|
91
|
-
"human_name": "3XL",
|
92
|
-
"memory": 8589934592,
|
93
|
-
"ordinal": 7,
|
94
|
-
"hourly_price": 320,
|
95
|
-
"thirtydays_price": 23040,
|
96
|
-
"pids_limit": 4096,
|
97
|
-
"swap": null,
|
98
|
-
"sku": "ovh-st-fr1-app-3xl"
|
99
|
-
},
|
100
|
-
{
|
101
|
-
"id": "526f629a-f532-45a9-a16e-66d65ec20411",
|
102
|
-
"human_cpu": "very high CPU priority",
|
103
|
-
"name": "4XL",
|
104
|
-
"human_name": "4XL",
|
105
|
-
"memory": 17179869184,
|
106
|
-
"ordinal": 8,
|
107
|
-
"hourly_price": 480,
|
108
|
-
"thirtydays_price": 46080,
|
109
|
-
"pids_limit": 8182,
|
110
|
-
"swap": null,
|
111
|
-
"sku": "ovh-st-fr1-app-4xl"
|
112
|
-
}
|
113
|
-
]
|
114
|
-
}
|
115
|
-
}
|
116
|
-
}
|
@@ -1,45 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"path": "/apps/example-running-application/deployments/cabf82f2-1cb1-46d4-b09e-bfb6fe09bc18",
|
3
|
-
"method": "get",
|
4
|
-
"request": {
|
5
|
-
"headers": {
|
6
|
-
"Authorization": "Bearer the-bearer-token"
|
7
|
-
}
|
8
|
-
},
|
9
|
-
"response": {
|
10
|
-
"status": 200,
|
11
|
-
"headers": {
|
12
|
-
"Date": "Fri, 29 May 2020 13:27:16 GMT",
|
13
|
-
"Etag": "W/\"7f48c31c26b53046f991eb782ff2f0d9\"",
|
14
|
-
"Content-Type": "application/json; charset=utf-8",
|
15
|
-
"Transfer-Encoding": "chunked",
|
16
|
-
"Connection": "keep-alive",
|
17
|
-
"Cache-Control": "max-age=0, private, must-revalidate",
|
18
|
-
"Referrer-Policy": "strict-origin-when-cross-origin"
|
19
|
-
},
|
20
|
-
"json_body": {
|
21
|
-
"deployment": {
|
22
|
-
"id": "cabf82f2-1cb1-46d4-b09e-bfb6fe09bc18",
|
23
|
-
"app_id": "5ed0fe5d884fef000f5e4fd1",
|
24
|
-
"created_at": "2020-05-29T12:21:51.275Z",
|
25
|
-
"finished_at": "2020-05-29T12:23:25.688+00:00",
|
26
|
-
"status": "success",
|
27
|
-
"git_ref": "a5dca8ec8f48630c07c56fd8370e4f5535fe0fd8",
|
28
|
-
"previous_git_ref": null,
|
29
|
-
"type": "oneclick",
|
30
|
-
"image": "registry-1-staging.scalingo.com/app-example-running-app:a5dca8ec8f48630-cabf82f2-1cb1-4",
|
31
|
-
"registry": "registry-1-staging.scalingo.com",
|
32
|
-
"postdeploy_hook": null,
|
33
|
-
"duration": 92,
|
34
|
-
"pusher": {
|
35
|
-
"username": "example-username",
|
36
|
-
"email": "example@null.scalingo.com",
|
37
|
-
"id": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5"
|
38
|
-
},
|
39
|
-
"links": {
|
40
|
-
"output": "https://api-staging.scalingo.com/v1/apps/5ed0fe5d884fef000f5e4fd1/deployments/cabf82f2-1cb1-46d4-b09e-bfb6fe09bc18/output"
|
41
|
-
}
|
42
|
-
}
|
43
|
-
}
|
44
|
-
}
|
45
|
-
}
|
@@ -1,24 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"path": "/apps/example-running-application/deployments/not-found",
|
3
|
-
"method": "get",
|
4
|
-
"request": {
|
5
|
-
"headers": {
|
6
|
-
"Authorization": "Bearer the-bearer-token"
|
7
|
-
}
|
8
|
-
},
|
9
|
-
"response": {
|
10
|
-
"status": 404,
|
11
|
-
"headers": {
|
12
|
-
"Date": "Fri, 29 May 2020 13:27:16 GMT",
|
13
|
-
"Content-Type": "application/json; charset=utf-8",
|
14
|
-
"Transfer-Encoding": "chunked",
|
15
|
-
"Connection": "keep-alive",
|
16
|
-
"Cache-Control": "no-cache",
|
17
|
-
"Referrer-Policy": "strict-origin-when-cross-origin"
|
18
|
-
},
|
19
|
-
"json_body": {
|
20
|
-
"resource": "deployment",
|
21
|
-
"error": "not found"
|
22
|
-
}
|
23
|
-
}
|
24
|
-
}
|
@@ -1,35 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"path": "/apps/example-running-application/deployments?page=3",
|
3
|
-
"method": "get",
|
4
|
-
"request": {
|
5
|
-
"headers": {
|
6
|
-
"Authorization": "Bearer the-bearer-token"
|
7
|
-
}
|
8
|
-
},
|
9
|
-
"response": {
|
10
|
-
"status": 200,
|
11
|
-
"headers": {
|
12
|
-
"Date": "Fri, 29 May 2020 13:27:16 GMT",
|
13
|
-
"Etag": "W/\"914b185f7f1b599c84d1d578b2b39153\"",
|
14
|
-
"Content-Type": "application/json; charset=utf-8",
|
15
|
-
"Transfer-Encoding": "chunked",
|
16
|
-
"Connection": "keep-alive",
|
17
|
-
"Cache-Control": "max-age=0, private, must-revalidate",
|
18
|
-
"Referrer-Policy": "strict-origin-when-cross-origin"
|
19
|
-
},
|
20
|
-
"json_body": {
|
21
|
-
"deployments": [
|
22
|
-
|
23
|
-
],
|
24
|
-
"meta": {
|
25
|
-
"pagination": {
|
26
|
-
"current_page": 3,
|
27
|
-
"next_page": null,
|
28
|
-
"previous_page": 2,
|
29
|
-
"total_pages": 1,
|
30
|
-
"total_count": 1
|
31
|
-
}
|
32
|
-
}
|
33
|
-
}
|
34
|
-
}
|
35
|
-
}
|
@@ -1,56 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"path": "/apps/example-running-application/deployments",
|
3
|
-
"method": "get",
|
4
|
-
"request": {
|
5
|
-
"headers": {
|
6
|
-
"Authorization": "Bearer the-bearer-token"
|
7
|
-
}
|
8
|
-
},
|
9
|
-
"response": {
|
10
|
-
"status": 200,
|
11
|
-
"headers": {
|
12
|
-
"Date": "Fri, 29 May 2020 13:27:16 GMT",
|
13
|
-
"Etag": "W/\"3b3863d52523764d2a5563f0a4f90eb3\"",
|
14
|
-
"Content-Type": "application/json; charset=utf-8",
|
15
|
-
"Transfer-Encoding": "chunked",
|
16
|
-
"Connection": "keep-alive",
|
17
|
-
"Cache-Control": "max-age=0, private, must-revalidate",
|
18
|
-
"Referrer-Policy": "strict-origin-when-cross-origin"
|
19
|
-
},
|
20
|
-
"json_body": {
|
21
|
-
"deployments": [
|
22
|
-
{
|
23
|
-
"id": "cabf82f2-1cb1-46d4-b09e-bfb6fe09bc18",
|
24
|
-
"app_id": "5ed0fe5d884fef000f5e4fd1",
|
25
|
-
"created_at": "2020-05-29T12:21:51.275Z",
|
26
|
-
"finished_at": "2020-05-29T12:23:25.688+00:00",
|
27
|
-
"status": "success",
|
28
|
-
"git_ref": "a5dca8ec8f48630c07c56fd8370e4f5535fe0fd8",
|
29
|
-
"previous_git_ref": null,
|
30
|
-
"type": "oneclick",
|
31
|
-
"image": "registry-1-staging.scalingo.com/app-example-running-app:a5dca8ec8f48630-cabf82f2-1cb1-4",
|
32
|
-
"registry": "registry-1-staging.scalingo.com",
|
33
|
-
"postdeploy_hook": null,
|
34
|
-
"duration": 92,
|
35
|
-
"pusher": {
|
36
|
-
"username": "example-username",
|
37
|
-
"email": "example@null.scalingo.com",
|
38
|
-
"id": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5"
|
39
|
-
},
|
40
|
-
"links": {
|
41
|
-
"output": "https://api-staging.scalingo.com/v1/apps/5ed0fe5d884fef000f5e4fd1/deployments/cabf82f2-1cb1-46d4-b09e-bfb6fe09bc18/output"
|
42
|
-
}
|
43
|
-
}
|
44
|
-
],
|
45
|
-
"meta": {
|
46
|
-
"pagination": {
|
47
|
-
"current_page": 1,
|
48
|
-
"next_page": null,
|
49
|
-
"previous_page": null,
|
50
|
-
"total_pages": 1,
|
51
|
-
"total_count": 1
|
52
|
-
}
|
53
|
-
}
|
54
|
-
}
|
55
|
-
}
|
56
|
-
}
|
@@ -1,22 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"path": "/apps/example-running-application/deployments/cabf82f2-1cb1-46d4-b09e-bfb6fe09bc18/output",
|
3
|
-
"method": "get",
|
4
|
-
"request": {
|
5
|
-
"headers": {
|
6
|
-
"Authorization": "Bearer the-bearer-token"
|
7
|
-
}
|
8
|
-
},
|
9
|
-
"response": {
|
10
|
-
"status": 200,
|
11
|
-
"headers": {
|
12
|
-
"Date": "Fri, 29 May 2020 13:27:16 GMT",
|
13
|
-
"Etag": "W/\"3b51fb100eba358988799fd2fbcc51ec\"",
|
14
|
-
"Content-Type": "text/plain; charset=utf-8",
|
15
|
-
"Transfer-Encoding": "chunked",
|
16
|
-
"Connection": "keep-alive",
|
17
|
-
"Cache-Control": "max-age=0, private, must-revalidate",
|
18
|
-
"Referrer-Policy": "strict-origin-when-cross-origin"
|
19
|
-
},
|
20
|
-
"body": " \u001b[1m<-- Start deployment of example-running-app -->\u001b[0m\n Fetching source code\n=====> Downloading Buildpack: https://github.com/Scalingo/apt-buildpack.git\n=====> Detected Framework: Apt\n-----> Detected Aptfile changes, flushing cache\n-----> Adding custom repositories\n-----> Updating apt caches\n Get:1 http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu trusty InRelease [15.4 kB]\n Get:2 http://security.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB]\n Get:3 http://archive.ubuntu.com/ubuntu bionic InRelease [242 kB]\n Get:4 http://apt.postgresql.org/pub/repos/apt bionic-pgdg InRelease [84.6 kB]\n Get:5 http://archive.ubuntu.com/ubuntu bionic-updates InRelease [88.7 kB]\n Get:6 http://archive.ubuntu.com/ubuntu bionic-backports InRelease [74.6 kB]\n Err:1 http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu trusty InRelease\n The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 1E9377A2BA9EF27F\n Get:7 http://security.ubuntu.com/ubuntu bionic-security/main amd64 Packages [931 kB]\n Get:8 http://security.ubuntu.com/ubuntu bionic-security/universe amd64 Packages [854 kB]\n Get:9 http://security.ubuntu.com/ubuntu bionic-security/multiverse amd64 Packages [8815 B]\n Get:10 http://security.ubuntu.com/ubuntu bionic-security/restricted amd64 Packages [59.3 kB]\n Get:11 http://archive.ubuntu.com/ubuntu bionic/restricted amd64 Packages [13.5 kB]\n Get:12 http://archive.ubuntu.com/ubuntu bionic/universe amd64 Packages [11.3 MB]\n Get:13 http://archive.ubuntu.com/ubuntu bionic/multiverse amd64 Packages [186 kB]\n Get:14 http://archive.ubuntu.com/ubuntu bionic/main amd64 Packages [1344 kB]\n Get:15 http://apt.postgresql.org/pub/repos/apt bionic-pgdg/main amd64 Packages [304 kB]\n Get:16 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 Packages [1385 kB]\n Get:17 http://archive.ubuntu.com/ubuntu bionic-updates/restricted amd64 Packages [73.6 kB]\n Get:18 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 Packages [1228 kB]\n Get:19 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse amd64 Packages [20.1 kB]\n Get:20 http://archive.ubuntu.com/ubuntu bionic-backports/universe amd64 Packages [8158 B]\n Get:21 http://archive.ubuntu.com/ubuntu bionic-backports/main amd64 Packages [8286 B]\n Reading package lists...\nW: GPG error: http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu trusty InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 1E9377A2BA9EF27F\nE: The repository 'http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu trusty InRelease' is not signed.\n-----> Fetching .debs for g++-5\n Reading package lists...\n Building dependency tree...\n The following additional packages will be installed:\n cpp-5 gcc-5 gcc-5-base libasan2 libgcc-5-dev libisl15 libmpx0\n libstdc++-5-dev\n Suggested packages:\n gcc-5-locales g++-5-multilib gcc-5-doc libstdc++6-5-dbg gcc-5-multilib\n libgcc1-dbg libgomp1-dbg libitm1-dbg libatomic1-dbg libasan2-dbg\n liblsan0-dbg libtsan0-dbg libubsan0-dbg libcilkrts5-dbg libmpx0-dbg\n libquadmath0-dbg libstdc++-5-doc\n The following NEW packages will be installed:\n cpp-5 g++-5 gcc-5 gcc-5-base libasan2 libgcc-5-dev libisl15 libmpx0\n libstdc++-5-dev\n 0 upgraded, 9 newly installed, 0 to remove and 130 not upgraded.\n Need to get 29.1 MB of archives.\n After this operation, 100 MB of additional disk space will be used.\n Get:1 http://archive.ubuntu.com/ubuntu bionic/universe amd64 gcc-5-base amd64 5.5.0-12ubuntu1 [17.1 kB]\n Get:2 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libisl15 amd64 0.18-4 [548 kB]\n Get:3 http://archive.ubuntu.com/ubuntu bionic/universe amd64 cpp-5 amd64 5.5.0-12ubuntu1 [7785 kB]\n Get:4 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libasan2 amd64 5.5.0-12ubuntu1 [264 kB]\n Get:5 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libmpx0 amd64 5.5.0-12ubuntu1 [9888 B]\n Get:6 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libgcc-5-dev amd64 5.5.0-12ubuntu1 [2224 kB]\n Get:7 http://archive.ubuntu.com/ubuntu bionic/universe amd64 gcc-5 amd64 5.5.0-12ubuntu1 [8357 kB]\n Get:8 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libstdc++-5-dev amd64 5.5.0-12ubuntu1 [1415 kB]\n Get:9 http://archive.ubuntu.com/ubuntu bionic/universe amd64 g++-5 amd64 5.5.0-12ubuntu1 [8450 kB]\n Fetched 29.1 MB in 1s (26.5 MB/s)\n Download complete and in download only mode\nW: --force-yes is deprecated, use one of the options starting with --allow instead.\n-----> Installing cpp-5_5.5.0-12ubuntu1_amd64.deb\n-----> Installing g++-5_5.5.0-12ubuntu1_amd64.deb\n-----> Installing gcc-5-base_5.5.0-12ubuntu1_amd64.deb\n-----> Installing gcc-5_5.5.0-12ubuntu1_amd64.deb\n-----> Installing libasan2_5.5.0-12ubuntu1_amd64.deb\n-----> Installing libgcc-5-dev_5.5.0-12ubuntu1_amd64.deb\n-----> Installing libisl15_0.18-4_amd64.deb\n-----> Installing libmpx0_5.5.0-12ubuntu1_amd64.deb\n-----> Installing libstdc++-5-dev_5.5.0-12ubuntu1_amd64.deb\n-----> Writing profile script\n-----> Rewrite package-config files\n=====> Downloading Buildpack: https://github.com/Scalingo/nodejs-buildpack.git\n=====> Detected Framework: Node.js\n \n-----> Creating runtime environment\n \n NPM_CONFIG_LOGLEVEL=error\n NODE_ENV=production\n NODE_MODULES_CACHE=true\n NODE_VERBOSE=false\n NODE_EXTRA_CA_CERTS=/usr/share/ca-certificates/Scalingo/scalingo-database.pem\n \n-----> Installing binaries\n engines.node (package.json): 8.9.x\n engines.npm (package.json): unspecified (use default)\n \n Resolving node version 8.9.x...\n Downloading and installing node 8.9.4...\n Using default npm version: 5.6.0\n \n-----> Installing dependencies\n Installing node modules (package.json + package-lock)\n added 99 packages in 3.831s\n \n-----> Build\n \n-----> Caching build\n - node_modules\n \n-----> Pruning devDependencies\n Skipping because npm 5.6.0 sometimes fails when running 'npm prune' due to a known issue\n https://github.com/npm/npm/issues/19356\n \n You can silence this warning by updating to at least npm 5.7.1 in your package.json\n https://doc.scalingo.com/languages/nodejs/start#specifying-a-nodejs-version\n \n-----> Build succeeded!\nUsing release configuration from last framework (Node.js).\n-----> Procfile declares types -> clock, postdeploy\n\u001b[0;36m Build complete, shipping your container...\u001b[0m\n\u001b[0;36m Waiting for your application to boot... \u001b[0m\n\u001b[0;36m Postdeploy hook detected, starting 'ls -la /'\u001b[0m\n2020-05-29 14:23:20.938411390 +0200 CEST [postdeploy-2231] drwxr-xr-x 1 root root 4096 May 29 12:23 .\r\n2020-05-29 14:23:20.938217012 +0200 CEST [postdeploy-2231] total 92\r\n2020-05-29 14:23:20.938699447 +0200 CEST [postdeploy-2231] -rwxr-xr-x 1 root root 0 May 29 12:23 .dockerenv\r\n2020-05-29 14:23:20.938556211 +0200 CEST [postdeploy-2231] drwxr-xr-x 1 root root 4096 May 29 12:23 ..\r\n2020-05-29 14:23:20.938969163 +0200 CEST [postdeploy-2231] drwxr-xr-x 1 root root 4096 Dec 23 16:33 bin\r\n2020-05-29 14:23:20.939246376 +0200 CEST [postdeploy-2231] drwxr-xr-x 2 appsdeck appsdeck 4096 May 29 12:22 build\r\n2020-05-29 14:23:20.939515640 +0200 CEST [postdeploy-2231] drwxr-xr-x 5 root root 340 May 29 12:23 dev\r\n2020-05-29 14:23:20.939644556 +0200 CEST [postdeploy-2231] drwxr-xr-x 1 root root 4096 May 29 12:23 etc\r\n2020-05-29 14:23:20.939917192 +0200 CEST [postdeploy-2231] drwxr-xr-x 1 root root 4096 Dec 23 16:35 lib\r\n2020-05-29 14:23:20.940193619 +0200 CEST [postdeploy-2231] drwxr-xr-x 2 root root 4096 Dec 2 12:43 lib64\r\n2020-05-29 14:23:20.940333958 +0200 CEST [postdeploy-2231] drwxr-xr-x 2 root root 4096 Dec 2 12:43 media\r\n2020-05-29 14:23:20.940464823 +0200 CEST [postdeploy-2231] drwxr-xr-x 2 root root 4096 Dec 2 12:43 mnt\r\n2020-05-29 14:23:20.940627343 +0200 CEST [postdeploy-2231] drwxr-xr-x 2 root root 4096 Dec 2 12:43 opt\r\n2020-05-29 14:23:20.940758545 +0200 CEST [postdeploy-2231] dr-xr-xr-x 1109 root root 0 May 29 12:23 proc\r\n2020-05-29 14:23:20.941173843 +0200 CEST [postdeploy-2231] drwxr-xr-x 1 root root 4096 Dec 19 04:21 sbin\r\n2020-05-29 14:23:20.941471711 +0200 CEST [postdeploy-2231] -rwxr-xr-x 1 root root 2591 May 29 12:22 start\r\n2020-05-29 14:23:20.941794793 +0200 CEST [postdeploy-2231] dr-xr-xr-x 13 root root 0 Jun 21 2019 sys\r\n2020-05-29 14:23:20.941797466 +0200 CEST [postdeploy-2231] drwxrwxrwt 1 root root 4096 May 29 12:23 tmp\r\n2020-05-29 14:23:20.941799437 +0200 CEST [postdeploy-2231] drwxr-xr-x 1 root root 4096 Dec 30 14:27 var\r\n2020-05-29 14:23:21.392354937 +0200 CEST [manager] container [postdeploy-2231] (5ed0feb862291b50b7473aeb) has stopped\r\n\u001b[0;36m Postdeploy hook succeeded, accepting deployment... \u001b[0m\n \u001b[1m<-- https://example-running-app.staging.scalingo.io -->\u001b[0m\n"
|
21
|
-
}
|
22
|
-
}
|
@@ -1,24 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"path": "/apps/example-running-application/deployments/not-found/output",
|
3
|
-
"method": "get",
|
4
|
-
"request": {
|
5
|
-
"headers": {
|
6
|
-
"Authorization": "Bearer the-bearer-token"
|
7
|
-
}
|
8
|
-
},
|
9
|
-
"response": {
|
10
|
-
"status": 404,
|
11
|
-
"headers": {
|
12
|
-
"Date": "Fri, 29 May 2020 13:27:17 GMT",
|
13
|
-
"Content-Type": "application/json; charset=utf-8",
|
14
|
-
"Transfer-Encoding": "chunked",
|
15
|
-
"Connection": "keep-alive",
|
16
|
-
"Cache-Control": "no-cache",
|
17
|
-
"Referrer-Policy": "strict-origin-when-cross-origin"
|
18
|
-
},
|
19
|
-
"json_body": {
|
20
|
-
"resource": "deployment",
|
21
|
-
"error": "not found"
|
22
|
-
}
|
23
|
-
}
|
24
|
-
}
|
@@ -1,21 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"app_id": "5ed10ae7f112e2000f9f93be",
|
3
|
-
"id": "5ed10ae9884fef000f5e500b",
|
4
|
-
"not_found_id": "not-found",
|
5
|
-
"create": {
|
6
|
-
"valid": {
|
7
|
-
"name": "somedomain.scalingo.com"
|
8
|
-
},
|
9
|
-
"invalid": {
|
10
|
-
"wrong": "params"
|
11
|
-
}
|
12
|
-
},
|
13
|
-
"update": {
|
14
|
-
"valid": {
|
15
|
-
"canonical": true
|
16
|
-
},
|
17
|
-
"invalid": {
|
18
|
-
"tlscert": "something"
|
19
|
-
}
|
20
|
-
}
|
21
|
-
}
|
@@ -1,44 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"path": "/apps/5ed10ae7f112e2000f9f93be/domains",
|
3
|
-
"method": "post",
|
4
|
-
"request": {
|
5
|
-
"headers": {
|
6
|
-
"Authorization": "Bearer the-bearer-token",
|
7
|
-
"Content-Type": "application/json"
|
8
|
-
},
|
9
|
-
"json_body": {
|
10
|
-
"domain": {
|
11
|
-
"name": "somedomain.scalingo.com"
|
12
|
-
}
|
13
|
-
}
|
14
|
-
},
|
15
|
-
"response": {
|
16
|
-
"status": 201,
|
17
|
-
"headers": {
|
18
|
-
"Date": "Fri, 29 May 2020 13:15:21 GMT",
|
19
|
-
"Etag": "W/\"a9d277ab377e9776938dd86462cf500c\"",
|
20
|
-
"Content-Type": "application/json; charset=utf-8",
|
21
|
-
"Transfer-Encoding": "chunked",
|
22
|
-
"Connection": "keep-alive",
|
23
|
-
"Cache-Control": "max-age=0, private, must-revalidate",
|
24
|
-
"Referrer-Policy": "strict-origin-when-cross-origin"
|
25
|
-
},
|
26
|
-
"json_body": {
|
27
|
-
"domain": {
|
28
|
-
"id": "5ed10ae9884fef000f5e500b",
|
29
|
-
"app_id": "5ed10ae7f112e2000f9f93be",
|
30
|
-
"name": "somedomain.scalingo.com",
|
31
|
-
"created_at": "2020-05-29T13:15:21.050Z",
|
32
|
-
"ssl": false,
|
33
|
-
"letsencrypt": false,
|
34
|
-
"letsencrypt_status": "new",
|
35
|
-
"canonical": false,
|
36
|
-
"acme_dns_fqdn": null,
|
37
|
-
"acme_dns_value": null,
|
38
|
-
"acme_dns_error": {
|
39
|
-
},
|
40
|
-
"acme_challenge_error": null
|
41
|
-
}
|
42
|
-
}
|
43
|
-
}
|
44
|
-
}
|
@@ -1,33 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"path": "/apps/5ed10ae7f112e2000f9f93be/domains",
|
3
|
-
"method": "post",
|
4
|
-
"request": {
|
5
|
-
"headers": {
|
6
|
-
"Authorization": "Bearer the-bearer-token",
|
7
|
-
"Content-Type": "application/json"
|
8
|
-
},
|
9
|
-
"json_body": {
|
10
|
-
"domain": {
|
11
|
-
"wrong": "params"
|
12
|
-
}
|
13
|
-
}
|
14
|
-
},
|
15
|
-
"response": {
|
16
|
-
"status": 422,
|
17
|
-
"headers": {
|
18
|
-
"Date": "Fri, 29 May 2020 13:15:20 GMT",
|
19
|
-
"Content-Type": "application/json; charset=utf-8",
|
20
|
-
"Transfer-Encoding": "chunked",
|
21
|
-
"Connection": "keep-alive",
|
22
|
-
"Cache-Control": "no-cache",
|
23
|
-
"Referrer-Policy": "strict-origin-when-cross-origin"
|
24
|
-
},
|
25
|
-
"json_body": {
|
26
|
-
"errors": {
|
27
|
-
"name": [
|
28
|
-
"can't be blank"
|
29
|
-
]
|
30
|
-
}
|
31
|
-
}
|
32
|
-
}
|
33
|
-
}
|