Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions .wordlist.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
mongodb
graphql
accomodate
accomodated
abc
Expand Down
50 changes: 50 additions & 0 deletions website/docs/k8s-support.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
---
id: k8s-support
title: Kubernetes Support
sidebar_label: Kubernetes Support
original_id: k8s-support
---

---

### Control Plane Resource Requirements

The Resource requests provided here have been estimated using data gathered manually using different methods -
- Using command `kubectl top`
- Recommendations from Vertical-Pod-Autoscaler
- Recommendations by a great utility Goldilocks.

These resources are getting monitored continuously and the information below will be updated as the metrics changes.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we can use some buffer units as well

<table>
<tr>
<th>Pod</th>
<th>Container</th>
<th>CPU(Requested)</th>
<th>Memory(Requested)</th>
</tr>
<tr>
<td>litmusportal-frontend</td>
<td>litmusportal-frontend</td>
<td>25m</td>
<td>300M</td>
</tr>
<tr>
<td>litmusportal-server</td>
<td>auth-server</td>
<td>15m</td>
<td>150M</td>
</tr>
<tr>
<td>litmusportal-server</td>
<td>graphql-server</td>
<td>15m</td>
<td>150M</td>
</tr>
<tr>
<td>mongodb</td>
<td>mongodb</td>
<td>25m</td>
<td>300M</td>
</tr>
</table>
38 changes: 21 additions & 17 deletions website/sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,16 @@ module.exports = {
"Getting Started": [
"getstarted",
{
"Installation" : [ "litmus-install", "agent-install", "litmus-with-ingress"],
Installation: [
"litmus-install",
"agent-install",
"litmus-with-ingress",
],
},
"create-workflow",
"observe-workflow",
{
"Uninstallation" : [ "agent-uninstall", "litmus-uninstall" ],
Uninstallation: ["agent-uninstall", "litmus-uninstall"],
},
],
"User Guide": [
Expand All @@ -27,23 +31,23 @@ module.exports = {
"Day 2": ["myhub", "gitops", "probes"],
},
],
// Features: [
// "gitops",
// Features: [
// "gitops",
// "settings",
// "myhub",
// "settings",
// "analytics",
// "myhub",
// "external-agents"
// "myhub",
// "settings",
// "analytics",
// "myhub",
// "external-agents"
//],
//Concepts: [
//"probes",
// "cross-cloud-control",
// "litmusctl",
// "crds",
// "rbac",
// "service-acounts",
// ],
Advanced: ["admin-mode", "namespaced-mode", "litmus-psp"],
//"probes",
// "cross-cloud-control",
// "litmusctl",
// "crds",
// "rbac",
// "service-acounts",
// ],
Advanced: ["admin-mode", "namespaced-mode", "litmus-psp", "k8s-support"],
},
};