summaryrefslogtreecommitdiffstats
path: root/release/rhcos/rhcos.go
blob: aeae2c8be14ab7d414885bfecf97d54e6a184e18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package rhcos

// Extensions is data specific to Red Hat Enterprise Linux CoreOS
type Extensions struct {
	AzureDisk *AzureDisk `json:"azure-disk,omitempty"`
}

// AzureDisk represents an Azure cloud image.
type AzureDisk struct {
	// 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"`
}