Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pyartcd/pyartcd/pipelines/build_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -388,9 +388,9 @@ async def _tag_into_ci_imagestream(self, arch_suffix, tag):

if not arch_suffix:
# Tag the image into the imagestream for private CI from openshift-priv.
self.logger.info('Tagging ocp-private/%s-priv:%s with %s', self.version, tag, tag_pullspec)
self.logger.info('Tagging ocp-priv/%s-priv:%s with %s', self.version, tag, tag_pullspec)
cmd = (
f'oc --kubeconfig {os.environ["KUBECONFIG"]} -n ocp-private '
f'oc --kubeconfig {os.environ["KUBECONFIG"]} -n ocp-priv '
f'tag {tag_pullspec} {self.version}-priv:{tag} --import-mode=PreserveOriginal'
)

Expand Down