Skip to content

LOG-7169: Update CLO code to use Vector v0.46.1 #3045

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export LOGGING_VERSION?=6.3
export VERSION=$(LOGGING_VERSION).0
export NAMESPACE?=openshift-logging

IMAGE_LOGGING_VECTOR?=quay.io/openshift-logging/vector:v0.37.1
IMAGE_LOGGING_VECTOR?=quay.io/openshift-logging/vector:v0.46.1
IMAGE_LOGFILEMETRICEXPORTER?=quay.io/openshift-logging/log-file-metric-exporter:6.1
IMAGE_LOGGING_EVENTROUTER?=quay.io/openshift-logging/eventrouter:0.3

Expand Down
6 changes: 3 additions & 3 deletions bundle/manifests/cluster-logging.clusterserviceversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ metadata:
categories: OpenShift Optional, Logging & Tracing, Observability
certified: "false"
containerImage: quay.io/openshift-logging/cluster-logging-operator:latest
createdAt: "2025-04-22T11:06:54Z"
createdAt: "2025-05-20T09:15:01Z"
description: The Red Hat OpenShift Logging Operator for OCP provides a means for
configuring and managing log collection and forwarding.
features.operators.openshift.io/cnf: "false"
Expand Down Expand Up @@ -2100,7 +2100,7 @@ spec:
- name: OPERATOR_NAME
value: cluster-logging-operator
- name: RELATED_IMAGE_VECTOR
value: quay.io/openshift-logging/vector:v0.37.1
value: quay.io/openshift-logging/vector:v0.46.1
- name: RELATED_IMAGE_LOG_FILE_METRIC_EXPORTER
value: quay.io/openshift-logging/log-file-metric-exporter:6.1
image: quay.io/openshift-logging/cluster-logging-operator:latest
Expand Down Expand Up @@ -2147,7 +2147,7 @@ spec:
provider:
name: Red Hat
relatedImages:
- image: quay.io/openshift-logging/vector:v0.37.1
- image: quay.io/openshift-logging/vector:v0.46.1
name: vector
- image: quay.io/openshift-logging/log-file-metric-exporter:6.1
name: log-file-metric-exporter
Expand Down
2 changes: 1 addition & 1 deletion config/manager/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,6 @@ spec:
- name: OPERATOR_NAME
value: "cluster-logging-operator"
- name: RELATED_IMAGE_VECTOR
value: quay.io/openshift-logging/vector:v0.37.1
value: quay.io/openshift-logging/vector:v0.46.1
- name: RELATED_IMAGE_LOG_FILE_METRIC_EXPORTER
value: quay.io/openshift-logging/log-file-metric-exporter:6.1
2 changes: 1 addition & 1 deletion internal/cmd/functional-benchmarker/config/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (

const (
LogStressorImage = "quay.io/openshift-logging/cluster-logging-load-client:0.2"
imageVector = "quay.io/openshift-logging/vector:6.0"
imageVector = "quay.io/openshift-logging/vector:v0.46.1"
)

type Options struct {
Expand Down
2 changes: 1 addition & 1 deletion olm_deploy/scripts/env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ set -eou pipefail

LOGGING_VERSION=${LOGGING_VERSION:-6.1}

LOGGING_VECTOR_VERSION=${LOGGING_VECTOR_VERSION:-v0.37.1}
LOGGING_VECTOR_VERSION=${LOGGING_VECTOR_VERSION:-v0.46.1}
LOGGING_LOG_FILE_METRIC_EXPORTER_VERSION=${LOGGING_LOG_FILE_METRIC_EXPORTER_VERSION:-6.1}

LOGGING_IS=${LOGGING_IS:-openshift-logging}
Expand Down