Added Control-plane resources requirements. (#39)

* Added Control-plane resources requirements.

Signed-off-by: Jonsy13 <vedant.shrotria@chaosnative.com>
This commit is contained in:
VEDANT SHROTRIA 2021-06-15 22:39:57 +05:30 committed by GitHub
parent e3bc991fb8
commit 6dbda905ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 73 additions and 17 deletions

View File

@ -1,3 +1,5 @@
mongodb
graphql
accomodate
accomodated
abc

View File

@ -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.
<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>

View File

@ -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": [
@ -27,7 +31,7 @@ module.exports = {
"Day 2": ["myhub", "gitops", "probes"],
},
],
// Features: [
// Features: [
// "gitops",
// "settings",
// "myhub",
@ -44,6 +48,6 @@ module.exports = {
// "rbac",
// "service-acounts",
// ],
Advanced: ["admin-mode", "namespaced-mode", "litmus-psp"],
Advanced: ["admin-mode", "namespaced-mode", "litmus-psp", "k8s-support"],
},
};