Skip to content
This repository was archived by the owner on Feb 9, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,15 @@ import interoute from './providers/interoute.json';
import oracle from './providers/oracle.json';
import rackspace from './providers/rackspace.json';
import upcloud from './providers/upcloud.json';
import catalystcloud from './providers/catalystcloud.json';
import clvrcloud from './providers/clvrcloud.json';

// ==============================
// DEFINE VARIABLES AND CONSTANTS
// ==============================

let map;
const providers = [alibaba, aws, azure, digitalocean, gc, interoute, oracle, rackspace, upcloud];
const providers = [aws, azure, digitalocean, gc, catalystcloud];
const markers = [];
let context = '';
const template = Handlebars.compile(`<li id="{{name}}-button" class="{{show}}">
Expand Down
71 changes: 71 additions & 0 deletions app/providers/catalystcloud.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
{
"beta": false,
"fedramp": false,
"hasBandwidthPricing": true,
"hasDnsPricing": true,
"hasStorageOptions": false,
"hasWebProbe": true,
"hasWebProbeSsl": true,
"name": "CatalystCloud",
"providerId": "catalyst",
"regions": [
{
"city": "Hamilton",
"country": "NZ",
"estimated": false,
"facilities": 1,
"locationLat": -37.7779,
"locationLong": 175.25975,
"planned": false,
"providerCode": "nz-hlz-1",
"providerCodeApi": "nz-hlz-1",
"regions": [
"asia",
"asia_apac",
"oceania"
],
"special": false
},
{
"city": "Wellington",
"country": "NZ",
"estimated": false,
"facilities": 1,
"locationLat": -41.28664,
"locationLong": 174.77557,
"planned": false,
"providerCode": "nz_wlg_2",
"providerCodeApi": "nz_wlg_2",
"regions": [
"asia",
"asia_apac",
"oceania"
],
"special": true
},
{
"city": "Porirua",
"country": "NZ",
"estimated": false,
"facilities": 1,
"locationLat": -41.104126,
"locationLong": 174.873596,
"planned": false,
"providerCode": "nz-por-1",
"providerCodeApi": "nz-por-1",
"regions": [
"asia",
"asia_apac",
"oceania"
],
"special": true
}
],
"serviceId": "Kubernetes",
"shortName": "Catalyst",
"sla": 99.999,
"slaDescription": "CatalystCloud will guarantee 100% virtual server and network availability to the Customer. The network will be deemed available if UpCloud's routers and switches are available and responding properly. For all unscheduled interruptions in the provision of the Services, which are due to hardware or telecommunications failures that last longer than 5 minutes, UpCloud shall offer compensation to the Customer.",
"slaLink": "https://cloud.catalyst.net.nz",
"website": "https://cloud.catalyst.net.nz",
"type": "compute"
}
35 changes: 35 additions & 0 deletions app/providers/clvrcloud.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"beta": false,
"fedramp": false,
"hasBandwidthPricing": true,
"hasDnsPricing": true,
"hasStorageOptions": false,
"hasWebProbe": true,
"hasWebProbeSsl": true,
"name": "CLVR",
"providerId": "clvr",
"regions": [
{
"city": "Salta",
"country": "SLA",
"estimated": false,
"facilities": 1,
"locationLat": -24.782932,
"locationLong": -65.412155,
"planned": false,
"providerCode": "ar-sla-1",
"providerCodeApi": "ar-sla-1",
"regions": [
"america_south",
"america"
],
"special": true
}
],
"serviceId": "Kubernetes",
"shortName": "CLVR",
"sla": 99.999,
"slaDescription": "CatalystCloud will guarantee 100% virtual server and network availability to the Customer. The network will be deemed available if UpCloud's routers and switches are available and responding properly. For all unscheduled interruptions in the provision of the Services, which are due to hardware or telecommunications failures that last longer than 5 minutes, UpCloud shall offer compensation to the Customer.",
"slaLink": "https://cloud.catalyst.net.nz",
"type": "compute"
}
34 changes: 2 additions & 32 deletions index.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@

<body>
<div class="wrapper">
<div class="sidebar" data-color="blue">
<div class="sidebar" data-color="orange">
<div class="sidebar-wrapper">
<div class="logo">
<a class="simple-text">Cloud Providers</a>
<a class="simple-text">CLVR Cloud Providers</a>
</div>

<ul class="nav" id="region-list">
Expand All @@ -49,36 +49,6 @@
</div>

<div class="main-panel">
<nav class="navbar navbar-default navbar-fixed">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navigation-example-2">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Find them all</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li>
<a href="https://github.com/GuGuss/cloud-provider-locations" title="Contribute on GitHub">
<i class="fa fa-github"></i>
<p class="hidden-lg hidden-md">Contribute</p>
</a>
</li>
<li>
<a href="https://twitter.com/GuGussOnFire" title="Contact me on Twitter">
<i class="fa fa-twitter"></i>
<p class="hidden-lg hidden-md">Contact me</p>
</a>
</li>
<li class="separator hidden-lg hidden-md"></li>
</ul>
</div>
</div>
</nav>
<div id="map"></div>
</div>
</div>
Expand Down
Loading