diff --git a/.wordlist.txt b/.wordlist.txt
index 1c048c7..e549e44 100644
--- a/.wordlist.txt
+++ b/.wordlist.txt
@@ -1,3 +1,5 @@
+mongodb
+graphql
accomodate
accomodated
abc
diff --git a/website/docs/k8s-support.md b/website/docs/k8s-support.md
new file mode 100644
index 0000000..09a3372
--- /dev/null
+++ b/website/docs/k8s-support.md
@@ -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.
+
+
+
+ | Pod |
+ Container |
+ CPU(Requested) |
+ Memory(Requested) |
+
+
+ | litmusportal-frontend |
+ litmusportal-frontend |
+ 25m |
+ 300M |
+
+
+ | litmusportal-server |
+ auth-server |
+ 15m |
+ 150M |
+
+
+ | litmusportal-server |
+ graphql-server |
+ 15m |
+ 150M |
+
+
+ | mongodb |
+ mongodb |
+ 25m |
+ 300M |
+
+
diff --git a/website/sidebars.js b/website/sidebars.js
index 434c87d..8f8542e 100644
--- a/website/sidebars.js
+++ b/website/sidebars.js
@@ -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"],
},
};