2016-01-26 21:43:22 -02:00
|
|
|
---
|
|
|
|
$schema: http://json-schema.org/draft-04/schema#
|
|
|
|
title: Oracle manifest
|
|
|
|
type: object
|
|
|
|
properties:
|
2016-02-19 20:14:37 -02:00
|
|
|
provider:
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
credentials:
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
username: {type: string}
|
|
|
|
password: {type: string}
|
|
|
|
identity-domain: {type: string}
|
|
|
|
container: {type: string}
|
|
|
|
verify: {type: boolean}
|
2016-01-26 21:43:22 -02:00
|
|
|
system:
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
bootloader:
|
|
|
|
type: string
|
|
|
|
enum: [grub]
|
|
|
|
volume:
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
backing:
|
|
|
|
type: string
|
|
|
|
enum: [raw]
|
|
|
|
partitions:
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
type:
|
|
|
|
type: string
|
|
|
|
enum:
|
|
|
|
- msdos
|
|
|
|
- gpt
|
|
|
|
required: [backing]
|