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 #62 from aledbf/resync
Browse files Browse the repository at this point in the history
Disable resync period
  • Loading branch information
aledbf authored Oct 8, 2018
2 parents 3a71bc5 + a5e6af5 commit dc80790
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ notifications:
email: true

go:
- 1.9
- 1.11.1

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

Expand All @@ -22,11 +22,11 @@ env:
jobs:
include:
- stage: Static Check
script:
script:
- go get github.com/golang/lint/golint
- make fmt lint vet
- stage: Coverage
script:
script:
- go get github.com/mattn/goveralls
- go get github.com/modocache/gover
- if ! go get github.com/golang/tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
Expand Down
6 changes: 6 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# Changelog

## 0.29

- Disable resync period

## 0.28

- Update keepalived to v2.0.7
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
all: push

# 0.0 shouldn't clobber any release builds
TAG = 0.28
TAG = 0.29
HAPROXY_TAG = 0.1
# Helm uses SemVer2 versioning
CHART_VERSION = 0.1.1
Expand Down
2 changes: 1 addition & 1 deletion pkg/controller/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ import (
)

const (
resyncPeriod = 10 * time.Minute
resyncPeriod = 0
)

type service struct {
Expand Down
2 changes: 1 addition & 1 deletion vip-daemonset-proxy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ spec:
volumeMounts:
- name: haproxy
mountPath: /etc/haproxy
- image: aledbf/kube-keepalived-vip:0.28
- image: aledbf/kube-keepalived-vip:0.29
name: kube-keepalived-vip
securityContext:
privileged: true
Expand Down
2 changes: 1 addition & 1 deletion vip-daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ spec:
spec:
hostNetwork: true
containers:
- image: aledbf/kube-keepalived-vip:0.28
- image: aledbf/kube-keepalived-vip:0.29
name: kube-keepalived-vip
imagePullPolicy: Always
securityContext:
Expand Down

0 comments on commit dc80790

Please sign in to comment.