Skip to content

Commit 6eb33cc

Browse files
author
aniketpatil
committed
chore: Update Argo Workflows references to v3.7
1 parent a27d864 commit 6eb33cc

File tree

3 files changed

+47
-0
lines changed

3 files changed

+47
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
apiVersion: rbac.authorization.k8s.io/v1
2+
kind: ClusterRole
3+
metadata:
4+
name: argo-cluster-role
5+
rules:
6+
- apiGroups: [""]
7+
resources: ["namespaces"]
8+
verbs: ["get","list","watch"]
9+
- apiGroups: ["argoproj.io"]
10+
resources: ["clusterworkflowtemplates","workflows","workflowtemplates"]
11+
verbs: ["get","list","watch","create","update","patch","delete"]
12+
---
13+
apiVersion: rbac.authorization.k8s.io/v1
14+
kind: ClusterRoleBinding
15+
metadata:
16+
name: argo-cluster-role-binding
17+
subjects:
18+
- kind: ServiceAccount
19+
name: argo
20+
namespace: argo
21+
roleRef:
22+
kind: ClusterRole
23+
name: argo-cluster-role
24+
apiGroup: rbac.authorization.k8s.io
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
apiVersion: rbac.authorization.k8s.io/v1
2+
kind: ClusterRole
3+
metadata:
4+
name: argo-workflowtaskresults-role
5+
rules:
6+
- apiGroups: ["argoproj.io"]
7+
resources: ["workflowtaskresults"]
8+
verbs: ["create","get","list","watch","update","patch","delete"]
9+
---
10+
apiVersion: rbac.authorization.k8s.io/v1
11+
kind: ClusterRoleBinding
12+
metadata:
13+
name: argo-workflowtaskresults-role-binding
14+
subjects:
15+
- kind: ServiceAccount
16+
name: default # workflow pods जे service account वापरत आहेत
17+
namespace: argo # argo namespace मध्ये
18+
roleRef:
19+
kind: ClusterRole
20+
name: argo-workflowtaskresults-role
21+
apiGroup: rbac.authorization.k8s.io

manifests/kustomize/third-party/argo/installs/namespace/kustomization.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
apiVersion: kustomize.config.k8s.io/v1beta1
22
kind: Kustomization
33

4+
namespace: argo # This namespace must match the namespace in the parent kustomization.yaml.
5+
46
# This kustomization.yaml mirrors the upstream Argo Workflows namespace-install configuration with remote references.
57
# The differences:
68
# * this does not include argo server.

0 commit comments

Comments
 (0)