diff --git a/CHANGELOG.md b/CHANGELOG.md index bafa15cc..4426aca0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,17 +2,21 @@ ## 1.2.0 (Unreleased) -* Feature: share log streams between namespaces +* Core: Share log streams between namespaces -* Fix(Helm): propery set the resources field of the reloader container. Setting them had no effect until now. +* Helm: Mount secrets/configmaps (tls mostly) ala elasticsearch (@sneko) * Fluentd: Update base-image to fluentd-1.1.3-debian +* Fluentd: Include Splunk plugin into base-image (@mhulscher) + +* Fix(Helm): properly set the `resources` field of the reloader container. Setting them had no effect until now (@sneko) + ## [1.1.0](https://github.com/vmware/kube-fluentd-operator/releases/tag/v1.1.0) -* Feature: ingest log files from a container filesystem +* Core: ingest log files from a container filesystem -* Feature: limit impact of log-router to a set of namespaces using `--namespaces` +* Core: limit impact of log-router to a set of namespaces using `--namespaces` * Helm: add new property `kubeletRoot` @@ -20,10 +24,10 @@ ## [1.0.1](https://github.com/vmware/kube-fluentd-operator/releases/tag/v1.0.1) -* install plugin `fluent-plugin-concat` in Fluentd +* Fluentd: install plugin `fluent-plugin-concat` in Fluentd -* support for default configmap name using `--default-configmap` +* Core: support for default configmap name using `--default-configmap` ## [1.0.0](https://github.com/vmware/kube-fluentd-operator/releases/tag/v1.0.0) -* initial version +* Initial version diff --git a/README.md b/README.md index 21c2a39f..2b413dfd 100644 --- a/README.md +++ b/README.md @@ -20,18 +20,18 @@ The easiest way to get started is using the Helm chart. Official images are not git clone git@github.com:vmware/kube-fluentd-operator.git helm install --name kfo ./kube-fluentd-operator/log-router \ --set rbac.create=true \ - --set image.tag=v1.1.0-beta-1 \ + --set image.tag=v1.2.0-beta-1 \ --set image.repository=jvassev/kube-fluentd-operator ``` Alternatively, deploy the Helm chart from a Github release: ```bash -CHART_URL='https://github.com/vmware/kube-fluentd-operator/releases/download/v1.1.0-beta-1/log-router-0.2.0.tgz' +CHART_URL='https://github.com/vmware/kube-fluentd-operator/releases/download/v1.2.0-beta-1/log-router-0.2.1.tgz' helm install --name kfo ${CHART_URL} \ --set rbac.create=true \ - --set image.tag=v1.1.0-beta-1 \ + --set image.tag=v1.2.0-beta-1 \ --set image.repository=jvassev/kube-fluentd-operator ```