-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html.j2
82 lines (78 loc) · 4.35 KB
/
index.html.j2
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!doctype html>
<html lang="en">
<head>
<title>Rahti</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="static/styles.css">
<!-- CSC Design System -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/cscwebcomponents/cscwebcomponents.esm.js" type="module"></script>
<!-- Bootstrap -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.typekit.net/csv4mjm.css">
<link rel="icon" type="image/x-icon" href="/static/CSC_2012_LOGO.png">
</head>
<body>
{% if HEADER_BANNER %}
<div class="header">
<p>{{ HEADER_BANNER }}</p>
</div>
{% endif %}
<c-main>
<c-toolbar class="relative"><c-csc-logo></c-csc-logo><a target="_self" href="#">Rahti</a></c-toolbar>
<c-container class="content">
<c-row>
<div class="col content-c1">
<h2>Welcome to Rahti!</h2>
<p>Rahti is a shared general-purpose container service for hosting projects.</p>
<p>Rahti Shared Container Service is based on Kubernetes/OpenShift technology and provides an
environment for hosting general-purpose container workloads. Because the service is shared
between users, there are some permission limitations compared to plain Kubernetes (for example,
container root access and global cluster permissions are not permitted).</p>
<p>Hosted content can be managed using API calls, command line tools, or graphical user interface.
Content in Rahti is stored in Finland. Hosted content can be exposed to public Internet or be
limited to User-defined networks. Rahti service includes default domain names with CSC-maintained
certificates, and network load balancing. Exposed network endpoints can be configured to use
User-maintained external DNS addresses and custom certificates.</p>
<p>The service is offered free of charge to Finnish universities and universities of applied
sciences, research institutes as well as research funded by the Academy of Finland.</p>
<p>Rahti can be used to host project content as long as the CSC project is active. Upon closure
of the project, the content will be handled in accordance with the General Terms of Use for CSC's
Services for Research and Education .</p>
<p>It is the User's responsibility to
ensure Rahti is suitable service for handling project content and technical data protection is done
appropriately.</p>
<p>Content stored in Rahti is not backed up and it is the User's responsibility to make the backups
of the data as needed.</p>
</div>
<div class="col content-c2">
<c-card class="card-1">
<c-card-title>Rahti-2</c-card-title>
<c-card-content>{{ CLUSTER_ENV_VERSION }}</c-card-content>
<c-card-actions>
<c-button href="{{ CLUSTER_LOGIN_URL_OIDCIDP }}">Login</c-button>
<c-button href="{{ SERVICE_DOCS_URL }}">Docs</c-button>
</c-card-actions>
</c-card>
<c-card class="card-3">
<c-card-title>Announcements</c-card-title>
<c-card-content>
{% if LANDING_PAGE_ANNOUNCEMENTS %}
{% for ann in LANDING_PAGE_ANNOUNCEMENTS %}
{{ ann }}
{% endfor %}
{% endif %}
</c-card-content>
</c-card>
</div>
</c-row>
</c-container>
<div class="footer">
<c-row>
{% include 'footer.html' %}
</c-row>
</div>
</c-main>
</body>
</html>