diff --git a/CHANGELOG.md b/CHANGELOG.md index d43d06b0a..48fee03fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,11 +30,13 @@ - [#916](https://github.com/influxdata/kapacitor/issues/916): Crash of Kapacitor on Windows x64 when starting a recording - [#1400](https://github.com/influxdata/kapacitor/issues/1400): Allow for `.yml` file extensions in `define-topic-handler` - [#1402](https://github.com/influxdata/kapacitor/pull/1402): Fix http server error logging. -- [#1500](https://github.com/influxdata/kapacitor/pull/1500): Fix bugs with stopping running UDF agent. - [#1470](https://github.com/influxdata/kapacitor/pull/1470): Fix error messages for missing fields which are arguments to functions are not clear +- [#1500](https://github.com/influxdata/kapacitor/pull/1500): Fix bugs with stopping running UDF agent. - [#1516](https://github.com/influxdata/kapacitor/pull/1516): Fix bad PagerDuty test the required server info. -- [#1581](https://github.com/influxdata/kapacitor/pull/1581): Add SNMP sysUpTime to SNMP Trap service - [#1547](https://github.com/influxdata/kapacitor/issues/1547): Fix panic on recording replay with HTTPPostHandler. +- [#1581](https://github.com/influxdata/kapacitor/pull/1581): Add SNMP sysUpTime to SNMP Trap service +- [#1608](https://github.com/influxdata/kapacitor/pull/1608): Fixed missing k8s configuration bootstrapping + ## v1.3.3 [2017-08-11] diff --git a/server/config.go b/server/config.go index 5a179e514..d78e6aebc 100644 --- a/server/config.go +++ b/server/config.go @@ -157,6 +157,7 @@ func NewConfig() *Config { c.Telegram = telegram.NewConfig() c.VictorOps = victorops.NewConfig() + c.Kubernetes = []k8s.Config{k8s.NewConfig()} c.Reporting = reporting.NewConfig() c.Stats = stats.NewConfig() c.UDF = udf.NewConfig()