Skip to content

Commit

Permalink
internal/oem: drop noop OEMs
Browse files Browse the repository at this point in the history
Drop legacy Container Linux OEMs with no code in Ignition: cloudsigma,
exoscale, hyperv, interoute, niftycloud, rackspace*, vagrant.  Leave
pxe because it's typically configured with coreos.config.url.
  • Loading branch information
bgilbert committed Dec 19, 2018
1 parent 641adcb commit 26828f9
Showing 1 changed file with 0 additions and 32 deletions.
32 changes: 0 additions & 32 deletions internal/oem/oem.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,6 @@ func init() {
name: "azure",
fetch: azure.FetchConfig,
})
configs.Register(Config{
name: "cloudsigma",
fetch: noop.FetchConfig,
})
configs.Register(Config{
name: "cloudstack",
fetch: cloudstack.FetchConfig,
Expand All @@ -102,22 +98,10 @@ func init() {
fetch: ec2.FetchConfig,
newFetcher: ec2.NewFetcher,
})
configs.Register(Config{
name: "exoscale",
fetch: noop.FetchConfig,
})
configs.Register(Config{
name: "gce",
fetch: gce.FetchConfig,
})
configs.Register(Config{
name: "hyperv",
fetch: noop.FetchConfig,
})
configs.Register(Config{
name: "niftycloud",
fetch: noop.FetchConfig,
})
configs.Register(Config{
name: "packet",
fetch: packet.FetchConfig,
Expand All @@ -127,18 +111,6 @@ func init() {
name: "pxe",
fetch: noop.FetchConfig,
})
configs.Register(Config{
name: "rackspace",
fetch: noop.FetchConfig,
})
configs.Register(Config{
name: "rackspace-onmetal",
fetch: noop.FetchConfig,
})
configs.Register(Config{
name: "vagrant",
fetch: noop.FetchConfig,
})
configs.Register(Config{
name: "vagrant-virtualbox",
fetch: virtualbox.FetchConfig,
Expand All @@ -151,10 +123,6 @@ func init() {
name: "vmware",
fetch: vmware.FetchConfig,
})
configs.Register(Config{
name: "interoute",
fetch: noop.FetchConfig,
})
configs.Register(Config{
name: "qemu",
fetch: qemu.FetchConfig,
Expand Down

0 comments on commit 26828f9

Please sign in to comment.