Added Control-plane resources requirements. (#39)
* Added Control-plane resources requirements. Signed-off-by: Jonsy13 <vedant.shrotria@chaosnative.com>
This commit is contained in:
parent
e3bc991fb8
commit
6dbda905ae
|
|
@ -1,3 +1,5 @@
|
|||
mongodb
|
||||
graphql
|
||||
accomodate
|
||||
accomodated
|
||||
abc
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
@ -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,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"],
|
||||
},
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in New Issue