Skip to content

Commit

Permalink
Fix private acm validation field name
Browse files Browse the repository at this point in the history
  • Loading branch information
gordonbondon committed May 30, 2019
1 parent 9000b55 commit fc4e8d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/apis/certmanager/validation/issuer.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ func ValidateIssuerConfig(iss *v1alpha1.IssuerConfig, fldPath *field.Path) field
el = append(el, field.Forbidden(fldPath.Child("privateACM"), "may not specify more than one issuer type"))
} else {
numConfigs++
el = append(el, ValidatePrivateACMIssuerConfig(iss.PrivateACM, fldPath.Child("vault"))...)
el = append(el, ValidatePrivateACMIssuerConfig(iss.PrivateACM, fldPath.Child("privateACM"))...)
}
}
if numConfigs == 0 {
Expand Down

0 comments on commit fc4e8d1

Please sign in to comment.