forked from kubernetes/ingress-nginx
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request kubernetes#95 from Shopify/sync-upstream
Sync upstream
- Loading branch information
Showing
8 changed files
with
187 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
/* | ||
Copyright 2018 The Kubernetes Authors. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package backendprotocol | ||
|
||
import ( | ||
"regexp" | ||
"strings" | ||
|
||
"github.com/golang/glog" | ||
extensions "k8s.io/api/extensions/v1beta1" | ||
|
||
"k8s.io/ingress-nginx/internal/ingress/annotations/parser" | ||
"k8s.io/ingress-nginx/internal/ingress/resolver" | ||
) | ||
|
||
var ( | ||
validProtocols = regexp.MustCompile(`^(HTTP|HTTPS|AJP|GRPC|GRPCS)$`) | ||
) | ||
|
||
type backendProtocol struct { | ||
r resolver.Resolver | ||
} | ||
|
||
// NewParser creates a new backend protocol annotation parser | ||
func NewParser(r resolver.Resolver) parser.IngressAnnotation { | ||
return backendProtocol{r} | ||
} | ||
|
||
// ParseAnnotations parses the annotations contained in the ingress | ||
// rule used to indicate the backend protocol. | ||
func (a backendProtocol) Parse(ing *extensions.Ingress) (interface{}, error) { | ||
if ing.GetAnnotations() == nil { | ||
return "HTTP", nil | ||
} | ||
|
||
proto, err := parser.GetStringAnnotation("backend-protocol", ing) | ||
if err != nil { | ||
return "HTTP", nil | ||
} | ||
|
||
proto = strings.TrimSpace(strings.ToUpper(proto)) | ||
if !validProtocols.MatchString(proto) { | ||
glog.Warningf("Protocol %v is not a valid value for the backend-protocol annotation. Using HTTP as protocol", proto) | ||
return "HTTP", nil | ||
} | ||
|
||
return proto, nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
/* | ||
Copyright 2018 The Kubernetes Authors. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package backendprotocol | ||
|
||
import ( | ||
"testing" | ||
|
||
api "k8s.io/api/core/v1" | ||
extensions "k8s.io/api/extensions/v1beta1" | ||
meta_v1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
"k8s.io/ingress-nginx/internal/ingress/annotations/parser" | ||
"k8s.io/ingress-nginx/internal/ingress/resolver" | ||
|
||
"k8s.io/apimachinery/pkg/util/intstr" | ||
) | ||
|
||
func buildIngress() *extensions.Ingress { | ||
return &extensions.Ingress{ | ||
ObjectMeta: meta_v1.ObjectMeta{ | ||
Name: "foo", | ||
Namespace: api.NamespaceDefault, | ||
}, | ||
Spec: extensions.IngressSpec{ | ||
Backend: &extensions.IngressBackend{ | ||
ServiceName: "default-backend", | ||
ServicePort: intstr.FromInt(80), | ||
}, | ||
}, | ||
} | ||
} | ||
|
||
func TestParseAnnotations(t *testing.T) { | ||
ing := buildIngress() | ||
|
||
_, err := NewParser(&resolver.Mock{}).Parse(ing) | ||
if err != nil { | ||
t.Errorf("unexpected error: %v", err) | ||
} | ||
|
||
data := map[string]string{} | ||
data[parser.GetAnnotationWithPrefix("backend-protocol")] = "HTTPS" | ||
ing.SetAnnotations(data) | ||
i, err := NewParser(&resolver.Mock{}).Parse(ing) | ||
if err != nil { | ||
t.Errorf("unexpected error parsing ingress with backend-protocol") | ||
} | ||
val, ok := i.(string) | ||
if !ok { | ||
t.Errorf("expected a string type") | ||
} | ||
if val != "HTTPS" { | ||
t.Errorf("expected HTTPS but %v returned", val) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters