Skip to content

Commit

Permalink
Update documentation for new GH pages repo
Browse files Browse the repository at this point in the history
  • Loading branch information
t94j0 committed Mar 22, 2024
1 parent 4d0fb6f commit b14e7d5
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
12 changes: 10 additions & 2 deletions docs/requirements.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,17 @@ helm repo add bitnami https://charts.bitnami.com/bitnami

6. Start Nemesis Quickstart

This create secrets that are nessecary for Nemesis to run. If you want to edit any of the password values for Nemesis, edit them in [values.yaml](../helm/quickstart/values.yaml).
This create secrets that are nessecary for Nemesis to run.

Run `helm install nemesis-quickstart ./helm/quickstart` to kick off the quickstart.
Run `helm install --repo https://specterops.github.io/Nemesis/ nemesis-quickstart quickstart`

If you want to edit any of the password values for Nemesis, edit them in [values.yaml](../helm/quickstart/values.yaml).

```
curl https://raw.githubusercontent.com/SpecterOps/Nemesis/helm/helm/quickstart/values.yaml -o quickstart-values.yaml
# Edit values.yaml as you need
helm install --repo https://specterops.github.io/Nemesis/ nemesis-quickstart quickstart -f quickstart-values.yaml
```
7. Install Nginx Ingress and eck-operator
Expand Down
9 changes: 8 additions & 1 deletion docs/setup.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
# Nemesis Installation and Setup
1. Ensure the [requisite software/hardware is installed](./requirements.md).

2. Run `helm install nemesis ./helm/nemesis --timeout '45m'` to kick off the Nemesis install. Optionally configure build values in [values.yaml](../helm/nemesis/values.yaml) for things like resource requests/etc.
2. Run `helm install https://specterops.github.io/Nemesis/ nemesis nemesis --timeout '45m'` to kick off the Nemesis install. Optionally configure build values in [values.yaml](../helm/nemesis/values.yaml) for things like resource requests/etc.

To configure [values.yaml](../helm/nemesis/values.yaml), download values.yaml and install using helm.

```bash
curl https://raw.githubusercontent.com/SpecterOps/Nemesis/helm/helm/nemesis/values.yaml -o nemesis-values.yaml
helm install https://specterops.github.io/Nemesis/ nemesis nemesis --timeout '45m' -f nemesis-values.yaml
```

If you want monitoring capabilities, run `helm install nemesis-monitoring ./helm/monitoring`

Expand Down

0 comments on commit b14e7d5

Please sign in to comment.