Skip to content

Tags: kangwoo/confd

Tags

v0.13.0

Toggle v0.13.0's commit message

Verified

This commit was signed with the committer’s verified signature.
okushchenko Oleksandr Kushchenko
bump to v0.13.0

v0.12.0

Toggle v0.12.0's commit message

Verified

This commit was signed with the committer’s verified signature.
okushchenko Oleksandr Kushchenko
bump to v0.12.0

v0.12.0-alpha3

Toggle v0.12.0-alpha3's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
getv accepts a default value

The `getv` template function does not accept a default value. The
workaround is to write templates like this:

    {{if exists "/example/app/option"}}
    option = {{getv "/example/app/option"}}{{else}}default_value{{end}}

Resolve the issue by accepting an optional default value. Templates
can now be written like this:

    value: {{getv "/key" "default_value"}}

This change is backwards compatible with the current `getv` function.
If the key is missing and a default value is given the missing key error
will be suppressed and the default value will be returned.

If the key is missing and no default value is given the `getv` function
will return an error and template processing will halt.

Fixes kelseyhightower#219

v0.12.0-alpha2

Toggle v0.12.0-alpha2's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
Merge pull request kelseyhightower#394 from HeavyHorst/master

update some docs

0.12.0-alpha1

Toggle 0.12.0-alpha1's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
Capture and return errors during watches on consul

Before this change consul errors were not returned correctly
during watches. Resolved the issue by returning the initial
watch index and error and avoid the nil pointer dereference.

Fixes kelseyhightower#322

v0.11.0

Toggle v0.11.0's commit message
bump to v0.11.0

v0.10.0

Toggle v0.10.0's commit message
bump version to v0.10.0

v0.9.0

Toggle v0.9.0's commit message
add latest changes

v0.8.0

Toggle v0.8.0's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
ping the go-etcd client to v0.4.6

v0.7.1

Toggle v0.7.1's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
don't cache k/v values between runs