-
Notifications
You must be signed in to change notification settings - Fork 57
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
feat: Add cli argument to control image download #1495
Conversation
api/golang/core/lib/binding_constructors/binding_constructors.go
Outdated
Show resolved
Hide resolved
container-engine-lib/lib/backend_impls/docker/docker_manager/docker_manager.go
Outdated
Show resolved
Hide resolved
.../server/api_container/server/startosis_engine/startosis_validator/docker_images_validator.go
Outdated
Show resolved
Hide resolved
|
cd42a9f
to
24124f2
Compare
Deploying with Cloudflare Pages
|
@leeederek the issue is already assigned to me and I just updated the documentation to include the new flag. |
container-engine-lib/lib/backend_impls/docker/docker_manager/create_and_start_container_args.go
Outdated
Show resolved
Hide resolved
.../server/api_container/server/startosis_engine/startosis_validator/docker_images_validator.go
Outdated
Show resolved
Hide resolved
.../server/api_container/server/startosis_engine/startosis_validator/docker_images_validator.go
Outdated
Show resolved
Hide resolved
core/server/api_container/server/startosis_engine/startosis_validator/validator_environment.go
Outdated
Show resolved
Hide resolved
container-engine-lib/lib/backend_interface/objects/image_download_mode/image_download_mode.go
Show resolved
Hide resolved
core/server/api_container/server/startosis_engine/startosis_validator.go
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looking very good, functionality is definitely there, jus requesting some changes around how we're representing image download mode to follow existing patterns in the codebase
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks great! thanks for addressing comments, last thing is magic constant comment and then good to merge!
🤖 I have created a release *beep* *boop* --- ## [0.85.0](0.84.13...0.85.0) (2023-10-30) ### ⚠ BREAKING CHANGES * protobuf definitions for more idiomatic SDKs ([#1586](#1586)) ### Features * Add cli argument to control image download ([#1495](#1495)) ([f210a76](f210a76)) ### Bug Fixes * run_sh doesn't remove new lines from input ([#1642](#1642)) ([a969dff](a969dff)) ### Code Refactoring * protobuf definitions for more idiomatic SDKs ([#1586](#1586)) ([e7ab58a](e7ab58a)), closes [#843](#843) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --------- Co-authored-by: kurtosisbot <[email protected]> Co-authored-by: leoporoli <[email protected]>
🤖 I have created a release *beep* *boop* --- ## [0.85.0](0.84.13...0.85.0) (2023-10-30) ### ⚠ BREAKING CHANGES * protobuf definitions for more idiomatic SDKs ([#1586](#1586)) ### Features * Add cli argument to control image download ([#1495](#1495)) ([f210a76](f210a76)) ### Bug Fixes * run_sh doesn't remove new lines from input ([#1642](#1642)) ([a969dff](a969dff)) ### Code Refactoring * protobuf definitions for more idiomatic SDKs ([#1586](#1586)) ([e7ab58a](e7ab58a)), closes [#843](#843) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --------- Co-authored-by: kurtosisbot <[email protected]> Co-authored-by: leoporoli <[email protected]>
## Description: Improve description of the image-download flag in both CLI help and docs. ## Is this change user facing? YES ## References (if applicable): - fix on #1495 for #1299 --------- Co-authored-by: Derek <[email protected]>
Description:
This PR adds a new cli argument to control how to download the latest images.
Is this change user facing?
YES
References (if applicable):
This PR is aimed to address #1299