Alexander Matyushentsev

Results 90 comments of Alexander Matyushentsev

I was able to reproduce the issue. It is a day zero bug related to the whitespace in git repo URL. Repo server creates temp directory for "normalized" URL that...

But good thing it is not a regression and affects only repo with whitespace in the URL :)

Sorry, @PaulSonOfLars, I totally forgot to give you credit for the e2e tests. Fixing authorship in this PR: https://github.com/argoproj/argo-cd/pull/18515

I'm seeing the same issue. v0.3.0 does not have this issue

thank you for reporting it @diranged ! trying to reproduce and hopefully get a fix soon

Argo CD imports k8s.io/kubernetes package to perform client-side diffing and execute `kubectl apply/auth reconcile` programmatically instead of using fork exec. * client-side is required for performance reasons. We plan to...

The `cache: key is missing` might appear in logs only if Argo CD is misconfigured ( e.g. controller is unable to talk to redis ). In this case `error` level...

@james-callahan that is correct. Controller is trying to minimize number of writes to redis and don't write the same message twice. Logic two skip second write is implemented here: https://github.com/argoproj/argo-cd/blob/a08282bf6bcd7b44ea2dd3ef7fa0e2a77498063e/util/cache/twolevelclient.go#L24