Skip to content

Commit fc4e8d1

Browse files
committed
Fix private acm validation field name
1 parent 9000b55 commit fc4e8d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/apis/certmanager/validation/issuer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ func ValidateIssuerConfig(iss *v1alpha1.IssuerConfig, fldPath *field.Path) field
9090
el = append(el, field.Forbidden(fldPath.Child("privateACM"), "may not specify more than one issuer type"))
9191
} else {
9292
numConfigs++
93-
el = append(el, ValidatePrivateACMIssuerConfig(iss.PrivateACM, fldPath.Child("vault"))...)
93+
el = append(el, ValidatePrivateACMIssuerConfig(iss.PrivateACM, fldPath.Child("privateACM"))...)
9494
}
9595
}
9696
if numConfigs == 0 {

0 commit comments

Comments
 (0)