-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(argo-cd): update + general fixes and improvements (#867)
* feat(argo-cd): update + general fixes and improvements Signed-off-by: David van der Spek <[email protected]> * chore: bump version Signed-off-by: David van der Spek <[email protected]> * fix: bump crds Signed-off-by: David van der Spek <[email protected]> --------- Signed-off-by: David van der Spek <[email protected]>
- Loading branch information
Showing
12 changed files
with
12,392 additions
and
1,391 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
10,572 changes: 9,431 additions & 1,141 deletions
10,572
argo-cd/helm/argo-cd/crds/crd-applicationset.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
docker.io: | ||
images: | ||
argoprojlabs/argocd-image-updater: [] | ||
quay.io: | ||
images-by-tag-regex: | ||
argoproj/argocd: ^v?[0-9]+\.[0-9]+?\.[0-9]+$ | ||
# the below regex can be used to limit the regex range so that only versions >= v2.8.0 are matched | ||
argoproj/argocd: (?:^v?2\.(?:[8-9]|[1-9][0-9]{1,})\.[0-9]+$)|(?:^v?(?:[3-9]|[1-9][0-9]{1,})\.[0-9]+?\.[0-9]+$) | ||
# the below regex can be used to limit the regex range so that only versions >= 0.12.0 are matched | ||
argoprojlabs/argocd-image-updater: (?:^v?0\.(?:1[2-9]|[2-9][0-9]|[1-9][0-9]{2,})\.[0-9]+$)|(?:^v?(?:[1-9]|[1-9][0-9]{1,})\.[0-9]+?\.[0-9]+$) | ||
ghcr.io: | ||
images: | ||
dexidp/dex: [] | ||
images-by-tag-regex: | ||
# the below regex can be used to limit the regex range so that only versions >= v2.37.0 are matched | ||
dexidp/dex: (?:^v?2\.(?:3[7-9]|[4-9][0-9]|[1-9][0-9]{2,})\.[0-9]+$)|(?:^v?(?:[3-9]|[1-9][0-9]{1,})\.[0-9]+?\.[0-9]+$) |