add deprecation warnings for all cloud providers

This commit is contained in:
andrewsykim 2018-09-27 15:49:07 -04:00
parent 3c43f089b2
commit 9468521fdc

View File

@ -40,10 +40,14 @@ var (
external bool external bool
detail string detail string
}{ }{
{"openstack", true, "https://github.com/kubernetes/cloud-provider-openstack"}, {"aws", false, "The AWS provider is deprecated and will be removed in a future release"},
{"photon", false, "The Photon Controller project is no longer maintained."}, {"azure", false, "The Azure provider is deprecated and will be removed in a future release"},
{"cloudstack", false, "The CloudStack Controller project is no longer maintained."}, {"cloudstack", false, "The CloudStack Controller project is no longer maintained."},
{"gce", false, "The GCE provider is deprecated and will be removed in a future release"},
{"openstack", true, "https://github.com/kubernetes/cloud-provider-openstack"},
{"ovirt", false, "The ovirt Controller project is no longer maintained."}, {"ovirt", false, "The ovirt Controller project is no longer maintained."},
{"photon", false, "The Photon Controller project is no longer maintained."},
{"vsphere", false, "The vSphere provider is deprecated and will be removed in a future release"},
} }
) )