@@ -118,8 +118,8 @@ Argo CD Image Updater can update images according to the following strategies:
118
118
|Strategy|Description|
119
119
|--------|-----------|
120
120
|`semver`| Update to the tag with the highest allowed semantic version|
121
- |`latest`| Update to the tag with the most recent creation date|
122
- |`name` | Update to the tag with the latest entry from an alphabetically sorted list|
121
+ |`latest/newest-build `| Update to the tag with the most recent creation date|
122
+ |`name/alphabetical ` | Update to the tag with the latest entry from an alphabetically sorted list|
123
123
|`digest`| Update to the most recent pushed version of a mutable tag|
124
124
125
125
You can define the update strategy for each image independently by setting the
@@ -132,14 +132,19 @@ argocd-image-updater.argoproj.io/<image_alias>.update-strategy: <strategy>
132
132
If no update strategy is given, or an invalid value is used, the default
133
133
strategy `semver` will be used.
134
134
135
+ !!!warning "Renamed image update strategies"
136
+ The `latest` strategy has been renamed to `newest-build`, and `name` strategy has been renamed to `alphabetical`.
137
+ Please switch to the new convention as support for the old naming convention will be removed in future releases.
138
+
135
139
!!!warning
136
140
As of November 2020, Docker Hub has introduced pull limits for accounts on
137
- the free plan and unauthenticated requests. The `latest` update strategy
141
+ the free plan and unauthenticated requests. The `latest/newest-build ` update strategy
138
142
will perform manifest pulls for determining the most recently pushed tags,
139
143
and these will count into your pull limits. So unless you are not affected
140
- by these pull limits, it is **not recommended** to use the `latest` update
144
+ by these pull limits, it is **not recommended** to use the `latest/newest-build ` update
141
145
strategy with images hosted on Docker Hub.
142
146
147
+
143
148
# # Filtering tags
144
149
145
150
You can specify an expression that is matched against each tag returned from
0 commit comments