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

Commit

Permalink
Merge pull request #20 from aledbf/release-0.20
Browse files Browse the repository at this point in the history
Release 0.20
  • Loading branch information
aledbf authored Sep 18, 2017
2 parents 4c35010 + fe0817e commit 7209c2e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## 0.20

- [X] [#8](https://github.com/aledbf/kube-keepalived-vip/pull/8) Fix keepalived config file error when there are no services
- [X] [#9](https://github.com/aledbf/kube-keepalived-vip/pull/9) Add support for travis-ci
- [X] [#10](https://github.com/aledbf/kube-keepalived-vip/pull/10) Add badges
- [X] [#11](https://github.com/aledbf/kube-keepalived-vip/pull/11) Fix badges
- [X] [#17](https://github.com/aledbf/kube-keepalived-vip/pull/17) Remove unnecessary backquote and space
- [X] [#18](https://github.com/aledbf/kube-keepalived-vip/pull/18) VRID flag not supported in keepalived.tmpl
- [X] [#19](https://github.com/aledbf/kube-keepalived-vip/pull/19) Use vrid flag in template


## 0.17
- Cleanup
- Configmap update detection
Expand Down
2 changes: 1 addition & 1 deletion pkg/controller/keepalived.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ func (k *keepalived) WriteCfg(svcs []vip) error {
conf["useUnicast"] = k.useUnicast
conf["vrid"] = k.vrid
conf["proxyMode"] = k.proxyMode
conf["vipIsEmpty"] = len(k.vips) == 0
conf["vipIsEmpty"] = len(k.vips) == 0

if glog.V(2) {
b, _ := json.Marshal(conf)
Expand Down

0 comments on commit 7209c2e

Please sign in to comment.