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 635775a commit 59a63c5
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,25 @@ 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.
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
```

0 comments on commit 59a63c5

Please sign in to comment.