Version bump GLBC to 0.9.4
This commit is contained in:
parent
e3c7f070eb
commit
c5e6af2f07
4 changed files with 7 additions and 7 deletions
|
@ -1,7 +1,7 @@
|
||||||
all: push
|
all: push
|
||||||
|
|
||||||
# 0.0 shouldn't clobber any released builds
|
# 0.0 shouldn't clobber any released builds
|
||||||
TAG = 0.9.3
|
TAG = 0.9.4
|
||||||
PREFIX = gcr.io/google_containers/glbc
|
PREFIX = gcr.io/google_containers/glbc
|
||||||
|
|
||||||
server:
|
server:
|
||||||
|
|
|
@ -327,7 +327,7 @@ So simply delete the replication controller:
|
||||||
$ kubectl get rc glbc
|
$ kubectl get rc glbc
|
||||||
CONTROLLER CONTAINER(S) IMAGE(S) SELECTOR REPLICAS AGE
|
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
|
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.3
|
l7-lb-controller gcr.io/google_containers/glbc:0.9.4
|
||||||
|
|
||||||
$ kubectl delete rc glbc
|
$ kubectl delete rc glbc
|
||||||
replicationcontroller "glbc" deleted
|
replicationcontroller "glbc" deleted
|
||||||
|
|
|
@ -69,7 +69,7 @@ const (
|
||||||
alphaNumericChar = "0"
|
alphaNumericChar = "0"
|
||||||
|
|
||||||
// Current docker image version. Only used in debug logging.
|
// Current docker image version. Only used in debug logging.
|
||||||
imageVersion = "glbc:0.9.3"
|
imageVersion = "glbc:0.9.4"
|
||||||
|
|
||||||
// Key used to persist UIDs to configmaps.
|
// Key used to persist UIDs to configmaps.
|
||||||
uidConfigMapName = "ingress-uid"
|
uidConfigMapName = "ingress-uid"
|
||||||
|
|
|
@ -24,18 +24,18 @@ metadata:
|
||||||
name: l7-lb-controller
|
name: l7-lb-controller
|
||||||
labels:
|
labels:
|
||||||
k8s-app: glbc
|
k8s-app: glbc
|
||||||
version: v0.9.3
|
version: v0.9.4
|
||||||
spec:
|
spec:
|
||||||
# There should never be more than 1 controller alive simultaneously.
|
# There should never be more than 1 controller alive simultaneously.
|
||||||
replicas: 1
|
replicas: 1
|
||||||
selector:
|
selector:
|
||||||
k8s-app: glbc
|
k8s-app: glbc
|
||||||
version: v0.9.3
|
version: v0.9.4
|
||||||
template:
|
template:
|
||||||
metadata:
|
metadata:
|
||||||
labels:
|
labels:
|
||||||
k8s-app: glbc
|
k8s-app: glbc
|
||||||
version: v0.9.3
|
version: v0.9.4
|
||||||
name: glbc
|
name: glbc
|
||||||
spec:
|
spec:
|
||||||
terminationGracePeriodSeconds: 600
|
terminationGracePeriodSeconds: 600
|
||||||
|
@ -61,7 +61,7 @@ spec:
|
||||||
requests:
|
requests:
|
||||||
cpu: 10m
|
cpu: 10m
|
||||||
memory: 20Mi
|
memory: 20Mi
|
||||||
- image: gcr.io/google_containers/glbc:0.9.3
|
- image: gcr.io/google_containers/glbc:0.9.4
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
path: /healthz
|
path: /healthz
|
||||||
|
|
Loading…
Reference in a new issue