File tree Expand file tree Collapse file tree 3 files changed +23
-5
lines changed
Expand file tree Collapse file tree 3 files changed +23
-5
lines changed Original file line number Diff line number Diff line change 1+ ### v0.16.0
2+
3+ 28f72608 Release arm64 binaries
4+ 4528af01 Add option to specify auth backend mount path in Vault
5+ b51998d6 new etcdv3 implementation
6+ fa37c993 isFileExist() was not defined in windows
7+ a23aa1c7 Update Vault Kubernetes authentication doc
8+ 9b0ce8e6 Fix vendor name for logrus
9+ ccc17eb5 fix fileStat close when open failed on windows
10+ e3864219 add parseBool to template_funcs
11+ 94bf80e7 Add Kubernetes auth for Vault backend
12+ 304efb5a Add AppRole authN for Vault backend
13+ fb208461 Redis Backend Updates: WatchPrefix Support, Hash Support, Standard Redis Key Naming Convention
14+ 36d874f5 Fix bug with multiple watches for etcdv3
15+ 1fd12493 backend/etcd: add scheme to srv discovered endpoints
16+ a88c922a Vault TLS certificates auth method
17+ b77b9232 Add atoi function to template funcs and test
18+
119### v0.15.0
220
3210c4cb29e Don't pass empty prefix to zookeeper nodeWalk
Original file line number Diff line number Diff line change @@ -7,19 +7,19 @@ Currently confd ships binaries for OS X and Linux 64bit systems. You can downloa
77#### OS X
88
99```
10- $ wget https://github.com/kelseyhightower/confd/releases/download/v0.15 .0/confd-0.15 .0-darwin-amd64
10+ $ wget https://github.com/kelseyhightower/confd/releases/download/v0.16 .0/confd-0.16 .0-darwin-amd64
1111```
1212
1313#### Linux
1414
1515Download the binary
1616```
17- $ wget https://github.com/kelseyhightower/confd/releases/download/v0.15 .0/confd-0.15 .0-linux-amd64
17+ $ wget https://github.com/kelseyhightower/confd/releases/download/v0.16 .0/confd-0.16 .0-linux-amd64
1818```
1919Move the binary to an installation path, make it executable, and add to path
2020```
2121mkdir -p /opt/confd/bin
22- mv confd-0.15 .0-linux-amd64 /opt/confd/bin/confd
22+ mv confd-0.16 .0-linux-amd64 /opt/confd/bin/confd
2323chmod +x /opt/confd/bin/confd
2424export PATH="$PATH:/opt/confd/bin"
2525```
@@ -48,7 +48,7 @@ With multi-stage builds you can keep the whole process contained in your Dockerf
4848```
4949FROM golang:1.9-alpine as confd
5050
51- ARG CONFD_VERSION=0.15 .0
51+ ARG CONFD_VERSION=0.16 .0
5252
5353ADD https://github.com/kelseyhightower/confd/archive/v${CONFD_VERSION}.tar.gz /tmp/
5454
Original file line number Diff line number Diff line change 11package main
22
3- const Version = "0.16.0-dev "
3+ const Version = "0.16.0"
44
55// We want to replace this variable at build time with "-ldflags -X main.GitSHA=xxx", where const is not supported.
66var GitSHA = ""
You can’t perform that action at this time.
0 commit comments