Skip to content

Commit

Permalink
Merge pull request #167 from vania-pooh/master
Browse files Browse the repository at this point in the history
Added Moon cloud section
  • Loading branch information
vania-pooh authored Sep 5, 2020
2 parents 68c5784 + 11c26e9 commit 8d8d218
Show file tree
Hide file tree
Showing 3 changed files with 66 additions and 0 deletions.
1 change: 1 addition & 0 deletions site/layouts/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@
</div>
{{ partial "pricing" . }}
{{ partial "assistance" . }}
{{ partial "cloud" . }}
{{ partial "articles" . }}
{{ end }}
33 changes: 33 additions & 0 deletions site/layouts/partials/cloud.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<div class="container cloud">
<div class="row">
<div class="col">
<h2 id="cloud">Moon Cloud</h2>
</div>
</div>
<div class="row cloud__content">
<div class="col-12">
<p>Don't have your own Kubernetes cluster but still want to use Moon? This is now possible with <strong>Moon Cloud</strong> solution. How it works:</p>
<ol>
<li>You choose one of supported cloud platforms: <a href="https://aws.amazon.com/" target="_blank" title="Amazon Web Services">Amazon Web Services</a>, <a href="https://cloud.google.com/" target="_blank" title="Google Cloud">Google Cloud</a> or <a href="https://azure.microsoft.com/" target="_blank" title="Microsoft Azure">Microsoft Azure</a>;</li>
<li>We deploy and maintain a dedicated Moon cluster for you;</li>
<li>You pay the <strong>regular cloud billing + 25%</strong>. No need to purchase Moon license.</li>
</ol>
<p>This approach gives you a lot of flexibility:</p>
<ul>
<li><strong>Unlimited.</strong> Run as many parallel sessions as needed at any moment of time;</li>
<li><strong>Cost efficient.</strong> Per-minute billing and <a href="https://en.wikipedia.org/wiki/Autoscaling" target="_blank" title="Auto-scaling">auto-scaling</a> allow to dramatically decrease cluster cost;</li>
<li><strong>Secure.</strong> We deliver a dedicated cluster that can optionally run in your <a href="https://en.wikipedia.org/wiki/Virtual_private_cloud" target="_blank" title="Virtual network">virtual network</a> and save data to <a href="https://en.wikipedia.org/wiki/Amazon_S3" target="_blank" title="S3">S3</a> bucket you fully control;</li>
<li><strong>No ugly tunnels.</strong> Use all regular cloud network connectivity features to connect Moon cluster to your corporate network.</li>
</ul>
<p>How it looks like:</p>
<div class="video">
<iframe src="https://www.youtube.com/embed/dK1V80HuPyU" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<p>How much does it cost? It certainly depends on selected cloud platform and your usage pattern. Some example cases are shown below:</p>
<p class="case">AWS, 50 parallel sessions, 7 hours ~ $250/month</p>
<p class="case">Google Cloud, 50 parallel sessions, 7 hours ~ $200/month</p>
<p class="case">Microsoft Azure, 50 parallel sessions, 7 hours ~ $220/month</p>
<p>If you are interested in trying <strong>Moon Cloud</strong> - contact us: <a href="mailto:[email protected]" title="Support email">[email protected]</a>.</p>
</div>
</div>
</div>
32 changes: 32 additions & 0 deletions src/css/imports/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -419,6 +419,38 @@ nav li {

}

.cloud {
margin-top: 82px;

&__content {
margin-top: 32px;

.video {
position: relative;
margin: 10px 0;
padding-bottom: 56.25%;
padding-top: 30px;
height: 0;
overflow: hidden;
}

.video iframe, .video object, .video embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

.case {
padding-left: 30px;
font-size: 120%;
font-weight: bold;
}
}

}

.footer {
background: linear-gradient(1.36deg, #213976 24.73%, #264694 76.82%);
color: rgba(255, 255, 255, 0.8);
Expand Down

0 comments on commit 8d8d218

Please sign in to comment.