Skip to content

Commit 2a497e0

Browse files
committed
more docs
1 parent 346b951 commit 2a497e0

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,21 @@ kubectl apply -n argo -f https://raw.githubusercontent.com/crenshaw-dev/argocd-e
3737

3838
You will have to run the workflow using a service account with appropriate permissions. See [examples/rbac.yaml](examples/rbac.yaml) for an example.
3939

40+
The plugin requires a secret named `argocd-sync-token` with a key called `jwt.txt` containing the Argo CD token.
41+
42+
```yaml
43+
apiVersion: v1
44+
kind: Secret
45+
metadata:
46+
name: argocd-sync-token
47+
data:
48+
jwt.txt: <base64 encoded token>
49+
```
50+
51+
The plugin also assumes the Argo CD API server is accessible on a server at this address: `argocd-server.argocd.svc.cluster.local`.
52+
53+
To change the address, edit the value of the ARGOCD_SERVER environment variable in the configmap.
54+
4055
## Contributing
4156

4257
Head to the [scripts](CONTRIBUTING.md) directory to find out how to get the project up and running on your local machine for development and testing purposes.

0 commit comments

Comments
 (0)