Skip to content

Commit

Permalink
Merge branch 'bugfix/use-metalk8s-version-for-storage-operator' into …
Browse files Browse the repository at this point in the history
…q/128.0
  • Loading branch information
bert-e committed Apr 5, 2024
2 parents 1f4bbaf + 3e06fe9 commit be60321
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,11 @@
- Bump nginx image to [1.25.4-alpine](https://github.com/nginx/nginx/releases/tag/release-1.25.4)
(PR[#4295](https://github.com/scality/metalk8s/pull/4295))

### Bug fixes

- Do no longer use `latest` for `storage-operator` image
(PR[#4299](https://github.com/scality/metalk8s/pull/4299))

## Release 127.0.1 (in development)

### Bug fixes
Expand Down
2 changes: 1 addition & 1 deletion buildchain/buildchain/image.py
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ def _local_image(name: str, **kwargs: Any) -> targets.LocalImage:
.isoformat(),
"VCS_REF": constants.GIT_REF or "<unknown>",
"METALK8S_VERSION": versions.VERSION,
"VERSION": "latest",
"VERSION": versions.VERSION,
},
),
)
Expand Down
2 changes: 1 addition & 1 deletion buildchain/buildchain/versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ def _version_prefix(version: str, prefix: str = "v") -> str:
),
Image(
name="storage-operator",
version="latest",
version=VERSION,
digest=None,
),
Image(
Expand Down

0 comments on commit be60321

Please sign in to comment.