Skip to content
This repository has been archived by the owner on Feb 25, 2024. It is now read-only.

Commit

Permalink
fix: incorrect tag for bentoctl (#122)
Browse files Browse the repository at this point in the history
  • Loading branch information
jjmachan authored Apr 20, 2022
1 parent 18c6b86 commit 7a8119e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bentoctl/deployment_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ def get_registry_info(self):
def generate_docker_image_tag(self, registry_url: str) -> str:
image_tag = (
f"{registry_url.replace('https://', '')}/"
"{self.repository_name}:{self.bento.tag.version}"
f"{self.repository_name}:{self.bento.tag.version}"
)
self.operator_spec["image_tag"] = image_tag
return image_tag
Expand Down

0 comments on commit 7a8119e

Please sign in to comment.