Function:
func IntreeCloudProviderImplementationSupported(cloudProvider CloudProvider) (inTree bool) {
if cloudProvider == CloudProviderAzure || cloudProvider == CloudProviderVsphere || cloudProvider == CloudProviderGoogle {
return true
}
return false
}
In sdk/providerconfig/types.go states Vsphere as in-tree. However, when using KubeOne, I believe Vsphere CPI (CCM) is installed as out-of-tree. I'm not sure wether this would make a difference but should Vsphere in the meantime be out-of-tree?
Function:
In
sdk/providerconfig/types.gostates Vsphere as in-tree. However, when using KubeOne, I believe Vsphere CPI (CCM) is installed as out-of-tree. I'm not sure wether this would make a difference but should Vsphere in the meantime be out-of-tree?