Skip to content

Commit

Permalink
Updated README
Browse files Browse the repository at this point in the history
  • Loading branch information
daurer committed May 20, 2024
1 parent 1940641 commit e7eb002
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,29 @@ Secondly, deploy the workflows service in the virtual cluster:
vcluster connect workflows-cluster -- helm install workflows charts/workflows -n workflows
```

Finally, deploy the events service in the virtual cluster:
```sh
vcluster connect workflows-cluster -- helm install workflows charts/events -n events
```

## Deployment in developer mode

First, deploy the workflows virtual cluster using the developer manifest:
```sh
helm install workflows-cluster charts/workflows-cluster -f charts/workflows-cluster/dev-values.yaml
```

Secondly, deploy the workflows service in the virtual cluster using the developer manifest :
Secondly, deploy the workflows service in the virtual cluster using the developer manifest:
```sh
vcluster connect workflows-cluster -- helm install workflows charts/workflows -n workflows -f charts/workflows/dev-values.yaml
```
Note that for getting the workflows-server to run inside the dev environment it is necessary to extract the argo-server-sso secret, delete the deployed sealed secret and then deploy a new sealed secret using ```kubectl create -f <SEALED-SECRET>``` inside the virtual cluster.

Finally, deploy the events service in the virtual cluster using the developer manifest:
```sh
vcluster connect workflows-cluster -- helm install workflows charts/events -n events -f charts/events/dev-values.yaml
```

## Serve Docs

Firstly, install `mkdocs` and the requisite dependencies in `docs/requirements.txt`; For this you may wish to use `pipx`, as:
Expand All @@ -40,4 +50,3 @@ pipx runpip mkdocs install -r docs/requirements.txt
Now, serve the docs with `mkdocs`:
```sh
mkdocs serve
```

0 comments on commit e7eb002

Please sign in to comment.