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

Commit 42c936b

Browse files
authored
Merge pull request #70 from aledbf/0.30
Release 0.30
2 parents 8d02f20 + 935df99 commit 42c936b

File tree

6 files changed

+13
-7
lines changed

6 files changed

+13
-7
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ notifications:
99
email: true
1010

1111
go:
12-
- 1.11.1
12+
- 1.11.2
1313

1414
go_import_path: github.com/aledbf/kube-keepalived-vip
1515

Changelog.md

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

3+
## 0.30
4+
5+
- Update keepalived to v2.0.10
6+
- [#68](https://github.com/aledbf/kube-keepalived-vip/pull/68) Cleanup VIPs on startup
7+
- [#69](https://github.com/aledbf/kube-keepalived-vip/pull/69) Start kube-keepalived-vip via dumb-init
8+
39
## 0.29
410

511
- Disable resync period

Makefile

Lines changed: 2 additions & 2 deletions
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.29
4+
TAG = 0.30
55
HAPROXY_TAG = 0.1
66
# Helm uses SemVer2 versioning
77
CHART_VERSION = 0.1.1
@@ -73,4 +73,4 @@ dep-ensure:
7373
dep version || go get -u github.com/golang/dep/cmd/dep
7474
dep ensure -v
7575
dep prune -v
76-
find vendor -name '*_test.go' -delete
76+
find vendor -name '*_test.go' -delete

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.7
20-
ENV SHA256 7a1c023ed4fb946587e3fca0d7e0214df8995d4c2862ef06f7f1ce5f9e5134c6
19+
ENV VERSION 2.0.10
20+
ENV SHA256 8cfd31307e69fb6fc3417da4c67de8040b97c3e5fc67ebd7ffbe6c53aef22c8b
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.29
25+
- image: aledbf/kube-keepalived-vip:0.30
2626
name: kube-keepalived-vip
2727
securityContext:
2828
privileged: true

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.29
13+
- image: aledbf/kube-keepalived-vip:0.30
1414
name: kube-keepalived-vip
1515
imagePullPolicy: Always
1616
securityContext:

0 commit comments

Comments
 (0)