Skip to content

Bump up glbc version to match release #55

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 13, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion controllers/gce/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.8.1
TAG = 0.9.0
PREFIX = gcr.io/google_containers/glbc

server:
Expand Down
2 changes: 1 addition & 1 deletion controllers/gce/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,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.8.1
l7-lb-controller gcr.io/google_containers/glbc:0.9.0

$ kubectl delete rc glbc
replicationcontroller "glbc" deleted
Expand Down
2 changes: 1 addition & 1 deletion controllers/gce/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const (
alphaNumericChar = "0"

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

// Key used to persist UIDs to configmaps.
uidConfigMapName = "ingress-uid"
Expand Down
8 changes: 4 additions & 4 deletions controllers/gce/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.8.1
version: v0.9.0
spec:
# There should never be more than 1 controller alive simultaneously.
replicas: 1
selector:
k8s-app: glbc
version: v0.8.1
version: v0.9.0
template:
metadata:
labels:
k8s-app: glbc
version: v0.8.1
version: v0.9.0
name: glbc
spec:
terminationGracePeriodSeconds: 600
Expand All @@ -61,7 +61,7 @@ spec:
requests:
cpu: 10m
memory: 20Mi
- image: gcr.io/google_containers/glbc:0.8.1
- image: gcr.io/google_containers/glbc:0.9.0
livenessProbe:
httpGet:
path: /healthz
Expand Down