Skip to content
This repository was archived by the owner on Mar 24, 2023. It is now read-only.

Commit

Permalink
add desc
Browse files Browse the repository at this point in the history
  • Loading branch information
dexhorthy committed Mar 8, 2019
1 parent ba94132 commit 681ef98
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 4 deletions.
12 changes: 10 additions & 2 deletions hack/docs/mutations.json
Original file line number Diff line number Diff line change
Expand Up @@ -1107,9 +1107,17 @@
{
"path": "properties.lifecycle.properties.v1.items.properties.render",
"merge": {
"description": "A `render` step will do the work of collecting configuration values from a user and using them to generate the final assets that can be used to deploy an application.",
"description": "A `render` step will do the work of collecting configuration values from a user and using them to generate the final assets that can be used to deploy an application. If an `assets` field is set, those assets will be rendered rather than the top-level `assets` object",
"examples": [
{}
{},
{ "root": "./"},
{
"root": "./",
"assets": {
"v1": [{
"inline": { "contents": "some-asset", "dest": "some-path.txt"}
}
]}}
]
},
"replace": {
Expand Down
20 changes: 18 additions & 2 deletions hack/docs/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1088,9 +1088,25 @@
]
},
"render": {
"description": "A `render` step will do the work of collecting configuration values from a user and using them to generate the final assets that can be used to deploy an application.",
"description": "A `render` step will do the work of collecting configuration values from a user and using them to generate the final assets that can be used to deploy an application. If an `assets` field is set, those assets will be rendered rather than the top-level `assets` object",
"examples": [
{}
{},
{
"root": "./"
},
{
"root": "./",
"assets": {
"v1": [
{
"inline": {
"contents": "some-asset",
"dest": "some-path.txt"
}
}
]
}
}
],
"type": "object",
"properties": {
Expand Down

0 comments on commit 681ef98

Please sign in to comment.