-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathgetting-started.html
More file actions
105 lines (103 loc) · 4.24 KB
/
getting-started.html
File metadata and controls
105 lines (103 loc) · 4.24 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>OpenAperture - Cloud Application Management Platform</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<link rel="stylesheet" href="css/app.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<div class="jumbotron">
<h1>OpenAperture</h1>
<!--<img src="images/oagraphic.png" style="max-height: 150px; max-width: 150px;" class="pull-right"><h1>OpenAperture</h1></img>-->
<p>Cloud Application Management Platform</p>
<p><a href="https://github.com/OpenAperture">View on GitHub</a></p>
</div>
<div class="row">
<p class="col-md-12 lead">
OpenAperture is a free, open-source hybrid cloud management platform that delivers software quickly and consistently regardless of location or workload. This future-ready platform from Lexmark Enterprise Software provides a comprehensive management system to handle the six pillars of cloud management – provisioning, deployment, monitoring, maintenance, security and metering.
</p>
</div>
<br/>
<div class="row">
<div class="col-md-6">
<div class="row">
<h2>System Goals</h2>
<br/>
<p>To provide an OSS hybrid Cloud Application Management Platform which...</p>
<ul>
<li>Runs in a centralized cloud</li>
<li>Runs on-prem</li>
<li>or...both</li>
</ul>
<p>OpenAperture should build, deploy, and manage 12-factor compliant applications</p>
</div>
<div class="row">
<h3>Build</h3>
<p>The OpenAperture build platform should:</p>
<ul>
<li>Build stateless application Docker containers</li>
<li>Inject all configuration at runtime</li>
<li>Support sending notifications via HipChat or Email as needed</li>
</ul>
</div>
<div class="row">
<h3>Deployments</h3>
<p>The OpenAperture deploy platform should:</p>
<ul>
<li>Deploy stateless containers via Fleet, while injecting environment-specific configuration</li>
<li>Ensure application scalability and redundancy</li>
<li>Support sending notifications via HipChat or Email as needed</li>
</ul>
</div>
<div class="row">
<h3>Application Management</h3>
<p>The OpenAperture deploy platform should:</p>
<ul>
<li>Provide host monitoring</li>
<li>Provide OpenAperture system monitoring</li>
<li>Provide developer access to logs</li>
</ul>
</div>
</div>
<div class="col-md-6">
<div class="row">
<h2>Key Technologies</h2>
</div>
<div class="row">
<h3>Docker</h3>
<p>Docker is an open platform for developers and sysadmins to build, ship, and run distributed applications.</p>
<p>Docker helps developers build and ship higher-quality applications, faster.</p>
<p>Docker helps sysadmins deploy and run any app on any infrastructure, quickly and reliably.</p>
<a href="https://www.docker.com/">https://www.docker.com/</a>
</div>
<br/>
<div class="row">
<h3>CoreOS / Fleet</h3>
<p>CoreOS uses Linux containers to manage your services at a higher level of abstraction.</p>
<p>With fleet, you can treat your CoreOS cluster as if it shared a single init system. It encourages users to write applications as small, ephemeral units that can easily migrate around a cluster of self-updating CoreOS machines.</p>
<a href="https://coreos.com/using-coreos/clustering/">https://coreos.com/using-coreos/clustering/</a>
</div>
<br/>
<div class="row">
<h3>CoreOS / Etcd</h3>
<p>Cetcd is a distributed key value store that provides a reliable way to store data across a cluster of machines.</p>
<a href="https://coreos.com/etcd/">hhttps://coreos.com/etcd/</a>
</div>
</div>
</div>
</div>
<hr/>
<br/>
<br/>
<div class="footer navbar-fixed-bottom">
<div class="container">
<p class="text-muted pull-right">© 2015 Lexmark International Technology S.A. All rights reserved.</p>
</div>
</div>
</body>
</html>