Skip to content

Commit 073a846

Browse files
add description on missing params (#688)
1 parent 0e787b6 commit 073a846

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

graduated/build/step.yaml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ metadata:
88
sources:
99
- 'https://github.com/codefresh-io/steps/tree/master/graduated/build'
1010
stage: graduated
11-
version: 1.2.2
11+
version: 1.2.3
1212
categories:
1313
- featured
1414
- docker
@@ -97,7 +97,8 @@ spec:
9797
"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>"
9898
},
9999
"squash": {
100-
"type": "boolean"
100+
"type": "boolean",
101+
"description": "Squash newly built layers into a single new layer."
101102
},
102103
"image_name": {
103104
"type": "string",
@@ -114,6 +115,10 @@ spec:
114115
"type": "string",
115116
"description": "The tag that is assigned to the image you build. The default is the name of the branch or revision that is built."
116117
},
118+
"tag_policy": {
119+
"type": "string",
120+
"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> ."
121+
},
117122
"target": {
118123
"type": "string",
119124
"description": "target stage in a multistage build (build will run until this stage)"
@@ -142,7 +147,8 @@ spec:
142147
},
143148
"provider": {
144149
"type": "object",
145-
"additionalProperties": true
150+
"additionalProperties": true,
151+
"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."
146152
},
147153
"platform": {
148154
"type": "string",

0 commit comments

Comments
 (0)