fix rebase

Signed-off-by: Patrik Cyvoct <patrik@ptrk.io>
This commit is contained in:
Patrik Cyvoct 2020-10-28 19:29:40 +01:00
parent 0153b96ab8
commit 7460f9e00b
No known key found for this signature in database
GPG Key ID: 4334D82B950FB63A
2 changed files with 4 additions and 1 deletions

View File

@ -161,6 +161,10 @@ func SetDefaults_Service(obj *v1.Service) {
// NOTE: strategy handles cases where ClusterIPs is used (but not ClusterIP).
}
}
// any other defaulting depends on cluster configuration.
// further IPFamilies, IPFamilyPolicy defaulting is in ClusterIP alloc/reserve logic
// note: conversion logic handles cases where ClusterIPs is used (but not ClusterIP).
}
if utilfeature.DefaultFeatureGate.Enabled(features.LoadBalancerIPMode) &&

View File

@ -6011,7 +6011,6 @@ func ValidateLoadBalancerStatus(status *core.LoadBalancerStatus, fldPath *field.
allErrs = append(allErrs, field.Invalid(idxPath.Child("hostname"), ingress.Hostname, "must be a DNS name, not an IP address"))
}
}
}
return allErrs
}