Skip to content

Commit

Permalink
Merge pull request #8 from nicksardo/release-0.9.7
Browse files Browse the repository at this point in the history
Release 0.9.7
  • Loading branch information
nicksardo authored Oct 10, 2017
2 parents c323417 + 68a005d commit 5e1e79f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
all: push

# 0.0 shouldn't clobber any released builds
TAG=0.9.6
TAG=0.9.7
PREFIX=gcr.io/google_containers/glbc
PKG=k8s.io/ingress-gce

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ So simply delete the replication controller:
$ kubectl get rc glbc
CONTROLLER CONTAINER(S) IMAGE(S) SELECTOR REPLICAS AGE
glbc default-http-backend gcr.io/google_containers/defaultbackend:1.0 k8s-app=glbc,version=v0.5 1 2m
l7-lb-controller gcr.io/google_containers/glbc:0.9.6
l7-lb-controller gcr.io/google_containers/glbc:0.9.7
$ kubectl delete rc glbc
replicationcontroller "glbc" deleted
Expand Down
2 changes: 1 addition & 1 deletion cmd/glbc/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const (
alphaNumericChar = "0"

// Current docker image version. Only used in debug logging.
imageVersion = "glbc:0.9.6"
imageVersion = "glbc:0.9.7"

// Key used to persist UIDs to configmaps.
uidConfigMapName = "ingress-uid"
Expand Down
8 changes: 4 additions & 4 deletions rc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,18 @@ metadata:
name: l7-lb-controller
labels:
k8s-app: glbc
version: v0.9.6
version: v0.9.7
spec:
# There should never be more than 1 controller alive simultaneously.
replicas: 1
selector:
k8s-app: glbc
version: v0.9.6
version: v0.9.7
template:
metadata:
labels:
k8s-app: glbc
version: v0.9.6
version: v0.9.7
name: glbc
spec:
terminationGracePeriodSeconds: 600
Expand All @@ -61,7 +61,7 @@ spec:
requests:
cpu: 10m
memory: 20Mi
- image: gcr.io/google_containers/glbc:0.9.6
- image: gcr.io/google_containers/glbc:0.9.7
livenessProbe:
httpGet:
path: /healthz
Expand Down

0 comments on commit 5e1e79f

Please sign in to comment.