Skip to content
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

Add description on missing params #688

Merged
merged 1 commit into from
Mar 13, 2024
Merged
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
12 changes: 9 additions & 3 deletions graduated/build/step.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ metadata:
sources:
- 'https://github.com/codefresh-io/steps/tree/master/graduated/build'
stage: graduated
version: 1.2.2
version: 1.2.3
categories:
- featured
- docker
Expand Down Expand Up @@ -97,7 +97,8 @@ spec:
"description": "Disable Codefresh build optimization for the build. <a href=\"https://codefresh.io/docs/docs/troubleshooting/common-issues/disabling-codefresh-caching-mechanisms/\">more info</a>"
},
"squash": {
"type": "boolean"
"type": "boolean",
"description": "Squash newly built layers into a single new layer."
},
"image_name": {
"type": "string",
Expand All @@ -114,6 +115,10 @@ spec:
"type": "string",
"description": "The tag that is assigned to the image you build. The default is the name of the branch or revision that is built."
},
"tag_policy": {
"type": "string",
"description": "The case-transformation policy for the tag name. One of original to keep tag name as is, or lowercase, the default, to convert to lowercase. For lowercase, tags in mixed case are pushed as image_name:<tagname> ."
},
"target": {
"type": "string",
"description": "target stage in a multistage build (build will run until this stage)"
Expand Down Expand Up @@ -142,7 +147,8 @@ spec:
},
"provider": {
"type": "object",
"additionalProperties": true
"additionalProperties": true,
"description": "Define if to build image with Codefresh, the default, or with an external provider such as Google Cloud Build (gcb). If not used, the pipeline builds the image locally on the pipeline pod. gcb requires additional arguments: google_app_creds, cache - both repo and ttl, timeout, machineType, logsBucket, and diskSizeGb . See example for details."
},
"platform": {
"type": "string",
Expand Down
Loading