Skip to content

Commit

Permalink
Release 2.7.0
Browse files Browse the repository at this point in the history
- new fluentd image `fluentd-v1.7.4-alpine-12`
- chart version bump 2.6.1 -> 2.7.0 (#282)
  • Loading branch information
ahma authored Dec 6, 2019
1 parent 94b8d28 commit 7214de4
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions charts/logging-demo/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
appVersion: "2.6.0"
appVersion: "2.7.0"
description: A Helm chart for Kubernetes
name: logging-demo
version: 2.6.0
version: 2.7.0
icon: https://raw.githubusercontent.com/banzaicloud/logging-operator/master/docs/img/icon.png
4 changes: 2 additions & 2 deletions charts/logging-operator-logging/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
appVersion: "2.6.1"
appVersion: "2.7.0"
description: A Helm chart to configure logging resource for the logging-operator
name: logging-operator-logging
version: 2.6.1
version: 2.7.0
icon: https://raw.githubusercontent.com/banzaicloud/logging-operator/master/docs/img/icon.png
2 changes: 1 addition & 1 deletion charts/logging-operator-logging/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ The following tables lists the configurable parameters of the logging-operator-l
| `fluentbit.image.pullPolicy` | Fluentbit container pull policy | `IfNotPresent` |
| `fluentbit.podPriorityClassName` | Priority class name for fluentbit pods | none |
| `fluentd.enabled` | Install fluentd | true |
| `fluentd.image.tag` | Fluentd container image tag | `v1.7.4-alpine-11` |
| `fluentd.image.tag` | Fluentd container image tag | `v1.7.4-alpine-12` |
| `fluentd.image.repository` | Fluentd container image repository | `banzaicloud/fluentd` |
| `fluentd.image.pullPolicy` | Fluentd container pull policy | `IfNotPresent` |
| `fluentd.volumeModImage.tag` | Fluentd volumeModImage container image tag | `latest` |
Expand Down
4 changes: 2 additions & 2 deletions charts/logging-operator/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v1
appVersion: "2.6.1"
appVersion: "2.7.0"
description: A Helm chart to install Banzai Cloud logging-operator
name: logging-operator
version: 2.6.1
version: 2.7.0
4 changes: 2 additions & 2 deletions charts/logging-operator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ The following tables lists the configurable parameters of the logging-operator c
| Parameter | Description | Default |
| --------------------------------------------------- | ------------------------------------------------------ | ------------------------------ |
| `image.repository` | Container image repository | `banzaicloud/logging-operator` |
| `image.tag` | Container image tag | `2.6.1` |
| `image.tag` | Container image tag | `2.7.0` |
| `image.pullPolicy` | Container pull policy | `IfNotPresent` |
| `nameOverride` | Override name of app | `` |
| `fullnameOverride` | Override full name of app | `` |
Expand Down Expand Up @@ -111,7 +111,7 @@ The following tables lists the configurable parameters of the logging-operator-l
| `fluentbit.image.repository` | Fluentbit container image repository | `fluent/fluent-bit` |
| `fluentbit.image.pullPolicy` | Fluentbit container pull policy | `IfNotPresent` |
| `fluentd.enabled` | Install fluentd | true |
| `fluentd.image.tag` | Fluentd container image tag | `v1.7.4-alpine-11` |
| `fluentd.image.tag` | Fluentd container image tag | `v1.7.4-alpine-12` |
| `fluentd.image.repository` | Fluentd container image repository | `banzaicloud/fluentd` |
| `fluentd.image.pullPolicy` | Fluentd container pull policy | `IfNotPresent` |
| `fluentd.volumeModImage.tag` | Fluentd volumeModImage container image tag | `latest` |
Expand Down
2 changes: 1 addition & 1 deletion charts/logging-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ replicaCount: 1

image:
repository: banzaicloud/logging-operator
tag: 2.6.1
tag: 2.7.0
pullPolicy: IfNotPresent

imagePullSecrets: []
Expand Down
2 changes: 1 addition & 1 deletion docs/crds.md
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ spec:
fluentd:
image:
repository: banzaicloud/fluentd
tag: v1.7.4-alpine-11
tag: v1.7.4-alpine-12
pullPolicy: IfNotPresent
fluentbit: {}
controlNamespace: logging
Expand Down
2 changes: 1 addition & 1 deletion pkg/sdk/api/v1beta1/logging_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ func (l *Logging) SetDefaults() (*Logging, error) {
copy.Spec.FluentdSpec.Image.Repository = "banzaicloud/fluentd"
}
if copy.Spec.FluentdSpec.Image.Tag == "" {
copy.Spec.FluentdSpec.Image.Tag = "v1.7.4-alpine-11"
copy.Spec.FluentdSpec.Image.Tag = "v1.7.4-alpine-12"
}
if copy.Spec.FluentdSpec.Image.PullPolicy == "" {
copy.Spec.FluentdSpec.Image.PullPolicy = "IfNotPresent"
Expand Down

0 comments on commit 7214de4

Please sign in to comment.