-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
107 lines (105 loc) · 5.05 KB
/
index.html
File metadata and controls
107 lines (105 loc) · 5.05 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
106
107
<!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>
<script src="css/os.css"></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">
<a href="getting-started.html">
<button type="button" class="btn btn-success btn-lg col-sm-offset-5">
Get Started!
</button>
</a>
</div>
<br/>
<br/>
<div class="row">
<div class="col-md-6">
<h3>Development Teams</h3>
<ul>
<li>How do I deploy my application?</li>
<ul>
<li>Define your <a href="dev_resources/source_repo.html">source repository</a></li>
<li>Define your <a href="dev_resources/deploy_repo.html">deployment repository</a></li>
<li>Execute a <a href="dev_resources/workflows.html">Workflow</a></li>
</ul>
<li>How to I view the Swagger REST documentation?</li>
<ul>
<li>In a temp folder, execute a git clone of <a href="https://github.com/swagger-api/swagger-ui.git">https://github.com/swagger-api/swagger-ui.git</a></li>
<li>In the browser of your choice, open the file *temp folder*/swagger-ui/dist/index.html</li>
<li>In the JSON API input box at the top of the page, paste in the <a href="https://raw.githubusercontent.com/OpenAperture/openaperture.github.io/master/swagger/manager/api.json">link</a> to the JSON</li>
<li>Hit the 'Explore' button</li>
</ul>
<li>CI Integration</li>
<ul>
<li><a href="https://plugins.gradle.org/plugin/io.openaperture.gradle.build-deploy">Gradle plugin</a></li>
</ul>
</ul>
</div>
<div class="col-md-6">
<h3>DevOps (OA Administrators)</h3>
<ul>
<li><a href="sys_admin_docs/components.html">Deployable System Component Overview (What is OA made of?)</a></li>
<li><a href="sys_admin_docs/messaging.html">How do the System Components communicate?</a></li>
<li>How do I spin up OpenAperture?</li>
<ul>
<li>Create one or more <a href="sys_admin_docs/create_cluster.html">EtcdCluster(s)</a> to run the OpenAperture components</li>
<li>Create an <a href="sys_admin_docs/create_cluster.html">EtcdCluster</a> for running docker builds</li>
<li>Create one or more <a href="sys_admin_docs/create_cluster.html">EtcdCluster(s)</a> for application deployments</li>
<li>Stand-up a <a href="https://www.rabbitmq.com/install-debian.html">RabbitMQ broker</a> (or similar)</li>
<li>Design and implement your OpenAperture <a href="sys_admin_docs/messaging.html">messaging</a> system.</li>
<li><a href="sys_admin_docs/configure_auth.html">Configure</a> the Authentication system</li>
<li><a href="sys_admin_docs/deploy_assemblies.html">Deploy the OpenAperture assemblies</a></li>
<li><a href="sys_admin_docs/application_cluster_dns.html">Wiring DNS for Application EtcdClusters</a></li>
</ul>
<li>How do I monitor OpenAperture?</li>
<ul>
<li>Monitor <a href="sys_admin_docs/system_events.html">System Events</a></li>
</ul>
<li><a href="sys_admin_docs/infrastructure_upgrade.html">Managing OpenAperture Infrastructure Upgrades</a></li>
</ul>
</div>
</div>
<br/>
<br/>
<div class="row">
<div class="col-md-6">
<h3>Contributors</h3>
<ul>
<li><a href="api-doc-index.html">REST API & ExDoc Documentation</a></li>
<li><a href="dev_resources/elixir.html">Elixir Resources</a></li>
<li><a href="dev_resources/contributing.html">Want to contribute? Here's how!</a></li>
</ul>
</div>
</div>
</div>
<br>
<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>