-
Notifications
You must be signed in to change notification settings - Fork 65
/
hubs.md
63 lines (45 loc) · 1.94 KB
/
hubs.md
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
# List of running hubs
% NOTE: The CSV files used by this page are generated by `docs/scripts/generate-general-info-table-about-hubs.py`
Here's a list of running hubs and some statistics about them.
It is automatically generated from the config stored in the [`config/clusters` folder of the `infrastructure` repository](https://github.com/2i2c-org/infrastructure/tree/HEAD/config/clusters) and can therefore be limited in the information it provides.
```{admonition} Missing information for Azure hubs
Hubs that have `kubeconfig` listed as their provider are most likely running on Azure.
The reason `kubeconfig` is listed as a provider is because that is the mechanism we are using to authenticate to that cluster in the case where we do not have a Service Principal.
Unlike GCP and AWS, Azure does not require the location for authentication and it is therefore not listed in our config files and hence cannot be populated in this table.
```
## Table of all running hubs
A table of all running hubs across all of our clusters.
<div class="full-width hubs-table">
```{csv-table}
:header-rows: 1
:file: ../tmp/hub-table.csv
```
</div>
## Community hub statistics
Summary statistics of the communities we are serving with with hubs, broken down by cluster and cloud provider.
```{csv-table}
:header-rows: 1
:file: ../tmp/hub-stats.csv
```
% DataTables config to make the table above look nice
<link rel="stylesheet"
href="https://cdn.datatables.net/1.10.24/css/jquery.dataTables.min.css">
<script type="text/javascript"
src="https://cdn.datatables.net/1.10.24/js/jquery.dataTables.min.js"></script>
<script>
$(document).ready( function () {
$('.hubs-table table').DataTable( {
"order": [[ 0, "template" ]],
"pageLength": 25,
});
} );
</script>
% Make the tables a little bit more compact since there's a lot of text
<style>
table {
font-size: .7em;
}
table th, table td {
padding: 0;
}
</style>