-
I have installed Argo Workflows today, and I've been trying to setup a job. This job would run a container using an image that is stored in a private repository, and then run some scripts in its steps. My Argo is installed in the
I have a serviceaccount in the Is there something I am missing ? I am quite a beginner at Kubernetes so maybe I did something wrong. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
It seems that you are using cluster install mode, and cluster role - apiGroups:
- ''
resourceNames:
- myregcred
resources:
- secrets
verbs:
- get |
Beta Was this translation helpful? Give feedback.
It seems that you are using cluster install mode, and cluster role
argo
does not have permission to access the secretmyregcred
.You can try adding the following permissions to the cluster role
argo
: