File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33## Upcoming stream-metadata-go 0.4.6 (unreleased)
44
5+ Changes:
6+
7+ - Add support for Hetzner images
8+
59## stream-metadata-go 0.4.5 (2024-11-05)
610
711Changes:
Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ type Media struct {
6868 Digitalocean * PlatformBase `json:"digitalocean"`
6969 Exoscale * PlatformBase `json:"exoscale"`
7070 Gcp * PlatformGcp `json:"gcp"`
71+ Hetzner * PlatformBase `json:"hetzner"`
7172 HyperV * PlatformBase `json:"hyperv"`
7273 Ibmcloud * PlatformIBMCloud `json:"ibmcloud"`
7374 KubeVirt * PlatformKubeVirt `json:"kubevirt"`
Original file line number Diff line number Diff line change @@ -145,6 +145,13 @@ func (releaseArch *Arch) toStreamArch(rel *Release) stream.Arch {
145145 }
146146 }
147147
148+ if releaseArch .Media .Hetzner != nil {
149+ artifacts ["hetzner" ] = stream.PlatformArtifacts {
150+ Release : rel .Release ,
151+ Formats : mapFormats (releaseArch .Media .Hetzner .Artifacts ),
152+ }
153+ }
154+
148155 if releaseArch .Media .HyperV != nil {
149156 artifacts ["hyperv" ] = stream.PlatformArtifacts {
150157 Release : rel .Release ,
You can’t perform that action at this time.
0 commit comments