Skip to content

Commit

Permalink
Merge pull request #217 from Cryptophobia/master
Browse files Browse the repository at this point in the history
docs(readme): update changelogs for v1.15.0
  • Loading branch information
Cryptophobia authored Jun 9, 2021
2 parents 0ce50a0 + cb5134f commit 59b9c28
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 5 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# CHANGELOG

## [v1.15.0](https://github.com/vmware/kube-fluentd-operator/releases/tag/v1.15.0)

#### Core:
- docs(readme): update changelogs for v1.14.1 #210 (@Cryptophobia)
- chore(deps): Bump rexml from 3.1.9 to 3.2.5 in /base-image/basegems #212 (@dependabot)
- chore(fluentd): upgrade fluentd to v1.12.4 and bundler to >= 2.2.18 #215 (@Cryptophobia)
- chore(fluentd): upgrade fluentd v1.13.0 and gems #216 (@Cryptophobia)

#### CI:
- None

#### Helm:
- None

#### Plugins:
- chore(fluentd): upgrade fluentd v1.13.0 and gems #216 (@Cryptophobia)

## [v1.14.1](https://github.com/vmware/kube-fluentd-operator/releases/tag/v1.14.1)

#### Core:
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,18 @@ The easiest way to get started is using the Helm chart. Official images are not
git clone [email protected]:vmware/kube-fluentd-operator.git
helm install kfo ./kube-fluentd-operator/charts/log-router \
--set rbac.create=true \
--set image.tag=v1.14.1 \
--set image.tag=v1.15.0 \
--set image.repository=vmware/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.14.1/log-router-0.3.8.tgz'
CHART_URL='https://github.com/vmware/kube-fluentd-operator/releases/download/v1.15.0/log-router-0.3.8.tgz'

helm install kfo ${CHART_URL} \
--set rbac.create=true \
--set image.tag=v1.14.1 \
--set image.tag=v1.15.0 \
--set image.repository=vmware/kube-fluentd-operator
```

Expand Down
3 changes: 1 addition & 2 deletions config-reloader/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -289,9 +289,8 @@ func (cfg *Config) hasValidBufferMountFolder() bool {
for _, r := range cfg.BufferMountFolder {
if !unicode.IsLetter(r) && !unicode.IsDigit(r) && r != '-' && r != '_' {
return false
} else {
continue
}
continue
}
return true
}

0 comments on commit 59b9c28

Please sign in to comment.