mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-28 14:07:14 +00:00
Merge pull request #59041 from hanxiaoshuai/cleanup
Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. remove some unused functions in validation.go **What this PR does / why we need it**: remove some unused functions in validation.go **Special notes for your reviewer**: **Release note**: ```release-note NONE ```
This commit is contained in:
commit
c43fd9554e
@ -202,10 +202,6 @@ func ValidateEndpointsSpecificAnnotations(annotations map[string]string, fldPath
|
|||||||
return allErrs
|
return allErrs
|
||||||
}
|
}
|
||||||
|
|
||||||
func ValidateOwnerReferences(ownerReferences []metav1.OwnerReference, fldPath *field.Path) field.ErrorList {
|
|
||||||
return apimachineryvalidation.ValidateOwnerReferences(ownerReferences, fldPath)
|
|
||||||
}
|
|
||||||
|
|
||||||
// ValidateNameFunc validates that the provided name is valid for a given resource type.
|
// ValidateNameFunc validates that the provided name is valid for a given resource type.
|
||||||
// Not all resources have the same validation rules for names. Prefix is true
|
// Not all resources have the same validation rules for names. Prefix is true
|
||||||
// if the name will have a value appended to it. If the name is not valid,
|
// if the name will have a value appended to it. If the name is not valid,
|
||||||
@ -283,11 +279,6 @@ func NameIsDNSSubdomain(name string, prefix bool) []string {
|
|||||||
return apimachineryvalidation.NameIsDNSSubdomain(name, prefix)
|
return apimachineryvalidation.NameIsDNSSubdomain(name, prefix)
|
||||||
}
|
}
|
||||||
|
|
||||||
// NameIsDNSLabel is a ValidateNameFunc for names that must be a DNS 1123 label.
|
|
||||||
func NameIsDNSLabel(name string, prefix bool) []string {
|
|
||||||
return apimachineryvalidation.NameIsDNSLabel(name, prefix)
|
|
||||||
}
|
|
||||||
|
|
||||||
// NameIsDNS1035Label is a ValidateNameFunc for names that must be a DNS 952 label.
|
// NameIsDNS1035Label is a ValidateNameFunc for names that must be a DNS 952 label.
|
||||||
func NameIsDNS1035Label(name string, prefix bool) []string {
|
func NameIsDNS1035Label(name string, prefix bool) []string {
|
||||||
return apimachineryvalidation.NameIsDNS1035Label(name, prefix)
|
return apimachineryvalidation.NameIsDNS1035Label(name, prefix)
|
||||||
@ -353,10 +344,6 @@ func ValidateObjectMetaUpdate(newMeta, oldMeta *metav1.ObjectMeta, fldPath *fiel
|
|||||||
return allErrs
|
return allErrs
|
||||||
}
|
}
|
||||||
|
|
||||||
func ValidateNoNewFinalizers(newFinalizers []string, oldFinalizers []string, fldPath *field.Path) field.ErrorList {
|
|
||||||
return apimachineryvalidation.ValidateNoNewFinalizers(newFinalizers, oldFinalizers, fldPath)
|
|
||||||
}
|
|
||||||
|
|
||||||
func ValidateVolumes(volumes []core.Volume, fldPath *field.Path) (map[string]core.VolumeSource, field.ErrorList) {
|
func ValidateVolumes(volumes []core.Volume, fldPath *field.Path) (map[string]core.VolumeSource, field.ErrorList) {
|
||||||
allErrs := field.ErrorList{}
|
allErrs := field.ErrorList{}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user