File tree Expand file tree Collapse file tree 3 files changed +40
-4
lines changed
addons/argo-workflows/resources/service-account-argo-workflow-executor Expand file tree Collapse file tree 3 files changed +40
-4
lines changed Original file line number Diff line number Diff line change @@ -3,9 +3,8 @@ kind: Kustomization
3
3
4
4
resources :
5
5
- rbac.yaml
6
+ - secret.yaml
6
7
7
8
namespace : default
8
- labels :
9
- - pairs :
10
- app.kubernetes.io/part-of : " argo-workflow"
11
- includeSelectors : false
9
+ commonLabels :
10
+ app.kubernetes.io/part-of : " argo-workflow"
Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ metadata:
4
4
name : argo-workflow-executor
5
5
labels :
6
6
app.kubernetes.io/name : " argo-workflow-executor"
7
+ secrets :
8
+ - name : argo-workflow-executor.service-account-token
7
9
8
10
---
9
11
apiVersion : rbac.authorization.k8s.io/v1
@@ -31,6 +33,34 @@ rules:
31
33
verbs :
32
34
- get
33
35
- watch
36
+ - apiGroups :
37
+ - " "
38
+ resources :
39
+ - pods/exec
40
+ verbs :
41
+ - create
42
+ - apiGroups :
43
+ - argoproj.io
44
+ resources :
45
+ - workflowtaskresults
46
+ verbs :
47
+ - create
48
+ - patch
49
+ - apiGroups :
50
+ - argoproj.io
51
+ resources :
52
+ - workflowtasksets
53
+ - workflowartifactgctasks
54
+ verbs :
55
+ - list
56
+ - watch
57
+ - apiGroups :
58
+ - argoproj.io
59
+ resources :
60
+ - workflowtasksets/status
61
+ - workflowartifactgctasks/status
62
+ verbs :
63
+ - patch
34
64
35
65
---
36
66
apiVersion : rbac.authorization.k8s.io/v1
Original file line number Diff line number Diff line change
1
+ apiVersion : v1
2
+ kind : Secret
3
+ type : kubernetes.io/service-account-token
4
+ metadata :
5
+ name : argo-workflow-executor.service-account-token
6
+ annotations :
7
+ kubernetes.io/service-account.name : argo-workflow-executor
You can’t perform that action at this time.
0 commit comments