-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathindex.html
328 lines (314 loc) · 16.3 KB
/
index.html
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Uyuni</title>
<meta name="description" content="The open-source configuration and infrastructure management solution for software-defined infrastructure.">
<link rel="apple-touch-icon" sizes="152x152" href="./img/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./img/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./img/favicon/favicon-16x16.png">
<link rel="manifest" href="./img/favicon/site.webmanifest">
<link rel="mask-icon" href="./img/favicon/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS"
crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="./css/index.css">
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/[email protected]/slick/slick.css"/>
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/eos-icons/dist/css/eos-icons.css" />
</head>
<body>
<header>
<div class="container">
<nav class="navbar navbar-expand-lg">
<a class="navbar-brand" href="https://www.uyuni-project.org/">
<img src="img/logo-letters.svg" alt="Uyuni logo letters">
</a>
<ul class="nav top-nav d-flex justify-content-end">
<!-- Dropdown for available Uyuni versions -->
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
DOWNLOAD
</a>
<div class="dropdown-menu bg-dark" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="pages/stable-version.html">Stable</a>
<a class="dropdown-item" href="pages/devel-version.html">Develop</a>
<a class="dropdown-item" href="pages/patches.html">Patches</a>
<a class="dropdown-item" href="pages/source-code.html">Source code</a>
</div>
</li>
<!-- DOCS -->
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
DOCUMENTATION
</a>
<div class="dropdown-menu bg-dark" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="https://www.uyuni-project.org/uyuni-docs/">Guides</a>
<a class="dropdown-item" href="https://www.uyuni-project.org/uyuni-docs-api/">API</a>
<a class="dropdown-item" href="https://www.uyuni-project.org/uyuni-docs/reporting-db-schema/">Reporting Database Schema</a>
</div>
</li>
<!-- FAQ -->
<li class="nav-item">
<a class="nav-link" href="pages/faq.html">FAQ</a>
</li>
<!-- NEWS -->
<li class="nav-item">
<a class="nav-link" href="pages/news.html">NEWS</a>
</li>
<!-- Contact -->
<li class="nav-item">
<a class="nav-link" href="pages/contact.html">CONTACT</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://twitter.com/UyuniProject" target="_blank">
<img src="img/twitter.svg" alt="Uyuni - Twitter" title="Twitter" />
</a>
</li>
</ul>
</nav>
<!-- #nav -->
<div class="landing-description">
<img class="uyuni-logo" src="img/uyuni-logo.svg" alt="Uyuni logo">
<p>The open-source configuration and infrastructure management solution for software-defined infrastructure.</p>
<div class="cta-section">
<a href='pages/stable-version.html' class="btn btn-primary">
<span class="badge eos-icons">download</span>
Get new 2024.12!
</a>
<a href="pages/source-code.html">
<button type="button" class="btn btn-light">
<span class="badge eos-icons">code</span>
Source code
</button>
</a>
</div>
</div>
</div>
</header>
<div class="container page-wrapper">
<div class="container">
<div class="row content-padding">
<div class="col-md d-flex justify-content-center">
<img class="img-fluid home-illustration" src="img/il_1.svg" alt="">
</div>
<div class="col-md">
<h1 class="h3-style">What is Uyuni?</h1>
<p class="section-description">
Uyuni is a configuration and infrastructure management tool that saves you time and headaches when you have to manage and update tens, hundreds or even thousands of machines.
</p>
<div class="accordion" id="accordion-uyuni">
<!-- Start item -->
<div class="accordion-wrap">
<div class="accordion-header" data-toggle="collapse" data-target="#item1" aria-expanded="true"
aria-controls="item1" id="headingOne">
<h2><img src="img/plus.svg" class="accordion-plus" alt="Expand Icon: Click to reveal additional information."> Automated patch and package management</h2>
</div>
<div id="item1" class="collapse show accordion-content" aria-labelledby="headingOne"
data-parent="#accordion-uyuni">
<p>
enables you to deploy patches and packages based on software channels and repositories you can assign, helping you to reduce costs.
</p>
</div>
</div>
<!-- End item -->
<!-- Start item -->
<div class="accordion-wrap">
<div class="accordion-header" data-toggle="collapse" data-target="#item2" aria-expanded="false"
aria-controls="item2" id="headingOne">
<h2><img src="img/plus.svg" class="accordion-plus" alt="Expand Icon: Click to reveal additional information."> Easily onboard and manage</h2>
</div>
<div id="item2" class="collapse hide accordion-content" aria-labelledby="headingOne"
data-parent="#accordion-uyuni">
<p>
any Linux server connected to the network, from IoT edge devices to your Kubernetes environment, no matter where it is located – in your data center, a 3rd party data center or in the public cloud.
</p>
</div>
</div>
<!-- End item -->
<!-- Start item -->
<div class="accordion-wrap">
<div class="accordion-header" data-toggle="collapse" data-target="#item3" aria-expanded="false"
aria-controls="item3" id="headingOne">
<h2><img src="img/plus.svg" class="accordion-plus" alt="Expand Icon: Click to reveal additional information."> A single tool for automated deployment </h2>
</div>
<div id="item3" class="collapse hide accordion-content" aria-labelledby="headingOne"
data-parent="#accordion-uyuni">
<p>
of hardened OS templates (bare metal, VM or container) to tens of thousands of servers and IoT devices for faster, consistent and repeatable provisioning and configuration without compromising speed or security.
</p>
</div>
</div>
<!-- End item -->
</div>
<!-- #accordion -->
</div>
</div>
</div>
<!-- end row 1 -->
<div class="row content-padding row-eq-height">
<div class="col-md">
<h2>How does Uyuni work?</h2>
<p class="section-description">
Uyuni leverages the Salt configuration management system to manage clients.
The Uyuni Server is a full-fledged Salt Master node, allowing you to register and manage Salt clients.
For more information about Salt, see the Salt documentation at <a href="https://docs.saltstack.com/en/latest/contents.html" >Saltstack</a>
</p>
<div class="accordion" id="accordion-uyuni-2">
<!-- Start item -->
<div class="accordion-wrap">
<div class="accordion-header" data-toggle="collapse" data-target="#item2-2" aria-expanded="false"
aria-controls="item2-2" id="headingOne">
<h2><img src="img/plus.svg" class="accordion-plus" alt="Expand Icon: Click to reveal additional information."> Detailed compliance auditing </h2>
</div>
<div id="item2-2" class="collapse hide accordion-content" aria-labelledby="headingOne"
data-parent="#accordion-uyuni-2">
<p>
and reporting with the ability to track all hardware and software changes made to your managed Linux infrastructure helps to ensure compliance with internal security policies
</p>
</div>
</div>
<!-- End item -->
<!-- Start item -->
<div class="accordion-wrap">
<div class="accordion-header" data-toggle="collapse" data-target="#item3-2" aria-expanded="false"
aria-controls="item3-2" id="headingOne">
<h2><img src="img/plus.svg" class="accordion-plus" alt="Expand Icon: Click to reveal additional information."> Quickly identify systems</h2>
</div>
<div id="item3-2" class="collapse hide accordion-content" aria-labelledby="headingOne"
data-parent="#accordion-uyuni-2">
<p>
deployed in hybrid cloud and container infrastructures that are out of compliance to hardened profiles/templates based on your own internal security policies ensuring faster non-compliant remediation.
</p>
</div>
</div>
<!-- End item -->
<!-- Start item -->
<div class="accordion-wrap">
<div class="accordion-header" data-toggle="collapse" data-target="#item4-2" aria-expanded="false"
aria-controls="item4-2" id="headingOne">
<h2><img src="img/plus.svg" class="accordion-plus" alt="Expand Icon: Click to reveal additional information."> Simplified management</h2>
</div>
<div id="item4-2" class="collapse hide accordion-content" aria-labelledby="headingOne"
data-parent="#accordion-uyuni-2">
<p>
with graphical visualization of your Linux systems and their relationships along with the capability to organize them into logical groupings based on tags (e.g. location, rack, vendor, CPU architecture, RAM, etc.)
</p>
</div>
</div><!-- End item -->
</div> <!-- #accordion -->
</div>
<div class="col-md d-flex justify-content-center">
<img class="img-fluid home-illustration" src="img/il_2.svg" alt="">
</div>
</div> <!-- #2nd row -->
<section class="content-padding">
<div class="row carousel-wrap">
<div class="carousel-title-controller">
<h3>Latest news</h3>
<!-- Not for now -->
<!--
<div class="carousel-controller">
<span class="carousel-previous">
<i class="eos-icons">navigate_before</i>
</span>
<span class="carousel-next">
<i class="eos-icons">navigate_next</i>
</span>
</div>
-->
</div>
<div class="js-home-carousel home-carousel">
<!-- News box Start -->
<div class="news-box">
<div class="news-box-title">
<span>20/12/2024</span>
</div>
<div class="news-box-content">
<p>The release of uyuni-tools for Ubuntu 24.04 was finally successful, we will try to fix the package for Debian 12 as soon as possible.</p>
</div>
</div>
<!-- News box End -->
<!-- News box Start -->
<div class="news-box">
<div class="news-box-title">
<span>19/12/2024</span>
</div>
<div class="news-box-content">
<p>Uyuni 2024.12 is now available with the new Saline container. Please note, we are experiencing issues with the release of uyuni-tools for Ubuntu 24.04 and Debian 12. Check the <a href='pages/stable-version.html#releasenotes'>release notes</a> for the full details!</p>
</div>
</div>
<!-- News box End -->
</div>
</div>
<!-- .carousel wrap end -->
</section>
<!-- news-section -->
</div> <!-- #container -->
<!-- Footer -->
<footer>
<div class="row content-padding">
<div class="col-md-4 footer-description">
<h4>Uyuni</h4>
<span class="footer-legal">
© 2018 - 2024 The Uyuni Project
</span>
</div>
<div class="col-md">
<h5>Project</h5>
<ul>
<li><a href="https://www.uyuni-project.org/uyuni-docs/">Documentation</a></li>
<li><a href="pages/faq.html">FAQ</a></li>
<li><a href="https://github.com/uyuni-project/uyuni/wiki/Presentations">Presentations</a></li>
<li><a href="pages/stable-version.html">Stable version</a></li>
<li><a href="pages/devel-version.html">Development version</a></li>
<li><a href="pages/patches.html">Patches</a></li>
<li><a href="pages/source-code.html">Source code</a></li>
<li><a href="pages/contact.html">Contact</a></li>
<li><a href="https://github.com/uyuni-project/sumaform/">Sumaform</a></li>
<li><a href="https://github.com/uyuni-project/uyuni-rfc/">RFCs</a></li>
</ul>
</div>
<div class="col-md">
<h5>Related links</h5>
<ul>
<li><a href="https://www.suse.com/products/suse-manager/">SUSE Manager</a></li>
<li><a href="https://www.saltstack.com/">SaltStack</a></li>
<li><a href="https://cobbler.github.io/">Cobbler</a></li>
<li><a href="https://spacewalkproject.github.io"/>Spacewalk</a></li>
</ul>
</div>
<div class="col-md">
<h5>Social</h5>
<div class="social-links">
<a href="https://github.com/uyuni-project" target="_blank">
<img src="img/github_white.svg" alt="Uyuni - Github" title="GitHub source repository">
</a>
<a href="https://l10n.opensuse.org/projects/uyuni/" target="_blank">
<img src="img/Weblate_logo.svg" width="24" height="24" alt="Uyuni - Weblate" title="Translate Uyuni to your language">
</a>
<a href="pages/contact.html#gitter">
<img src="img/gitter.svg" alt="Uyuni - Gitter" title="Gitter chat rooms">
</a>
<a href="https://www.youtube.com/channel/UCB0SkZFAw9vPCFeUIYqZQ5A" target="_blank">
<img src="img/yt_icon_mono_dark.svg" width="24" height="24" alt="Uyuni - YouTube" title="YouTube channel">
</a>
<a href="https://twitter.com/UyuniProject" target="_blank">
<img src="img/twitter.svg" alt="Uyuni - Twitter" title="Twitter">
</a>
</div>
</div>
</div>
</footer>
<!-- end footer -->
</div>
<!-- .page-wrapper -->
</body>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js" integrity="sha384-wHAiFfRlMFy6i5SRaxvfOCifBUQy1xHdJ/yoi7FRNXMRBu5WHdZYu1hA6ZOblgut" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js" integrity="sha384-B0UglyR+jN6CkvvICOB2joaf5I4l3gm9GU6Hc1og6Ls7i6U/mkkaduKaBhlAXv9k" crossorigin="anonymous"></script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/[email protected]/slick/slick.min.js"></script>
<script src="./js/script.js"></script>
</html>