Created initial workflow to build and push DOcker image by Argo Workflow

This commit is contained in:
Marcin-Ramotowski
2025-05-10 15:14:33 +00:00
parent 76a351710f
commit 3764970082
4 changed files with 121 additions and 0 deletions

View File

@ -0,0 +1,12 @@
apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
namespace: argo
name: argo-workflow-manager
rules:
- apiGroups: ["argoproj.io"]
resources: ["workflowtaskresults"]
verbs: ["create", "get", "list", "update", "patch", "delete"]
- apiGroups: ["argoproj.io"]
resources: ["workflows"]
verbs: ["create", "get", "list", "update", "patch", "delete"]