stages/cloud-init: add support for configuring output logging
This commit is contained in:
parent
4ac004e178
commit
9b5f13fc6d
1 changed files with 22 additions and 0 deletions
|
|
@ -114,6 +114,28 @@ SCHEMA = r"""
|
|||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"output": {
|
||||
"type": "object",
|
||||
"minProperties": 1,
|
||||
"properties": {
|
||||
"init": {
|
||||
"description": "Redirect the output of the init stage",
|
||||
"type": "string"
|
||||
},
|
||||
"config": {
|
||||
"description": "Redirect the output of the config stage",
|
||||
"type": "string"
|
||||
},
|
||||
"final": {
|
||||
"description": "Redirect the output of the final stage",
|
||||
"type": "string"
|
||||
},
|
||||
"all": {
|
||||
"description": "Redirect the output of all stages",
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue