Skip to content

Commit cccf7c6

Browse files
authored
Added Docs for 3.0.x releases (#214)
* Updated docs Signed-off-by: Jonsy13 <[email protected]> * Updated docs Signed-off-by: Jonsy13 <[email protected]> * Added changes Signed-off-by: Jonsy13 <[email protected]> --------- Signed-off-by: Jonsy13 <[email protected]>
1 parent 761ac8f commit cccf7c6

File tree

1,155 files changed

+50114
-7090
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,155 files changed

+50114
-7090
lines changed

website/docs/getting-started/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ Visit https://docs.litmuschaos.io to find more info.
9999
Applying the manifest file will install all the required service account configuration and ChaosCenter.
100100

101101
```bash
102-
kubectl apply -f https://litmuschaos.github.io/litmus/2.0.0/litmus-2.0.0.yaml
102+
kubectl apply -f https://litmuschaos.github.io/litmus/3.0.0-beta5/litmus-3.0.0-beta5.yaml
103103
```
104104

105105
---

website/docs/litmusctl/installation.md

Lines changed: 63 additions & 65 deletions
Large diffs are not rendered by default.

website/docs/user-guides/chaoscenter-cluster-scope-installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,10 @@ Visit https://docs.litmuschaos.io to find more info.
8080
Applying the manifest file will install all the required service account configuration and ChaosCenter.
8181

8282
```bash
83-
kubectl apply -f https://litmuschaos.github.io/litmus/2.0.0/litmus-2.0.0.yaml
83+
kubectl apply -f https://litmuschaos.github.io/litmus/3.0.0-beta5/litmus-3.0.0-beta5.yaml
8484
```
8585

86-
> If you are installing Litmus in any other namespace apart from `litmus` namespace, make sure to change the same in the manifest too `https://litmuschaos.github.io/litmus/2.0.0/litmus-2.0.0.yaml`.
86+
> If you are installing Litmus in any other namespace apart from `litmus` namespace, make sure to change the same in the manifest too `https://litmuschaos.github.io/litmus/3.0.0-beta5/litmus-3.0.0-beta5.yaml`.
8787
8888
## **Verify your installation**
8989

website/docs/user-guides/chaoscenter-namespace-scope-installation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ kubectl create ns litmus
5555
The cluster-admin or an equivalent user with the right permissions are required to install the CRDs upfront.
5656

5757
```bash
58-
kubectl apply -f https://raw.githubusercontent.com/litmuschaos/litmus/master/litmus-portal/litmus-portal-crds.yml
58+
kubectl apply -f https://raw.githubusercontent.com/litmuschaos/litmus/master/litmus-portal/manifests/litmus-portal-crds.yml
5959
```
6060

6161
<span style={{color: 'green'}}><b>Expected Output</b></span>
@@ -119,7 +119,7 @@ litmus Active 2s
119119
The cluster-admin or an equivalent user with the right permissions are required to install the CRDs upfront.
120120

121121
```bash
122-
kubectl apply -f https://raw.githubusercontent.com/litmuschaos/litmus/master/litmus-portal/litmus-portal-crds.yml
122+
kubectl apply -f https://raw.githubusercontent.com/litmuschaos/litmus/master/litmus-portal/manifests/litmus-portal-crds.yml
123123
```
124124

125125
<span style={{color: 'green'}}><b>Expected Output</b></span>
@@ -141,7 +141,7 @@ customresourcedefinition.apiextensions.k8s.io/eventtrackerpolicies.eventtracker.
141141
Applying the manifest file will install all the required service account configuration and ChaosCenter.
142142

143143
```bash
144-
kubectl apply -f https://raw.githubusercontent.com/litmuschaos/litmus/master/mkdocs/docs/2.9.0/litmus-namespaced-2.9.0.yaml -n <Your Namespace>
144+
kubectl apply -f https://raw.githubusercontent.com/litmuschaos/litmus/master/mkdocs/docs/3.0.0-beta5/litmus-namespaced-3.0.0-beta5.yaml -n <Your Namespace>
145145
```
146146

147147
> You need to provide the Namespace in place of `Your Namespace`, that you have created eariler for the litmuschaos Installation

website/docs/user-guides/uninstall-litmus.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ If the Litmus CRDs are deleted in the Cluster Scope all the respective custom re
8484
To remove all the CRDs Litmus uses, use the following command:
8585

8686
```bash
87-
kubectl delete -f https://raw.githubusercontent.com/litmuschaos/litmus/master/litmus-portal/litmus-portal-crds.yml
87+
kubectl delete -f https://raw.githubusercontent.com/litmuschaos/litmus/master/litmus-portal/manifests/litmus-portal-crds.yml
8888
```
8989

9090
---
@@ -102,15 +102,15 @@ To uninstall the ChaosCenter from the system, follow these steps -
102102
- **Litmus 2.0.0**
103103

104104
```bash
105-
kubectl delete -f https://raw.githubusercontent.com/litmuschaos/litmus/2.0.0/docs/2.0.0/litmus-2.0.0.yaml
105+
kubectl delete -f https://raw.githubusercontent.com/litmuschaos/litmus/3.0.0-beta5/mkdocs/docs/3.0.0-beta5/litmus-3.0.0-beta5.yaml
106106
```
107107

108108
> To delete any specific version of the ChaosCenter, replace the above command with the below command. `kubectl delete -f https://raw.githubusercontent.com/litmuschaos/litmus/<VERSION>/docs/<VERSION/litmus-<VERSION>.yaml`
109109
110110
- **Litmus Master Manifest**
111111

112112
```bash
113-
kubectl delete -f https://raw.githubusercontent.com/litmuschaos/litmus/master/litmus-portal/cluster-k8s-manifest.yml
113+
kubectl delete -f https://raw.githubusercontent.com/litmuschaos/litmus/master/litmus-portal/manifests/cluster-k8s-manifest.yml
114114
```
115115

116116
#### For Namespace Scope

website/docs/user-guides/upgrade.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ To upgrade Litmus ChaosCenter from 2.3.0 to 2.4.0, you can follow these steps:
1616
To upgrade ChaosCenter, you can re-apply the manifest using the kubectl.
1717

1818
```bash
19-
kubectl apply -f https://raw.githubusercontent.com/litmuschaos/litmus/master/mkdocs/docs/2.4.0/litmus-2.4.0.yaml
19+
kubectl apply -f https://raw.githubusercontent.com/litmuschaos/litmus/master/mkdocs/docs/3.0.0-beta5/litmus-3.0.0-beta5.yaml
2020
```
2121

2222
## Upgrade Mongodb DB Schema

website/package-lock.json

Lines changed: 12 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

website/versioned_docs/version-2.0.0-Beta-3/namespaced-mode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ namespace/litmus created
6767
The cluster-admin or an equivalent user with the right permissions are required to install them CRDs upfront.
6868

6969
```bash
70-
kubectl apply -f https://raw.githubusercontent.com/litmuschaos/litmus/master/litmus-portal/litmus-portal-crds.yml
70+
kubectl apply -f https://raw.githubusercontent.com/litmuschaos/litmus/master/litmus-portal/manifests/litmus-portal-crds.yml
7171
```
7272

7373
Output:

website/versioned_docs/version-2.0.0-Beta-8/litmus-installation-namespace.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Visit https://docs.litmuschaos.io/docs/getstarted/ to find more info.
8282
- The cluster-admin or an equivalent user with the right permissions are required to install them CRDs upfront. To apply LitmusCRDs:
8383

8484
```bash
85-
kubectl apply -f https://raw.githubusercontent.com/litmuschaos/litmus/master/litmus-portal/litmus-portal-crds.yml
85+
kubectl apply -f https://raw.githubusercontent.com/litmuschaos/litmus/master/litmus-portal/manifests/litmus-portal-crds.yml
8686
```
8787

8888
Output:
@@ -115,7 +115,7 @@ kubectl create ns ${LITMUS_PORTAL_NAMESPACE}
115115
- The cluster-admin or an equivalent user with the right permissions are required to install them CRDs upfront. To apply LitmusCRDs:
116116

117117
```bash
118-
kubectl apply -f https://raw.githubusercontent.com/litmuschaos/litmus/master/litmus-portal/litmus-portal-crds.yml
118+
kubectl apply -f https://raw.githubusercontent.com/litmuschaos/litmus/master/litmus-portal/manifests/litmus-portal-crds.yml
119119
```
120120

121121
Output:

website/versioned_docs/version-2.0.0/user-guides/chaoscenter-namespace-scope-installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ kubectl create ns litmus
5555
The cluster-admin or an equivalent user with the right permissions are required to install the CRDs upfront.
5656

5757
```bash
58-
kubectl apply -f https://raw.githubusercontent.com/litmuschaos/litmus/master/litmus-portal/litmus-portal-crds.yml
58+
kubectl apply -f https://raw.githubusercontent.com/litmuschaos/litmus/master/litmus-portal/manifests/litmus-portal-crds.yml
5959
```
6060

6161
<span style={{color: 'green'}}><b>Expected Output</b></span>
@@ -120,7 +120,7 @@ litmus Active 79m
120120
The cluster-admin or an equivalent user with the right permissions are required to install the CRDs upfront.
121121

122122
```bash
123-
kubectl apply -f https://raw.githubusercontent.com/litmuschaos/litmus/master/litmus-portal/litmus-portal-crds.yml
123+
kubectl apply -f https://raw.githubusercontent.com/litmuschaos/litmus/master/litmus-portal/manifests/litmus-portal-crds.yml
124124
```
125125

126126
<span style={{color: 'green'}}><b>Expected Output</b></span>

0 commit comments

Comments
 (0)