v0.0.28
BREAKING changes to IMAGE variable
Added
- New, optional
disablePromptproperty on Builder Variables in draft config (#180):- Default Value:
false - Variables with
disablePrompt: truewill not be prompted for when runningdraft interactive commands - Variables with
disablePrompt: truecan still be supplied via flags (draft create --var TAG=latest) or draft config files - Example Usage:
# draft.yaml variables: - name: "TAG" description: "the tag of the image to be built" disablePrompt: true # New optional field that is used to disable the prompt for this variable ...
- Default Value:
- For all draft substitutions, draft will now error if unsubstituted variables are found in the final output (#175)
Changed
- BREAKING the
IMAGEvariable no longer can include an image tag. TheTAGvariable should be used instead (#176) - BREAKING the
imageKeyvariable on thehelmdeployment type has been renamed toimageto be consistent with the supplied starter workflows (#176)- Re-running
draft createwill update existing files to follow the new convention
- Re-running