Jann Fischer

Results 216 comments of Jann Fischer

Also, are your application manifests in a mono-repo or separate repositories?

Hm, good question about the disk space. Could well be possible that there's a bug in cleaning up Git repositories. Will investigate.

The `name` method performs a lexical sort on strings, not on numbers. So, `26` is after `226` in order when treated as string and sorted in an alphabetical way, because...

Sorry, I don't understand. Can you please tell me more about what you expect, and what you see?

`regexp:^[a-zA-Z].*` will only match strings that start with alphanumeric letter. What kind of strings do you want to match?

Ah, now I understand, thanks. Unfortunately, regexp is not (yet) supported for `ignore-tags` annotation. You may want to consider to find regexp for using in `allow-tags` to only match what...

> would be nice if you mention that in documentation ... It actually is mentioned there: https://argocd-image-updater.readthedocs.io/en/stable/configuration/images/#ignoring-certain-tags > can i have several regexp variants in allow-tags ? Not yet, but...

Forgot to mention: You can actually define your regexp to match multiple things, e.g. `regexp:^(latest|master)$` would match either tag `latest` or `master`

Hey @sj-porter-knime, thanks for this suggestion. In order to submit a PR, you need to fork this repository, push the changes to your fork (a dedicated branch for this is...

Hey @jeff51419, for the `argocd-image-updater test` command, you will have to explicitly pass the `registries.conf` to use if you have defined a custom registry, e.g.: ```shell $ cat registries.conf registries:...