bootstrap-vz/bootstrapvz/providers/ec2/manifest-schema.yml
Noah Fontes 4093693c2e Add support for enhanced networking on EC2.
This change adds a provider option, enhanced_networking,
which installs the Intel virtual networking driver for
SR-IOV using DKMS. It also modifies the EC2 AMI registration
to include support for SR-IOV.
2014-11-29 13:46:57 -08:00

51 lines
944 B
YAML

---
$schema: http://json-schema.org/draft-04/schema#
title: EC2 manifest
type: object
properties:
image:
type: object
properties:
description: {type: string}
provider:
type: object
properties:
credentials:
type: object
properties:
access-key: {type: string}
secret-key: {type: string}
virtualization:
enum:
- pvm
- hvm
enhanced_networking:
enum:
- none
- simple
required: [virtualization]
system:
type: object
properties:
bootloader:
type: string
enum:
- pvgrub
- extlinux
volume:
type: object
properties:
backing:
enum:
- ebs
- s3
partitions:
type: object
properties:
type:
enum:
- none
- msdos
- gpt
required: [backing]
required: [image]