Replies: 1 comment
-
Hi @EricBoix - Hera runs tests on a Lines 135 to 173 in a787965 That might help you get set up? The |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
This is a follow up of issue #58 ("Example fails with minikube")
If we look at the code refered by @flaviuvadan that is k8s_sa.py on line 39 (which is pretty dated code but I wasn't able to find any recent equivalent), it assumes that at least a secret will be encoutered with the expression
But (by default) if you
minikube start
)kubectl apply -f https://raw.githubusercontent.com/argoproj/argo-workflows/master/manifests/quick-start-postgres.yaml
)argo namespace
(e.g. withkubectl create ns argo
)kubectl -n argo port-forward service/argo-server 2746:2746 &
)minikube dashboard
)then neither of the available service accounts (
argo-server
andargo
) have secrets defined. Which makes thek8s_sa.py
fail when trying to retrieve the secret_name.Is then have two questions
minikube
), do we still need to define theGlobalConfig.token
value ? (refer here for a self-made documentation on this)Beta Was this translation helpful? Give feedback.
All reactions