Skip to content

Commit

Permalink
Release 3.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ahma committed Oct 19, 2020
1 parent 393f047 commit af4e22b
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 14 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: "3.6.0"
appVersion: "3.7.0"
description: A Helm chart for Kubernetes
name: logging-demo
version: 3.6.0
version: 3.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: "3.6.0"
appVersion: "3.7.0"
description: A Helm chart to configure logging resource for the Logging operator
name: logging-operator-logging
version: 3.6.0
version: 3.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/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ The following tables lists the configurable parameters of the logging-operator-l
| `fluentbit.enabled` | Install fluent-bit | true |
| `fluentbit.namespace` | Specified fluentbit installation namespace | same as operator namespace |
| `fluentbit.tolerations` | Tolerations for fluentbit daemonset | none |
| `fluentbit.image.tag` | Fluentbit container image tag | `1.5.4` |
| `fluentbit.image.tag` | Fluentbit container image tag | `1.6.1` |
| `fluentbit.image.repository` | Fluentbit container image repository | `fluent/fluent-bit` |
| `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.11.4-alpine-1` |
| `fluentd.image.repository` | Fluentd container image repository | `banzaicloud/fluentd` |
| `fluentd.image.repository` | Fluentd container image repository | `ghcr.io/banzaicloud/fluentd` |
| `fluentd.image.pullPolicy` | Fluentd container pull policy | `IfNotPresent` |
| `fluentd.volumeModImage.tag` | Fluentd volumeModImage container image tag | `latest` |
| `fluentd.volumeModImage.repository` | Fluentd volumeModImage container image repository | `busybox` |
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: "3.6.0"
appVersion: "3.7.0"
description: A Helm chart to install Banzai Cloud logging-operator
name: logging-operator
version: 3.6.1
version: 3.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 @@ -111,12 +111,12 @@ The following tables lists the configurable parameters of the logging-operator-l
| `tls.sharedKey` | Shared key between nodes (fluentd-fluentbit) | [autogenerated] |
| `fluentbit.enabled` | Install fluent-bit | true |
| `fluentbit.namespace` | Specified fluentbit installation namespace | same as operator namespace |
| `fluentbit.image.tag` | Fluentbit container image tag | `1.5.4` |
| `fluentbit.image.tag` | Fluentbit container image tag | `1.6.1` |
| `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.11.4-alpine-1` |
| `fluentd.image.repository` | Fluentd container image repository | `banzaicloud/fluentd` |
| `fluentd.image.repository` | Fluentd container image repository | `ghcr.io/banzaicloud/fluentd` |
| `fluentd.image.pullPolicy` | Fluentd container pull policy | `IfNotPresent` |
| `fluentd.volumeModImage.tag` | Fluentd volumeModImage container image tag | `latest` |
| `fluentd.volumeModImage.repository` | Fluentd volumeModImage container image repository | `busybox` |
Expand Down
2 changes: 1 addition & 1 deletion config/samples/logging_v1alpha2_logging_debug.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ spec:
disablePvc: true
fluentbit:
image:
tag: 1.5.4-debug
tag: 1.6.1-debug
repository: fluent/fluent-bit
pullPolicy: IfNotPresent
controlNamespace: default
4 changes: 2 additions & 2 deletions pkg/sdk/api/v1beta1/logging_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ func (l *Logging) SetDefaults() (*Logging, error) {
return nil, errors.New("`fluentdPvcSpec` field is deprecated, use: `bufferStorageVolume`")
}
if copy.Spec.FluentdSpec.Image.Repository == "" {
copy.Spec.FluentdSpec.Image.Repository = "banzaicloud/fluentd"
copy.Spec.FluentdSpec.Image.Repository = "ghcr.io/banzaicloud/fluentd"
}
if copy.Spec.FluentdSpec.Image.Tag == "" {
copy.Spec.FluentdSpec.Image.Tag = "v1.11.4-alpine-1"
Expand Down Expand Up @@ -268,7 +268,7 @@ func (l *Logging) SetDefaults() (*Logging, error) {
copy.Spec.FluentbitSpec.Image.Repository = "fluent/fluent-bit"
}
if copy.Spec.FluentbitSpec.Image.Tag == "" {
copy.Spec.FluentbitSpec.Image.Tag = "1.5.4"
copy.Spec.FluentbitSpec.Image.Tag = "1.6.1"
}
if copy.Spec.FluentbitSpec.Image.PullPolicy == "" {
copy.Spec.FluentbitSpec.Image.PullPolicy = "IfNotPresent"
Expand Down
2 changes: 1 addition & 1 deletion pkg/sdk/resourcebuilder/component.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ import (
)

const (
Image = "ghcr.io/banzaicloud/logging-operator:3.6.0"
Image = "ghcr.io/banzaicloud/logging-operator:3.7.0"
defaultNamespace = "logging-system"
)

Expand Down

0 comments on commit af4e22b

Please sign in to comment.