Skip to content

chore: update to oci references #49

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Feb 3, 2025
Merged
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,14 @@ All notable changes to this project will be documented in this file.
- Add `--list-products` argument to get a machine-readable (JSON) output of all products and their versions ([#45]).
- Add `--completions nushell` support ([#46])

## Changed

- Update default `--registry` value to `oci.stackable.tech` and `--organization` to `sdp`([#49]).

[#44]: https://github.com/stackabletech/image-tools/pull/44
[#45]: https://github.com/stackabletech/image-tools/pull/45
[#46]: https://github.com/stackabletech/image-tools/pull/46
[#49]: https://github.com/stackabletech/image-tools/pull/49

## 0.0.13 - 2024-09-06

Expand Down
16 changes: 8 additions & 8 deletions src/image_tools/args.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,14 +67,14 @@ def build_bake_argparser() -> ArgumentParser:
parser.add_argument(
"-o",
"--organization",
help="Organization name within the given registry. Default: stackable.",
default="stackable",
help="Organization name within the given registry. Default: sdp.",
default="sdp",
)
parser.add_argument(
"-r",
"--registry",
help="Image registry to publish to. Default: docker.stackable.tech.",
default="docker.stackable.tech",
help="Image registry to publish to. Default: oci.stackable.tech.",
default="oci.stackable.tech",
)
parser.add_argument(
"--export-tags-file",
Expand Down Expand Up @@ -203,14 +203,14 @@ def preflight_args() -> Namespace:
parser.add_argument(
"-o",
"--organization",
help="Organization name within the given registry. Default: stackable",
default="stackable",
help="Organization name within the given registry. Default: sdp",
default="sdp",
)
parser.add_argument(
"-r",
"--registry",
help="Image registry to publish to. Default: docker.stackable.tech",
default="docker.stackable.tech",
help="Image registry to publish to. Default: oci.stackable.tech",
default="oci.stackable.tech",
)
parser.add_argument(
"-e",
Expand Down