Skip to content

Commit cb3b60e

Browse files
committed
bump versions for the operator release
1 parent 1bc1cf4 commit cb3b60e

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

charts/logging-operator/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
apiVersion: v1
2-
appVersion: "3.0.0"
2+
appVersion: "3.0.2"
33
description: A Helm chart to install Banzai Cloud logging-operator
44
name: logging-operator
5-
version: 3.0.3
5+
version: 3.0.4

charts/logging-operator/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ replicaCount: 1
66

77
image:
88
repository: banzaicloud/logging-operator
9-
tag: 3.0.0
9+
tag: 3.0.2
1010
pullPolicy: IfNotPresent
1111

1212
imagePullSecrets: []

pkg/sdk/resourcebuilder/component.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ import (
3636
"sigs.k8s.io/controller-runtime/pkg/builder"
3737
)
3838

39+
const Image = "banzaicloud/logging-operator:3.0.2"
40+
3941
// +kubebuilder:object:generate=true
4042

4143
type ComponentConfig struct {
@@ -148,7 +150,7 @@ func Operator(parent reconciler.ResourceOwner, config ComponentConfig) (runtime.
148150
Containers: []corev1.Container{
149151
config.ContainerOverrides.Override(corev1.Container{
150152
Name: "logging-operator",
151-
Image: "banzaicloud/logging-operator:3.0.1",
153+
Image: Image,
152154
Command: []string{"/manager"},
153155
Args: []string{"--enable-leader-election"},
154156
Resources: corev1.ResourceRequirements{

0 commit comments

Comments
 (0)