Stephan van Maris

Results 10 comments of Stephan van Maris

How about adding regex support to the git generator? Something like this: ```yaml spec: generators: - git: repoURL: ssh://git@xxxx revision: HEAD directories: - pathRegexp: deployments/(?P(argo|other-namespace|another))/(?P.*) template: metadata: name: '{{pathRegexp.appname}}' spec:...

@bogatuadrian I'm not really familiar with the code, but would it be possible to use regex-based matching instead of globbing? Referring to the components using their index in the path...

@bogatuadrian My initial thought that regexes would not *replace* globbing, but could be used *in addition* to globbing. But while thinking about your first question/concern: In order to actually *read*...

@bogatuadrian No I don't. I think that could be a good approach and it would offer a bit more flexibility than using index-based components. We do need to think about...

Our usecase is roughly the same as @grzegdl. To prevent manually creating Application YAML's for all our deployments, we use an ApplicationSet with the Git generator to create them for...

I had the same problem, but I then remembered I had added `DOCKER_DEFAULT_PLATFORM=linux/amd64` to my `~/.zshrc`. After unsetting the env-var it would still throw the same error. Only after removing...

> The main reason that we are facing a race condition when deleteHookOnFinish is enabled is that the new eventsource pod is trying to use the same hook that could...

> It would introduce a bit of downtime to all webhook related eventsources which may lead to loss of webhook events and affect the overall reliability of the solution. Agreed....

> In regards to the current "support" of Recreate strategy that you've mentioned, I'll let @whynowy comment on that as he’s way more familiar with that code but AFAIK we...

We're running into a similar issue with Jobs. When we auto-instrument them using the `instrumentation.opentelemetry.io/inject-sdk: "true"` annotation, the Pods are stuck on `Terminating` indefinitely after the Job completes. Manually removing...