From e5b5e68c85ad8b8647f49d47b89be82740696e64 Mon Sep 17 00:00:00 2001 From: Kenichi Omichi Date: Tue, 9 Nov 2021 20:06:30 +0000 Subject: [PATCH] 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. --- .../k8s.io/legacy-cloud-providers/vsphere/vclib/connection.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/staging/src/k8s.io/legacy-cloud-providers/vsphere/vclib/connection.go b/staging/src/k8s.io/legacy-cloud-providers/vsphere/vclib/connection.go index 601d5bf9aea..42ef797d150 100644 --- a/staging/src/k8s.io/legacy-cloud-providers/vsphere/vclib/connection.go +++ b/staging/src/k8s.io/legacy-cloud-providers/vsphere/vclib/connection.go @@ -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