-
Notifications
You must be signed in to change notification settings - Fork 28
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
ART-9021 get rid of auto in canonical_builders_from_upstream #669
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -228,8 +228,7 @@ | |
}, | ||
"urls-": {}, | ||
"canonical_builders_from_upstream": { | ||
"description": "Assert our base images, or listen to upstream", | ||
"enum": [true, false, "auto", "off", "no", "on", "yes"] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The code still handles There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. the on and off also need to be replaced with true and false, let's limit the value to bool true and false There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ok, so maybe we can use a boolean type instead? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yeah, pr updated |
||
"type": "boolean" | ||
}, | ||
"canonical_builders_from_upstream?": { | ||
"$ref": "#/properties/canonical_builders_from_upstream" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -207,8 +207,7 @@ | |
}, | ||
"content-": {}, | ||
"canonical_builders_from_upstream": { | ||
"description": "Override the facility to adhere to upstream suggestions for base images", | ||
"enum": [true, false, "auto", "off", "no", "on", "yes"] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same as above |
||
"type": "boolean" | ||
}, | ||
"canonical_builders_from_upstream?": { | ||
"$ref": "#/properties/canonical_builders_from_upstream" | ||
|
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.
This block should still apply, why removing it?
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.
the on and off also need to be replaced with true and false, pr updated to limit supported mode to [ True, False ]