-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
69 lines (69 loc) · 3.32 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Holo - Minimalistic Configuration Management</title>
<link rel="stylesheet" type="text/css" href="./site.css">
</head>
<body>
<header>
<div id="header-buttons">
<a href="https://twitter.com/holocm" title="Follow on Twitter"><span class="logo logo-twitter"></span></a>
<a href="https://github.com/holocm" title="Fork on GitHub"><span class="logo logo-github"></span></a>
</div>
<h1>
<img src="./img/holo-logo.svg" alt="Holo">
Minimalistic configuration management
</h1>
</header>
<section class="features flex">
<div>
<h3>
<img src="img/feature-declarative.svg" alt="">
Declarative
</h3>
<p>Document system configuration with a friendly DSL.</p>
</div>
<div>
<h3>
<img src="img/feature-integrated.svg" alt="">
Integrated
</h3>
<p>Holo uses the system package manager to maintain the system state.</p>
</div>
<div>
<h3>
<img src="img/feature-serverless.svg" alt="">
Serverless
</h3>
<p>No dedicated infrastructure, network access or permanently running agent required.</p>
</div>
</section>
<section class="audience flex">
<div>
<h2>This might be for you if...</h2>
<ul>
<li>...you are looking for a simple way to formalize the configuration of a small number of systems.</li>
<li>...you want to get started with the basic ideas of configuration management before moving to an enterprise solution.</li>
<li>...you ship configuration to your clients, and they are already doing configuration management. They can install your Holo-based configuration as system packages using their own configuration management tool.</li>
</ul>
<p class="buttons">
<a class="button" href="./example.html">See example</a>
<a class="button" href="./install.html">Installation</a>
</p>
</div>
<div>
<h2>This is not for you if...</h2>
<ul>
<li>...your OS does not have a system package manager (such as dpkg or RPM) that exerts authority over the system partition.</li>
<li>...your applications are running in containers. You're better off baking your configuration into the container image from the start.</li>
<li>...you need one of the <a href="https://github.com/holocm/holo/issues?q=is:issue+is:open+label:"type:+feature"">features that are not yet implemented.</a> The biggest omissions right now are variable-based templating and verification of the full system state. (If in doubt, feel free to <a href="https://github.com/holocm/holo/issues/new">ask a question</a> about your required features.)</li>
</ul>
<p class="buttons">
<a class="button" href="https://en.wikipedia.org/wiki/Comparison_of_open-source_configuration_management_software">See alternatives</a>
</p>
</div>
</section>
</body>
</html>