Add note for the deprecated vSphere 6.5

This adds a note to explain the situation of vSphere 6.5 support.
It would be useful to consider it again before we stop supporting
vSphere 6.5.
This commit is contained in:
Kenichi Omichi 2021-11-09 20:06:30 +00:00
parent e759c32129
commit e5b5e68c85

View File

@ -222,6 +222,10 @@ func (connection *VSphereConnection) NewClient(ctx context.Context) (*vim25.Clie
klog.Errorf("failed to check if vCenter version:%v and api version: %s is deprecated. Error: %v", client.ServiceContent.About.Version, client.ServiceContent.About.ApiVersion, err)
}
if vcdeprecated {
// After this deprecation, vSphere 6.5 support period is extended to October 15, 2022 as
// https://blogs.vmware.com/vsphere/2021/03/announcing-limited-extension-of-vmware-vsphere-6-5-general-support-period.html
// In addition, the external vSphere cloud provider does not support vSphere 6.5.
// Please keep vSphere 6.5 support til the period.
klog.Warningf("vCenter is deprecated. version: %s, api verson: %s Please consider upgrading vCenter and ESXi servers to 6.7u3 or higher", client.ServiceContent.About.Version, client.ServiceContent.About.ApiVersion)
}
return client, nil