mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 15:36:27 +00:00
39 lines
721 B
YAML
39 lines
721 B
YAML
![]() |
---
|
||
|
$schema: http://json-schema.org/draft-04/schema#
|
||
|
title: Azure manifest
|
||
|
type: object
|
||
|
properties:
|
||
|
provider:
|
||
|
type: object
|
||
|
properties:
|
||
|
waagent:
|
||
|
type: object
|
||
|
properties:
|
||
|
conf: {type: string}
|
||
|
version: {type: string}
|
||
|
required: [version]
|
||
|
required: [waagent]
|
||
|
system:
|
||
|
type: object
|
||
|
properties:
|
||
|
bootloader:
|
||
|
type: string
|
||
|
enum:
|
||
|
- grub
|
||
|
- extlinux
|
||
|
volume:
|
||
|
type: object
|
||
|
properties:
|
||
|
backing:
|
||
|
type: string
|
||
|
enum: [raw]
|
||
|
partitions:
|
||
|
type: object
|
||
|
properties:
|
||
|
type:
|
||
|
enum:
|
||
|
- none
|
||
|
- msdos
|
||
|
- gpt
|
||
|
required: [backing]
|