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
|
accomodate
|
||||||
accomodated
|
accomodated
|
||||||
abc
|
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": [
|
"Getting Started": [
|
||||||
"getstarted",
|
"getstarted",
|
||||||
{
|
{
|
||||||
"Installation" : [ "litmus-install", "agent-install", "litmus-with-ingress"],
|
Installation: [
|
||||||
|
"litmus-install",
|
||||||
|
"agent-install",
|
||||||
|
"litmus-with-ingress",
|
||||||
|
],
|
||||||
},
|
},
|
||||||
"create-workflow",
|
"create-workflow",
|
||||||
"observe-workflow",
|
"observe-workflow",
|
||||||
{
|
{
|
||||||
"Uninstallation" : [ "agent-uninstall", "litmus-uninstall" ],
|
Uninstallation: ["agent-uninstall", "litmus-uninstall"],
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
"User Guide": [
|
"User Guide": [
|
||||||
|
|
@ -27,23 +31,23 @@ module.exports = {
|
||||||
"Day 2": ["myhub", "gitops", "probes"],
|
"Day 2": ["myhub", "gitops", "probes"],
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
// Features: [
|
// Features: [
|
||||||
// "gitops",
|
// "gitops",
|
||||||
// "settings",
|
// "settings",
|
||||||
// "myhub",
|
// "myhub",
|
||||||
// "settings",
|
// "settings",
|
||||||
// "analytics",
|
// "analytics",
|
||||||
// "myhub",
|
// "myhub",
|
||||||
// "external-agents"
|
// "external-agents"
|
||||||
//],
|
//],
|
||||||
//Concepts: [
|
//Concepts: [
|
||||||
//"probes",
|
//"probes",
|
||||||
// "cross-cloud-control",
|
// "cross-cloud-control",
|
||||||
// "litmusctl",
|
// "litmusctl",
|
||||||
// "crds",
|
// "crds",
|
||||||
// "rbac",
|
// "rbac",
|
||||||
// "service-acounts",
|
// "service-acounts",
|
||||||
// ],
|
// ],
|
||||||
Advanced: ["admin-mode", "namespaced-mode", "litmus-psp"],
|
Advanced: ["admin-mode", "namespaced-mode", "litmus-psp", "k8s-support"],
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue