Skip to content

Commit ac26cd3

Browse files
authored
chore(doc): docker manifest creation
1 parent 772d56d commit ac26cd3

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

release.adoc

+7-4
Original file line numberDiff line numberDiff line change
@@ -167,14 +167,17 @@ After the voting is complete with success, the artifacts can be released.
167167
Republish docker image in the Apache org on Docker Hub:
168168

169169
```
170-
# assuming logged in to docker hub
171-
docker pull camelk/camel-k:$VERSION
172-
docker tag camelk/camel-k:$VERSION apache/camel-k:$VERSION
173-
docker push apache/camel-k:$VERSION
170+
# assuming logged in to docker hub (default amd64)
171+
docker pull camelk/camel-k:$VERSION-amd64
172+
docker tag camelk/camel-k:$VERSION-amd64 apache/camel-k:$VERSION-amd64
173+
docker push apache/camel-k:$VERSION-amd64
174174
# push any other supported architecture (ie, arm64)
175175
docker pull camelk/camel-k:$VERSION-arm64
176176
docker tag camelk/camel-k:$VERSION-arm64 apache/camel-k:$VERSION-arm64
177177
docker push apache/camel-k:$VERSION-arm64
178+
# create and push the manifest
179+
docker manifest create apache/camel-k:$VERSION--amend apache/camel-k:$VERSION-amd64 --amend apache/camel-k:$VERSION-arm64
180+
docker manifest push --purge apache/camel-k:$VERSION
178181
```
179182

180183
Release the staging repository at: https://repository.apache.org (Camel K CRD dependency).

0 commit comments

Comments
 (0)