Enable validation by default on tests
This commit is contained in:
parent
8497484908
commit
30bd452255
2 changed files with 2 additions and 2 deletions
|
@ -31,7 +31,7 @@ import (
|
|||
// DefaultAnnotationsPrefix defines the common prefix used in the nginx ingress controller
|
||||
const (
|
||||
DefaultAnnotationsPrefix = "nginx.ingress.kubernetes.io"
|
||||
DefaultDisableAnnotationValidation = true
|
||||
DefaultDisableAnnotationValidation = false
|
||||
)
|
||||
|
||||
var (
|
||||
|
|
|
@ -152,7 +152,7 @@ Requires the update-status parameter.`)
|
|||
annotationsPrefix = flags.String("annotations-prefix", parser.DefaultAnnotationsPrefix,
|
||||
`Prefix of the Ingress annotations specific to the NGINX controller.`)
|
||||
|
||||
disableAnnotationValidation = flags.Bool("disable-annotation-validation", parser.DefaultDisableAnnotationValidation,
|
||||
disableAnnotationValidation = flags.Bool("disable-annotation-validation", true,
|
||||
`Prefix of the Ingress annotations specific to the NGINX controller.`)
|
||||
|
||||
enableSSLChainCompletion = flags.Bool("enable-ssl-chain-completion", false,
|
||||
|
|
Loading…
Reference in a new issue