Initial Sidebar Setup (#10)
* Updated Directory Structure + Initial Sidebar Setup Signed-off-by: Sayan Mondal <sayan@chaosnative.com> * Reverted Folder Structure Signed-off-by: Sayan Mondal <sayan@chaosnative.com> * Fixed default page to old-vs-new Signed-off-by: Sayan Mondal <sayan@chaosnative.com> * Fixed embedmd. Signed-off-by: Jonsy13 <vedant.shrotria@mayadata.io> Co-authored-by: Jonsy13 <vedant.shrotria@mayadata.io>
This commit is contained in:
parent
2186b9bc61
commit
02e365bac3
|
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
id: agent-install
|
||||||
|
title: Agent Install
|
||||||
|
sidebar_label: Agent
|
||||||
|
---
|
||||||
|
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
id: create
|
||||||
|
title: How to Create a Workflow
|
||||||
|
sidebar_label: Create
|
||||||
|
---
|
||||||
|
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
id: diagram
|
||||||
|
title: Litmus Arch Diagram
|
||||||
|
sidebar_label: Diagram
|
||||||
|
---
|
||||||
|
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
id: litmus-install
|
||||||
|
title: Litmus Installation
|
||||||
|
sidebar_label: Litmus
|
||||||
|
---
|
||||||
|
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
id: observe
|
||||||
|
title: How to Observe/Track a Workflow
|
||||||
|
sidebar_label: Observe
|
||||||
|
---
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
id: introduction
|
id: old-vs-new
|
||||||
title: LitmusChaos Documentation
|
title: 1.x with 2.0 Comparison
|
||||||
sidebar_label: Introduction
|
sidebar_label: 1.x VS 2.0
|
||||||
---
|
---
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
@ -51,10 +51,3 @@ A high level comparison between Litmus 1.x and Litmus 2.0 providing a holistic v
|
||||||
### Litmus features
|
### Litmus features
|
||||||
|
|
||||||
### Access Litmus API [here](https://litmuschaos.github.io/litmus/api.html)
|
### Access Litmus API [here](https://litmuschaos.github.io/litmus/api.html)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
id: schedule
|
||||||
|
title: How to Schedule a Workflow
|
||||||
|
sidebar_label: Schedule
|
||||||
|
---
|
||||||
|
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
id: uninstall
|
||||||
|
title: How to Uninstall Litmus from your Cluster
|
||||||
|
sidebar_label: Uninstall
|
||||||
|
---
|
||||||
|
|
@ -76,7 +76,7 @@ module.exports = {
|
||||||
})),
|
})),
|
||||||
{
|
{
|
||||||
label: "Master/Unreleased",
|
label: "Master/Unreleased",
|
||||||
to: "docs/next/introduction",
|
to: "docs/next/old-vs-new",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -1,15 +1,26 @@
|
||||||
module.exports = {
|
module.exports = {
|
||||||
docs: {
|
docs: {
|
||||||
Introduction: [
|
Introduction: [
|
||||||
"introduction",
|
"old-vs-new",
|
||||||
// "diagram",
|
"diagram",
|
||||||
// "feature-definition"
|
// "feature-definition"
|
||||||
],
|
],
|
||||||
"Getting Started": [
|
"Getting Started": [
|
||||||
"prerequisite",
|
"prerequisite",
|
||||||
// "installation",
|
{
|
||||||
// "how-to",
|
"Installation": [
|
||||||
// "unistallation",
|
"litmus-install",
|
||||||
|
"agent-install"
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"How To": [
|
||||||
|
"create",
|
||||||
|
"schedule",
|
||||||
|
"observe",
|
||||||
|
],
|
||||||
|
},
|
||||||
|
"uninstall",
|
||||||
],
|
],
|
||||||
Features: [
|
Features: [
|
||||||
"gitops",
|
"gitops",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue