stages/cloud-init: add support for configuring output logging

This commit is contained in:
Achilleas Koutsou 2021-11-04 14:27:52 +01:00 committed by Christian Kellner
parent 4ac004e178
commit 9b5f13fc6d

View file

@ -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"
}
}
}
}
}