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 #98 from aledbf/0.35
Browse files Browse the repository at this point in the history
Release 0.35
  • Loading branch information
aledbf committed May 27, 2019
2 parents dc2bf40 + f3ae252 commit ff23ac1
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 5 deletions.
5 changes: 5 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 0.35

- Update keepalived to v2.0.16
- [#97](https://github.com/aledbf/kube-keepalived-vip/issues/97) Don't remove VIPs on reload

## 0.34

- Only watch one configmap
Expand Down
9 changes: 8 additions & 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.34
TAG = 0.35
HAPROXY_TAG = 0.1
# Helm uses SemVer2 versioning
CHART_VERSION = 0.2.0
Expand Down Expand Up @@ -68,3 +68,10 @@ cover:
.PHONY: vet
vet:
@go vet ${GO_LIST_FILES}

.PHONY: dep-ensure
dep-ensure:
GO111MODULE=on go mod tidy -v
find vendor -name '*_test.go' -delete
GO111MODULE=on go mod vendor

4 changes: 2 additions & 2 deletions build/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ FROM quay.io/kubernetes-ingress-controller/debian-base-amd64:0.1

COPY build.sh /build.sh

ENV VERSION 2.0.15
ENV SHA256 8647dbef5475e6fc2738f4ac46b363de6ab7571f33743a493ad5ab5231b7d26a
ENV VERSION 2.0.16
ENV SHA256 ce754f637f98db4595354ba9769bf9e62126d4cf1ff077334915722177c8c4bc

RUN clean-install bash

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.34
- image: aledbf/kube-keepalived-vip:0.35
name: kube-keepalived-vip
livenessProbe:
httpGet:
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.34
- image: aledbf/kube-keepalived-vip:0.35
name: kube-keepalived-vip
imagePullPolicy: IfNotPresent
livenessProbe:
Expand Down

0 comments on commit ff23ac1

Please sign in to comment.