You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You will have to run the workflow using a service account with appropriate permissions. See [examples/rbac.yaml](examples/rbac.yaml) for an example.
39
39
40
-
The plugin requires a secret named `argocd-sync-token` with a key called `jwt.txt` containing the Argo CD token.
40
+
The plugin requires a secret named `argocd-sync-token` with a key called `jwt.txt` containing the Argo CD token. See the [Argo CD documentation](https://argo-cd.readthedocs.io/en/stable/user-guide/projects/#project-roles) for information about generating tokens.
41
41
42
42
```yaml
43
43
apiVersion: v1
44
44
kind: Secret
45
45
metadata:
46
46
name: argocd-sync-token
47
-
data:
48
-
jwt.txt: <base64 encoded token>
47
+
stringData:
48
+
jwt.txt: <token>
49
49
```
50
50
51
51
The plugin also assumes the Argo CD API server is accessible on a server at this address: `argocd-server.argocd.svc.cluster.local`.
0 commit comments