File tree 3 files changed +12
-0
lines changed
3 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## Upcoming stream-metadata-go 0.4.6 (unreleased)
4
4
5
+ Changes:
6
+
7
+ - Add support for Hetzner images
8
+
5
9
## stream-metadata-go 0.4.5 (2024-11-05)
6
10
7
11
Changes:
Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ type Media struct {
68
68
Digitalocean * PlatformBase `json:"digitalocean"`
69
69
Exoscale * PlatformBase `json:"exoscale"`
70
70
Gcp * PlatformGcp `json:"gcp"`
71
+ Hetzner * PlatformBase `json:"hetzner"`
71
72
HyperV * PlatformBase `json:"hyperv"`
72
73
Ibmcloud * PlatformIBMCloud `json:"ibmcloud"`
73
74
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 {
145
145
}
146
146
}
147
147
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
+
148
155
if releaseArch .Media .HyperV != nil {
149
156
artifacts ["hyperv" ] = stream.PlatformArtifacts {
150
157
Release : rel .Release ,
You can’t perform that action at this time.
0 commit comments