Bump GLBC version and remove Unreleased tag from tests

This commit is contained in:
Nick Sardo 2018-04-11 14:39:43 -07:00
parent c8cded58d7
commit fc60d36a8e
2 changed files with 5 additions and 6 deletions

View File

@ -1,19 +1,19 @@
apiVersion: v1 apiVersion: v1
kind: Pod kind: Pod
metadata: metadata:
name: l7-lb-controller-v1.0.1 name: l7-lb-controller-v1.1.0
namespace: kube-system namespace: kube-system
annotations: annotations:
scheduler.alpha.kubernetes.io/critical-pod: '' scheduler.alpha.kubernetes.io/critical-pod: ''
labels: labels:
k8s-app: gcp-lb-controller k8s-app: gcp-lb-controller
version: v1.0.1 version: v1.1.0
kubernetes.io/name: "GLBC" kubernetes.io/name: "GLBC"
spec: spec:
terminationGracePeriodSeconds: 600 terminationGracePeriodSeconds: 600
hostNetwork: true hostNetwork: true
containers: containers:
- image: k8s.gcr.io/ingress-gce-glbc-amd64:v1.0.1 - image: k8s.gcr.io/ingress-gce-glbc-amd64:v1.1.0
livenessProbe: livenessProbe:
httpGet: httpGet:
path: /healthz path: /healthz

View File

@ -311,7 +311,7 @@ var _ = SIGDescribe("Loadbalancing: L7", func() {
executeBacksideBacksideHTTPSTest(f, jig, "") executeBacksideBacksideHTTPSTest(f, jig, "")
}) })
It("should support multiple TLS certs [Unreleased]", func() { It("should support multiple TLS certs", func() {
By("Creating an ingress with no certs.") By("Creating an ingress with no certs.")
jig.CreateIngress(filepath.Join(framework.IngressManifestPath, "multiple-certs"), ns, map[string]string{ jig.CreateIngress(filepath.Join(framework.IngressManifestPath, "multiple-certs"), ns, map[string]string{
framework.IngressStaticIPKey: ns, framework.IngressStaticIPKey: ns,
@ -418,8 +418,7 @@ var _ = SIGDescribe("Loadbalancing: L7", func() {
// TODO(nikhiljindal): Check the instance group annotation value and verify with a multizone cluster. // TODO(nikhiljindal): Check the instance group annotation value and verify with a multizone cluster.
}) })
// TODO (gau): Remove [Unreleased] label once HTTP2 is in the next Ingress release It("should be able to switch between HTTPS and HTTP2 modes", func() {
It("should be able to switch between HTTPS and HTTP2 modes [Unreleased]", func() {
httpsScheme := "request_scheme=https" httpsScheme := "request_scheme=https"
By("Create a basic HTTP2 ingress") By("Create a basic HTTP2 ingress")