Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[docs] Rearrange the core values on the top page #5233

Merged
merged 5 commits into from
Sep 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 20 additions & 20 deletions docs/content/en/_index.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,26 +35,15 @@

<div class="row justify-content-md-center">
<div class="col core-values">
{{< blocks/value title="Visibility" image="visibility.png" image_position="left" >}}
{{< blocks/value title="Multi-provider & Multi-Tenancy" image="multi-provider.png" image_position="left" >}}
<ul class="core-value-detail">
<li>Deployment pipeline UI shows clarify what is happening</li>
<li>Separate logs viewer for each individual deployment</li>
<li>Realtime visualization of application state</li>
<li>Deployment notifications to slack, webhook endpoints</li>
<li>Insights show the delivery performance</li>
</ul>
{{< /blocks/value >}}

{{< blocks/value title="Automation" image="automation.png" image_position="right" >}}
<ul class="core-value-detail">
<li>Automated deployment analysis based on metrics, logs, emitted requests</li>
<li>Automatically roll back to the previous state as soon as analysis or a pipeline stage fails</li>
<li>Automatically detect configuration drift to notify and render the changes</li>
<li>Automatically trigger a new deployment when a defined event has occurred (e.g. container image pushed, helm chart published, etc)</li>
<li>Support multiple application kinds on multi-cloud including Kubernetes, Terraform, Cloud Run, AWS Lambda, Amazon ECS</li>
<li>Support multiple analysis providers including Prometheus, Datadog, Stackdriver, and more</li>
<li>Easy to operate multi-cluster, multi-tenancy by separating control-plane and piped</li>
</ul>
{{< /blocks/value >}}

{{< blocks/value title="Secure" image="secure.png" image_position="left" >}}
{{< blocks/value title="Secure" image="secure.png" image_position="right" >}}
<ul class="core-value-detail">
<li>Support single sign-on and role-based access control</li>
<li>Credentials are not exposed outside the cluster and not saved in the control-plane</li>
Expand All @@ -63,11 +52,22 @@
</ul>
{{< /blocks/value >}}

{{< blocks/value title="Multi-provider & Multi-Tenancy" image="multi-provider.png" image_position="right" >}}
{{< blocks/value title="Automation" image="automation.png" image_position="left" >}}
<ul class="core-value-detail">
<li>Support multiple application kinds on multi-cloud including Kubernetes, Terraform, Cloud Run, AWS Lambda, Amazon ECS</li>
<li>Support multiple analysis providers including Prometheus, Datadog, Stackdriver, and more</li>
<li>Easy to operate multi-cluster, multi-tenancy by separating control-plane and piped</li>
<li>Automated deployment analysis based on metrics, logs, emitted requests</li>
<li>Automatically roll back to the previous state as soon as analysis or a pipeline stage fails</li>
<li>Automatically detect configuration drift to notify and render the changes</li>
<li>Automatically trigger a new deployment when a defined event has occurred (e.g. container image pushed, helm chart published, etc)</li>
</ul>
{{< /blocks/value >}}

{{< blocks/value title="Visibility" image="visibility.png" image_position="right" >}}
<ul class="core-value-detail">
<li>Deployment pipeline UI shows clarify what is happening</li>
<li>Separate logs viewer for each individual deployment</li>
<li>Realtime visualization of application state</li>
<li>Deployment notifications to slack, webhook endpoints</li>
<li>Insights show the delivery performance</li>
</ul>
{{< /blocks/value >}}
</div>
Expand Down
Loading