This commit is contained in:
Lihua Tang 2018-02-08 11:15:50 +08:00 committed by Manuel Alejandro de Brito Fontes
parent d76ea2c6f4
commit 1947f35121
6 changed files with 6 additions and 6 deletions

View file

@ -42,7 +42,7 @@ func NewLocalFS() (Filesystem, error) {
return fs, nil
}
// NewFakeFS creates an in-memory filesytem with all the required
// NewFakeFS creates an in-memory filesystem with all the required
// paths used by the ingress controller.
// This allows running test without polluting the local machine.
func NewFakeFS() (Filesystem, error) {

View file

@ -128,7 +128,7 @@ type Lister struct {
IngressAnnotation IngressAnnotationsLister
}
// Controller defines the required controllers that interact agains the api server
// Controller defines the required controllers that interact against the api server
type Controller struct {
Ingress cache.Controller
Endpoint cache.Controller

View file

@ -206,7 +206,7 @@ type Location struct {
// Denied returns an error when this location cannot not be allowed
// Requesting a denied location should return HTTP code 403.
Denied error `json:"denied,omitempty"`
// CorsConfig returns the Cors Configration for the ingress rule
// CorsConfig returns the Cors Configuration for the ingress rule
// +optional
CorsConfig cors.Config `json:"corsConfig,omitempty"`
// ExternalAuth indicates the access to this location requires

View file

@ -262,7 +262,7 @@ func AddCertAuth(name string, ca []byte, fs file.Filesystem) (*ingress.SSLCert,
}
// If the first certificate does not start with 'BEGIN CERTIFICATE' it's invalid and must not be used.
if pemCABlock.Type != "CERTIFICATE" {
return nil, fmt.Errorf("CA file %v contains invalid data, and must be created only with PEM formated certificates", name)
return nil, fmt.Errorf("CA file %v contains invalid data, and must be created only with PEM formatted certificates", name)
}
_, err := x509.ParseCertificate(pemCABlock.Bytes)