Skip to content
This repository was archived by the owner on Aug 19, 2020. It is now read-only.

Commit ff23ac1

Browse files
authored
Merge pull request #98 from aledbf/0.35
Release 0.35
2 parents dc2bf40 + f3ae252 commit ff23ac1

File tree

5 files changed

+17
-5
lines changed

5 files changed

+17
-5
lines changed

Changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 0.35
4+
5+
- Update keepalived to v2.0.16
6+
- [#97](https://github.com/aledbf/kube-keepalived-vip/issues/97) Don't remove VIPs on reload
7+
38
## 0.34
49

510
- Only watch one configmap

Makefile

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
all: push
22

33
# 0.0 shouldn't clobber any release builds
4-
TAG = 0.34
4+
TAG = 0.35
55
HAPROXY_TAG = 0.1
66
# Helm uses SemVer2 versioning
77
CHART_VERSION = 0.2.0
@@ -68,3 +68,10 @@ cover:
6868
.PHONY: vet
6969
vet:
7070
@go vet ${GO_LIST_FILES}
71+
72+
.PHONY: dep-ensure
73+
dep-ensure:
74+
GO111MODULE=on go mod tidy -v
75+
find vendor -name '*_test.go' -delete
76+
GO111MODULE=on go mod vendor
77+

build/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ FROM quay.io/kubernetes-ingress-controller/debian-base-amd64:0.1
1616

1717
COPY build.sh /build.sh
1818

19-
ENV VERSION 2.0.15
20-
ENV SHA256 8647dbef5475e6fc2738f4ac46b363de6ab7571f33743a493ad5ab5231b7d26a
19+
ENV VERSION 2.0.16
20+
ENV SHA256 ce754f637f98db4595354ba9769bf9e62126d4cf1ff077334915722177c8c4bc
2121

2222
RUN clean-install bash
2323

vip-daemonset-proxy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ spec:
2222
volumeMounts:
2323
- name: haproxy
2424
mountPath: /etc/haproxy
25-
- image: aledbf/kube-keepalived-vip:0.34
25+
- image: aledbf/kube-keepalived-vip:0.35
2626
name: kube-keepalived-vip
2727
livenessProbe:
2828
httpGet:

vip-daemonset.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ spec:
1010
spec:
1111
hostNetwork: true
1212
containers:
13-
- image: aledbf/kube-keepalived-vip:0.34
13+
- image: aledbf/kube-keepalived-vip:0.35
1414
name: kube-keepalived-vip
1515
imagePullPolicy: IfNotPresent
1616
livenessProbe:

0 commit comments

Comments
 (0)