Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AwsWinLi ¶ added in v0.4.7
type AwsWinLi = ReplicatedImage
AwsWinLi represents prebuilt AWS Windows License Included Images.
type AzureDisk ¶
type AzureDisk struct {
// Release is the source release version
Release string `json:"release"`
// URL to an image already stored in Azure infrastructure
// that can be copied into an image gallery. Avoid creating VMs directly
// from this URL as that may lead to performance limitations.
URL string `json:"url,omitempty"`
}
AzureDisk represents an Azure disk image that can be imported into an image gallery or otherwise replicated, and then used as a boot source for virtual machines.
type Extensions ¶
type Extensions struct {
AwsWinLi *AwsWinLi `json:"aws-winli,omitempty"`
AzureDisk *AzureDisk `json:"azure-disk,omitempty"`
}
Extensions is data specific to Red Hat Enterprise Linux CoreOS
type ReplicatedImage ¶ added in v0.4.7
type ReplicatedImage struct {
Regions map[string]SingleImage `json:"regions,omitempty"`
}
ReplicatedImage represents an image in all regions of an AWS-like cloud This struct was copied from the release package to avoid an import cycle, and is used to describe all AWS WinLI Images in all regions.
type SingleImage ¶ added in v0.4.7
SingleImage represents a globally-accessible image or an image in a single region of an AWS-like cloud This struct was copied from the release package to avoid an import cycle, and is used to describe individual AWS WinLI Images.