Skip to content

[COST-6579] update payload csv file names to reflect content - #636

Merged
djnakabaale merged 1 commit into
mainfrom
cost-6579-update-report-file-names
Jul 22, 2025
Merged

[COST-6579] update payload csv file names to reflect content#636
djnakabaale merged 1 commit into
mainfrom
cost-6579-update-report-file-names

Conversation

@djnakabaale

@djnakabaale djnakabaale commented Jul 18, 2025

Copy link
Copy Markdown
Contributor

Jira Ticket

COST-6579

Description

This change updates the naming convention for csv report files packaged withing the operator's payload.

Testing instructions

Prerequisites:

  • Access to an OpenShift cluster.
  • A public Quay.io repository (or other container registry) to push the operator image.

1. Prepare the operator image

  1. Checkout feature branch

  2. Build and push the operator to your quay repo.Replace <USERNAME> with your Quay.io username and <TAG> with your desired image tag

    make docker-buildx IMG=quay.io/<USERNAME>/koku-metrics-operator:<TAG>

2. Deploy the operator to your OpenShift cluster

  1. login into your cluster

  2. create a koku-metrics-operator namespace

    oc new-project koku-metrics-operator
  3. Pull the image to make sure its available on your machine

    docker pull quay.io/<USERNAME>/koku-metrics-operator:<TAG>
  4. Deploy the operator

    make deploy IMG=quay.io/<USERNAME>/koku-metrics-operator:<TAG>

3. Configure metrics collection

  1. Copy the yaml below to create a costmanagementmetricsconfig.yaml file

    apiVersion: costmanagement-metrics-cfg.openshift.io/v1beta1
    kind: CostManagementMetricsConfig
    metadata:
        name: costmanagementmetricscfg-sample-v1beta1
        namespace: koku-metrics-operator
    spec:
        upload:
            ingress_path: /api/ingress/v1/upload
            upload_toggle: false
            validate_cert: true
        packaging:
            max_reports_to_store: 30
            max_size_MB: 100
        api_url: 'https://console.redhat.com'
        prometheus_config:
            collect_previous_data: true
            disable_metrics_collection_cost_management: false
            disable_metrics_collection_resource_optimization: false
            service_address: 'https://thanos-querier.openshift-monitoring.svc:9091'
        authentication:
            type: token
        source:
            create_source: false
            name: ''
  2. deploy the configuration

    oc apply -f costmanagementmetricsconfig.yaml

4. Verify setrics collection

  1. Follow the instructions on downloading reports from the operator to retrieve a payload and inspect that the packaged reports reflect their contents. Here's an example payload: 20250717T162226_411808-cost-mgmt.tar.gz

Summary by Sourcery

Replace generic UID-based CSV report filenames with content-reflective names derived from the original file basenames and an index

Enhancements:

  • Add createCSVUploadName helper to derive upload filenames from source CSV names with an index suffix.
  • Update manifest generation and tarball packaging to use the new CSV naming helper instead of the UID-based pattern

Tests:

  • Update packaging tests to expect the new content-based CSV naming convention.

@sourcery-ai

sourcery-ai Bot commented Jul 18, 2025

Copy link
Copy Markdown

Reviewer's Guide

The PR replaces a generic UID-based CSV naming scheme with a new helper that derives filenames from their source basename and index, updating both the packaging logic and tests to use this more descriptive convention.

Class diagram for FilePackager changes (CSV naming)

classDiagram
    class FilePackager {
        +getManifest(archiveFiles, filePath, cr)
        +writeTarball(tarFileName, manifestFileName, archiveFiles)
        +GetFileInfo(file string) (FileInfoManifest, error)
        +createCSVUploadName(filePath string, idx int) string
        -uid string
        -manifest manifestInfo
    }
    class manifestInfo {
        <<struct>>
        +costFiles []string
        +rosFiles []string
    }
    FilePackager --> manifestInfo : uses
Loading

File-Level Changes

Change Details Files
Introduce createCSVUploadName helper to build CSV filenames from source file names and index
  • Add createCSVUploadName method on FilePackager
  • Extract base filename and remove its extension
  • Format name as base..csv
internal/packaging/packaging.go
Refactor manifest generation and tarball writing to use the new naming helper
  • Replace p.uid-based name generation in getManifest loops
  • Replace p.uid-based name generation in writeTarball loop
  • Call createCSVUploadName with file path and index
internal/packaging/packaging.go
Update packaging tests to expect content-reflective CSV names
  • Change expected manifest loops to call createCSVUploadName
  • Remove hard-coded UID-based filenames in tests
  • Align test setup with new naming convention
internal/packaging/packaging_test.go

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

@codecov

codecov Bot commented Jul 18, 2025

Copy link
Copy Markdown

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 83.16%. Comparing base (4275d33) to head (602cc26).
Report is 1 commits behind head on main.

Additional details and impacted files

Impacted file tree graph

@@            Coverage Diff             @@
##             main     #636      +/-   ##
==========================================
+ Coverage   83.13%   83.16%   +0.02%     
==========================================
  Files          16       16              
  Lines        3060     3065       +5     
==========================================
+ Hits         2544     2549       +5     
  Misses        431      431              
  Partials       85       85              
Flag Coverage Δ
unittests 83.16% <100.00%> (+0.02%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

Files with missing lines Coverage Δ
internal/packaging/packaging.go 80.72% <100.00%> (+0.22%) ⬆️

Continue to review full report in Codecov by Sentry.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 4275d33...602cc26. Read the comment docs.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@djnakabaale
djnakabaale marked this pull request as ready for review July 18, 2025 21:27

@sourcery-ai sourcery-ai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey @djnakabaale - I've reviewed your changes and they look great!


Sourcery is free for open source - if you like our reviews please consider sharing them ✨
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.

@djnakabaale

Copy link
Copy Markdown
Contributor Author

@sourcery-ai review

@sourcery-ai sourcery-ai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey @djnakabaale - I've reviewed your changes and they look great!


Sourcery is free for open source - if you like our reviews please consider sharing them ✨
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.

@djnakabaale
djnakabaale merged commit bc32688 into main Jul 22, 2025
10 checks passed
@djnakabaale
djnakabaale deleted the cost-6579-update-report-file-names branch July 22, 2025 18:53
djnakabaale added a commit that referenced this pull request Aug 18, 2025
* update whats new in 3.3.0 (#360)

* update docs (#363)

* fix make downstream (#365)

* v3.3.0 bundle (#362)

* Bump library/golang from 1.22.3 to 1.22.5 (#372)

* Bump github.com/prometheus/common (#369)

* Bump docker/build-push-action from 5 to 6 in the ci-dependencies group (#368)

* [COST-5183] dont use csvReader.ReadAll to improve memory usage (#370)

* update go in go.mod to 1.22 (#373)

* Bump the testing-framework group with 2 updates (#374)

* Bump github.com/onsi/gomega in the testing-framework group (#375)

* Update badges (#384)

* update license badge

* clean up badges

* remove license badge

* Bump library/golang from 1.22.5 to 1.22.6 (#385)

* update whats new in 3.3.1 (#388)

* [COST-5377] update whats new in 3.3.1

* fix typo

* make bundle for v3.3.1 (#389)

* [COST-5409] Specify correct toolchain version number in go.mod (#394)

* [COST-5409] Specify correct toolchain version number in go.mod

* use mirco version

* definitely use toolchain and not micro version

* address non-constant format string in call to fmt.Errorf

* Red Hat Konflux update koku-metrics-operator (#402)

Signed-off-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>

Co-authored-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>

* [COST-1418] Report fields description (#192)

* initial thoughts on report fields description

* add link to queries and clean up

* add note on label required for ros queries

* clean up

* add a lil organization

* Update docs/report-fields-description.md

---------

Co-authored-by: David <davidjnthn@gmail.com>
Co-authored-by: Luke Couzens <lcouzens@redhat.com>

* Red Hat Konflux purge koku-metrics-operator (#407)

Signed-off-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>

Co-authored-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>

* Red Hat Konflux update koku-metrics-operator (#408)

Signed-off-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>

Co-authored-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>

* Update Konflux references (#410)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Update Konflux references (#411)

* Update Konflux references

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Remove deprecated sbom-json-check

---------

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: Sam Doran <github@samdoran.com>

* Red Hat Konflux purge koku-metrics-operator (#412)

Signed-off-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>

Co-authored-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>

* Red Hat Konflux update koku-metrics-operator (#422)

Signed-off-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>

Co-authored-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>

* [COST-5381] Konflux: Enable multi-arch builds (#426)

* enable multi-arch builds

* initially trigger for when all changes

* Update Konflux references (#427)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Bump the testing-framework group across 1 directory with 2 updates (#416)

* Bump the prometheus group across 1 directory with 2 updates (#423)

* Update Konflux references (#428)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* [COST-5382] Konflux - prepare to add operator bundle component (#429)

* [COST-5382] Konflux - prepare to add operator bundle component

* wait to use konflux built images

* update paths to bundle assets in dockerfile
remove koku-metrics-operator older bundle copies

* Red Hat Konflux update koku-metrics-operator-bundle (#431)

Signed-off-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>

Co-authored-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>

* Update Konflux references (#430)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Update Konflux references (#435)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Update Konflux references (#438)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Update pre-commit hook golangci/golangci-lint to v1.61.0 (#437)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: David Nakabaale <devotee_rulers.0e@icloud.com>

* Update Konflux references (#440)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Update Konflux references to e487185 (#441)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* [COST-5382] konflux: update bundle pipeline and use brew registry (#434)

* [COST-5534] Add renovate config (#443)

* add renovate config to reduce konflux reference updates
* fix typo

* Update Konflux references (#442)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Update Konflux references (#445)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Bump github.com/prometheus/client_golang in the prometheus group (#444)

* Update docker.io/library/golang Docker tag to v1.23.2 (#455)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Update Konflux references (#454)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Bump appleboy/ssh-action in the ci-dependencies group (#457)

Bumps the ci-dependencies group with 1 update: [appleboy/ssh-action](https://github.com/appleboy/ssh-action).


Updates `appleboy/ssh-action` from 1.0.3 to 1.1.0
- [Release notes](https://github.com/appleboy/ssh-action/releases)
- [Changelog](https://github.com/appleboy/ssh-action/blob/master/.goreleaser.yaml)
- [Commits](appleboy/ssh-action@v1.0.3...v1.1.0)

---
updated-dependencies:
- dependency-name: appleboy/ssh-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ci-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump github.com/prometheus/common in the prometheus group (#458)

* Update Konflux references to 37b9187 (#461)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* [COST-5544] Make leader election duration options configurable (#459)

* [COST-5544] Make leader election duration options configurable

* move utils to internal dir

* move utils to internal dir

* define leader-elect flag

* Address feedback
- move getEnv functions to main.go
- drop enableLeaderElection var

* add unit tests

* include overriden values in log message

* Update Konflux references (#464)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Update Konflux references (#468)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Bump github.com/prometheus/client_golang in the prometheus group (#466)

* Bump github.com/prometheus/common in the prometheus group (#470)

* Update Konflux references (#472)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* update go toolchain version (#465)

* update go toolchain version

* add version label to dockerfile

* fix version  dockerfile

* undo adding version label in this pr

* [COST-5607] update whats new in 3.3.2 (#473)

* update whats new in 3.3.2

* text update

* add guidance on updating env variables

* clean up

* apply suggestion and add expected value format for leader election vars

* text update - modify expected format and include default values

* Update Konflux references (#475)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* update  features annotations (#476)

* [COST-5631] bundle for v3.3.2 (#477)

* [COST-5631] bundle for version koku-metrics-operator v3.3.2

* clean up make cmd

* update docs

* Update Konflux references (#483)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Update pre-commit hook golangci/golangci-lint to v1.62.0 (#485)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Bump appleboy/ssh-action in the ci-dependencies group

Bumps the ci-dependencies group with 1 update: [appleboy/ssh-action](https://github.com/appleboy/ssh-action).


Updates `appleboy/ssh-action` from 1.1.0 to 1.2.0
- [Release notes](https://github.com/appleboy/ssh-action/releases)
- [Changelog](https://github.com/appleboy/ssh-action/blob/master/.goreleaser.yaml)
- [Commits](appleboy/ssh-action@v1.1.0...v1.2.0)

---
updated-dependencies:
- dependency-name: appleboy/ssh-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ci-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update docker.io/library/golang Docker tag to v1.23.3 (#484)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Update Konflux references (#491)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Update Konflux references (#492)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Update pre-commit hook golangci/golangci-lint to v1.62.2 (#497)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Update Konflux references (#500)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Bump github.com/prometheus/common in the prometheus group (#512)

* Red Hat Konflux purge koku-metrics-operator-bundle (#516)

Signed-off-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>

Co-authored-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>

* Red Hat Konflux purge koku-metrics-operator (#515)

Signed-off-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>

Co-authored-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>
Co-authored-by: David Nakabaale <devotee_rulers.0e@icloud.com>

* Bump library/golang from 1.23.3 to 1.23.4 (#506)

* Full dependency update (#525)

* upgrade go.mod to 1.23

* full dependency update

* update controller-gen

* CVE-2024-45338: update golang.org/x/net to v0.33.0

---------

Co-authored-by: David N <dnakabaa@redhat.com>
Co-authored-by: David Nakabaale <devotee_rulers.0e@icloud.com>

* Bump the testing-framework group across 1 directory with 2 updates (#530)

* update community operator release doc (#507)

* update community operator release doc

* add note about when it will be released

---------

Co-authored-by: David Nakabaale <devotee_rulers.0e@icloud.com>

* COST-5898 ubuntu actions update (#538)

* Bump appleboy/ssh-action in the ci-dependencies group across 1 directory (#553)

* Bump the prometheus group across 1 directory with 2 updates (#551)

* Bump github.com/google/go-cmp from 0.6.0 to 0.7.0 (#542)

* Bump library/golang from 1.23.4 to 1.24.2 (#560)

* update dependencies (#558)

* update dependencies

* bump go and golangci-lint versions

* do not migrate to v2 golangci

* remove golangci-lint update

* update golangci-lint

* undo golangci-lint udpate

* codecov ignore testutils

* more codecov exclude

* codecov exclude mocks folder

* [COST-5821] Add scope to access token request for service account auth (#564)

* [cost-5821] Add scope to access token request for SA auth

* clean up

* clean up link to service account documentation

* update scope value

* Bump github.com/operator-framework/api (#565)

Bumps the k8s-io-dependencies group with 1 update in the / directory: [github.com/operator-framework/api](https://github.com/operator-framework/api).


Updates `github.com/operator-framework/api` from 0.27.0 to 0.30.0
- [Release notes](https://github.com/operator-framework/api/releases)
- [Changelog](https://github.com/operator-framework/api/blob/master/RELEASE.md)
- [Commits](operator-framework/api@v0.27.0...v0.30.0)

---
updated-dependencies:
- dependency-name: github.com/operator-framework/api
  dependency-version: 0.30.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: k8s-io-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump golang.org/x/net from 0.33.0 to 0.36.0 in the go_modules group (#554)

* Bump the testing-framework group with 2 updates (#556)

* Bump the prometheus group across 1 directory with 2 updates (#566)

* Bump github.com/onsi/gomega in the testing-framework group (#567)

* [COST-5936] add operatorframework.io/initialization-resource annotation (#571)

* [COST-5936] add operatorframework.io/initialization-resource annotation

* remove namespace from metadata

* [COST-6245] Add virtual machine metrics (#569)

* [COST-6245] Add virtual machine metrics

* filter cpu request units into separate columns

* drop resources field

* refine queries and update unittests

* add queries to collect labels for vm pod and PVC

* undo makefile change

* include actual values for resource limits and requests

* add query for vm labels

* clean up

* move QueryStrings into QueryMap
remove labels for VM pods and PVCs

* remove vm_persistentvolumeclaim_labels query

* Bump the k8s-io-dependencies group with 4 updates (#568)

* Bump library/golang from 1.24.2 to 1.24.3 (#570)

* support golangci-lint v2 (#562)

* support golangci-lint v2

* strings should not end with punctuation

* remove .golangci.bck.yaml

* remove redundant exlcusions

* only remove path exlcusions

* [COST-6334] Add resource_id col to VM report (#577)

* [COST-5539] Replace KokuMetricsConfig with CostManagementMetricsConfig (#576)

* replace KMC with CMMC

* update to operator-sdk v1.39.2

* update Makefile

* Bump github.com/prometheus/common in the prometheus group (#574)

* Bump the k8s-io-dependencies group across 1 directory with 4 updates (#575)

* [COST-6085] make operator FIPS compliant (#578)

* [COST-6085] make operator FIPS compliant

* use ARG instead of ENV for build-time-only vars

* [COST-5805] Update docs with what's new in v4.0.0 (#581)

* [COST-5805] Update docs with what's new in v4.0.0

* fix vm_guest_os_version column name in description doc

* docs clean up

* address feedback

* more clean up

* additional doc clean up

---------

Co-authored-by: Cody Myers <cmyers@redhat.com>

* Bump github.com/go-logr/logr from 1.4.2 to 1.4.3 (#579)

* [COST-6095] bundle for koku metrics operator v4.0.0 (#585)

* [COST-6006] Update upstream release docs (#586)

* snap channel name update for s390x action (#589)

* [COST-6402] exclude pod labels for non-running pods (#594)

* Bump golangci/golangci-lint-action in the ci-dependencies group (#557)

* Bump github.com/prometheus/common in the prometheus group (#617)

* Bump the k8s-io-dependencies group across 1 directory with 4 updates (#629)

* [COST-6562] - Rename ROS label (#633)

* [COST-6562] - Rename ROS label

* [COST-6579] update payload csv file names to reflect content (#636)

* [COST-6491] Add ROS namespace queries (#635)

* [COST-6491] Add ROS namespace queries

* update ros container file prefix

* address comments
- fix typo in function name
- add comment to get-token-and-cert cmd got make help
- update local dev docs

* [COST-6631] update column names in the ROS namespace report (#643)

* Bump the k8s-io-dependencies group across 1 directory with 4 updates (#642)

* Bump github.com/onsi/gomega in the testing-framework group (#658)

* build: bump Go version from 1.24.3 to 1.24.4 (#663)

* Bump github.com/prometheus/client_golang in the prometheus group (#661)

* [COST-6515] docs: add v4.1.0 release notes to csv description (#664)

* [COST-6516] create release bundle for version v4.1.0 (#665)

* [COST-6668] Add descriptions for ROS namespace metrics report (#668)

* docs: Add descriptions for ROS namespace metrics report

* cleanup

* [COST-6518] generate downstream code changes and bundle

* add required bundle labels

* clean up description

---------

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: Michael Skarbek <mskarbek@redhat.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>
Co-authored-by: David <davidjnthn@gmail.com>
Co-authored-by: Luke Couzens <lcouzens@redhat.com>
Co-authored-by: Sam Doran <github@samdoran.com>
Co-authored-by: Cody Myers <cmyers@redhat.com>
Co-authored-by: Shivang Goswami <shivang.goswami@outlook.com>
djnakabaale added a commit that referenced this pull request Sep 29, 2025
* update whats new in 3.3.0 (#360)

* update docs (#363)

* fix make downstream (#365)

* v3.3.0 bundle (#362)

* Bump library/golang from 1.22.3 to 1.22.5 (#372)

* Bump github.com/prometheus/common (#369)

* Bump docker/build-push-action from 5 to 6 in the ci-dependencies group (#368)

* [COST-5183] dont use csvReader.ReadAll to improve memory usage (#370)

* update go in go.mod to 1.22 (#373)

* Bump the testing-framework group with 2 updates (#374)

* Bump github.com/onsi/gomega in the testing-framework group (#375)

* Update badges (#384)

* update license badge

* clean up badges

* remove license badge

* Bump library/golang from 1.22.5 to 1.22.6 (#385)

* update whats new in 3.3.1 (#388)

* [COST-5377] update whats new in 3.3.1

* fix typo

* make bundle for v3.3.1 (#389)

* [COST-5409] Specify correct toolchain version number in go.mod (#394)

* [COST-5409] Specify correct toolchain version number in go.mod

* use mirco version

* definitely use toolchain and not micro version

* address non-constant format string in call to fmt.Errorf

* Red Hat Konflux update koku-metrics-operator (#402)

Signed-off-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>

Co-authored-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>

* [COST-1418] Report fields description (#192)

* initial thoughts on report fields description

* add link to queries and clean up

* add note on label required for ros queries

* clean up

* add a lil organization

* Update docs/report-fields-description.md

---------

Co-authored-by: David <davidjnthn@gmail.com>
Co-authored-by: Luke Couzens <lcouzens@redhat.com>

* Red Hat Konflux purge koku-metrics-operator (#407)

Signed-off-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>

Co-authored-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>

* Red Hat Konflux update koku-metrics-operator (#408)

Signed-off-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>

Co-authored-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>

* Update Konflux references (#410)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Update Konflux references (#411)

* Update Konflux references

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Remove deprecated sbom-json-check

---------

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: Sam Doran <github@samdoran.com>

* Red Hat Konflux purge koku-metrics-operator (#412)

Signed-off-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>

Co-authored-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>

* Red Hat Konflux update koku-metrics-operator (#422)

Signed-off-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>

Co-authored-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>

* [COST-5381] Konflux: Enable multi-arch builds (#426)

* enable multi-arch builds

* initially trigger for when all changes

* Update Konflux references (#427)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Bump the testing-framework group across 1 directory with 2 updates (#416)

* Bump the prometheus group across 1 directory with 2 updates (#423)

* Update Konflux references (#428)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* [COST-5382] Konflux - prepare to add operator bundle component (#429)

* [COST-5382] Konflux - prepare to add operator bundle component

* wait to use konflux built images

* update paths to bundle assets in dockerfile
remove koku-metrics-operator older bundle copies

* Red Hat Konflux update koku-metrics-operator-bundle (#431)

Signed-off-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>

Co-authored-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>

* Update Konflux references (#430)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Update Konflux references (#435)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Update Konflux references (#438)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Update pre-commit hook golangci/golangci-lint to v1.61.0 (#437)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: David Nakabaale <devotee_rulers.0e@icloud.com>

* Update Konflux references (#440)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Update Konflux references to e487185 (#441)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* [COST-5382] konflux: update bundle pipeline and use brew registry (#434)

* [COST-5534] Add renovate config (#443)

* add renovate config to reduce konflux reference updates
* fix typo

* Update Konflux references (#442)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Update Konflux references (#445)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Bump github.com/prometheus/client_golang in the prometheus group (#444)

* Update docker.io/library/golang Docker tag to v1.23.2 (#455)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Update Konflux references (#454)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Bump appleboy/ssh-action in the ci-dependencies group (#457)

Bumps the ci-dependencies group with 1 update: [appleboy/ssh-action](https://github.com/appleboy/ssh-action).


Updates `appleboy/ssh-action` from 1.0.3 to 1.1.0
- [Release notes](https://github.com/appleboy/ssh-action/releases)
- [Changelog](https://github.com/appleboy/ssh-action/blob/master/.goreleaser.yaml)
- [Commits](appleboy/ssh-action@v1.0.3...v1.1.0)

---
updated-dependencies:
- dependency-name: appleboy/ssh-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ci-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump github.com/prometheus/common in the prometheus group (#458)

* Update Konflux references to 37b9187 (#461)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* [COST-5544] Make leader election duration options configurable (#459)

* [COST-5544] Make leader election duration options configurable

* move utils to internal dir

* move utils to internal dir

* define leader-elect flag

* Address feedback
- move getEnv functions to main.go
- drop enableLeaderElection var

* add unit tests

* include overriden values in log message

* Update Konflux references (#464)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Update Konflux references (#468)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Bump github.com/prometheus/client_golang in the prometheus group (#466)

* Bump github.com/prometheus/common in the prometheus group (#470)

* Update Konflux references (#472)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* update go toolchain version (#465)

* update go toolchain version

* add version label to dockerfile

* fix version  dockerfile

* undo adding version label in this pr

* [COST-5607] update whats new in 3.3.2 (#473)

* update whats new in 3.3.2

* text update

* add guidance on updating env variables

* clean up

* apply suggestion and add expected value format for leader election vars

* text update - modify expected format and include default values

* Update Konflux references (#475)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* update  features annotations (#476)

* [COST-5631] bundle for v3.3.2 (#477)

* [COST-5631] bundle for version koku-metrics-operator v3.3.2

* clean up make cmd

* update docs

* Update Konflux references (#483)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Update pre-commit hook golangci/golangci-lint to v1.62.0 (#485)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Bump appleboy/ssh-action in the ci-dependencies group

Bumps the ci-dependencies group with 1 update: [appleboy/ssh-action](https://github.com/appleboy/ssh-action).


Updates `appleboy/ssh-action` from 1.1.0 to 1.2.0
- [Release notes](https://github.com/appleboy/ssh-action/releases)
- [Changelog](https://github.com/appleboy/ssh-action/blob/master/.goreleaser.yaml)
- [Commits](appleboy/ssh-action@v1.1.0...v1.2.0)

---
updated-dependencies:
- dependency-name: appleboy/ssh-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ci-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update docker.io/library/golang Docker tag to v1.23.3 (#484)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Update Konflux references (#491)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Update Konflux references (#492)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Update pre-commit hook golangci/golangci-lint to v1.62.2 (#497)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Update Konflux references (#500)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Bump github.com/prometheus/common in the prometheus group (#512)

* Red Hat Konflux purge koku-metrics-operator-bundle (#516)

Signed-off-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>

Co-authored-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>

* Red Hat Konflux purge koku-metrics-operator (#515)

Signed-off-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>

Co-authored-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>
Co-authored-by: David Nakabaale <devotee_rulers.0e@icloud.com>

* Bump library/golang from 1.23.3 to 1.23.4 (#506)

* Full dependency update (#525)

* upgrade go.mod to 1.23

* full dependency update

* update controller-gen

* CVE-2024-45338: update golang.org/x/net to v0.33.0

---------

Co-authored-by: David N <dnakabaa@redhat.com>
Co-authored-by: David Nakabaale <devotee_rulers.0e@icloud.com>

* Bump the testing-framework group across 1 directory with 2 updates (#530)

* update community operator release doc (#507)

* update community operator release doc

* add note about when it will be released

---------

Co-authored-by: David Nakabaale <devotee_rulers.0e@icloud.com>

* COST-5898 ubuntu actions update (#538)

* Bump appleboy/ssh-action in the ci-dependencies group across 1 directory (#553)

* Bump the prometheus group across 1 directory with 2 updates (#551)

* Bump github.com/google/go-cmp from 0.6.0 to 0.7.0 (#542)

* Bump library/golang from 1.23.4 to 1.24.2 (#560)

* update dependencies (#558)

* update dependencies

* bump go and golangci-lint versions

* do not migrate to v2 golangci

* remove golangci-lint update

* update golangci-lint

* undo golangci-lint udpate

* codecov ignore testutils

* more codecov exclude

* codecov exclude mocks folder

* [COST-5821] Add scope to access token request for service account auth (#564)

* [cost-5821] Add scope to access token request for SA auth

* clean up

* clean up link to service account documentation

* update scope value

* Bump github.com/operator-framework/api (#565)

Bumps the k8s-io-dependencies group with 1 update in the / directory: [github.com/operator-framework/api](https://github.com/operator-framework/api).


Updates `github.com/operator-framework/api` from 0.27.0 to 0.30.0
- [Release notes](https://github.com/operator-framework/api/releases)
- [Changelog](https://github.com/operator-framework/api/blob/master/RELEASE.md)
- [Commits](operator-framework/api@v0.27.0...v0.30.0)

---
updated-dependencies:
- dependency-name: github.com/operator-framework/api
  dependency-version: 0.30.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: k8s-io-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump golang.org/x/net from 0.33.0 to 0.36.0 in the go_modules group (#554)

* Bump the testing-framework group with 2 updates (#556)

* Bump the prometheus group across 1 directory with 2 updates (#566)

* Bump github.com/onsi/gomega in the testing-framework group (#567)

* [COST-5936] add operatorframework.io/initialization-resource annotation (#571)

* [COST-5936] add operatorframework.io/initialization-resource annotation

* remove namespace from metadata

* [COST-6245] Add virtual machine metrics (#569)

* [COST-6245] Add virtual machine metrics

* filter cpu request units into separate columns

* drop resources field

* refine queries and update unittests

* add queries to collect labels for vm pod and PVC

* undo makefile change

* include actual values for resource limits and requests

* add query for vm labels

* clean up

* move QueryStrings into QueryMap
remove labels for VM pods and PVCs

* remove vm_persistentvolumeclaim_labels query

* Bump the k8s-io-dependencies group with 4 updates (#568)

* Bump library/golang from 1.24.2 to 1.24.3 (#570)

* support golangci-lint v2 (#562)

* support golangci-lint v2

* strings should not end with punctuation

* remove .golangci.bck.yaml

* remove redundant exlcusions

* only remove path exlcusions

* [COST-6334] Add resource_id col to VM report (#577)

* [COST-5539] Replace KokuMetricsConfig with CostManagementMetricsConfig (#576)

* replace KMC with CMMC

* update to operator-sdk v1.39.2

* update Makefile

* Bump github.com/prometheus/common in the prometheus group (#574)

* Bump the k8s-io-dependencies group across 1 directory with 4 updates (#575)

* [COST-6085] make operator FIPS compliant (#578)

* [COST-6085] make operator FIPS compliant

* use ARG instead of ENV for build-time-only vars

* [COST-5805] Update docs with what's new in v4.0.0 (#581)

* [COST-5805] Update docs with what's new in v4.0.0

* fix vm_guest_os_version column name in description doc

* docs clean up

* address feedback

* more clean up

* additional doc clean up

---------

Co-authored-by: Cody Myers <cmyers@redhat.com>

* Bump github.com/go-logr/logr from 1.4.2 to 1.4.3 (#579)

* [COST-6095] bundle for koku metrics operator v4.0.0 (#585)

* [COST-6006] Update upstream release docs (#586)

* snap channel name update for s390x action (#589)

* [COST-6402] exclude pod labels for non-running pods (#594)

* Bump golangci/golangci-lint-action in the ci-dependencies group (#557)

* Bump github.com/prometheus/common in the prometheus group (#617)

* Bump the k8s-io-dependencies group across 1 directory with 4 updates (#629)

* [COST-6562] - Rename ROS label (#633)

* [COST-6562] - Rename ROS label

* [COST-6579] update payload csv file names to reflect content (#636)

* [COST-6491] Add ROS namespace queries (#635)

* [COST-6491] Add ROS namespace queries

* update ros container file prefix

* address comments
- fix typo in function name
- add comment to get-token-and-cert cmd got make help
- update local dev docs

* [COST-6631] update column names in the ROS namespace report (#643)

* Bump the k8s-io-dependencies group across 1 directory with 4 updates (#642)

* Bump github.com/onsi/gomega in the testing-framework group (#658)

* build: bump Go version from 1.24.3 to 1.24.4 (#663)

* Bump github.com/prometheus/client_golang in the prometheus group (#661)

* [COST-6515] docs: add v4.1.0 release notes to csv description (#664)

* [COST-6516] create release bundle for version v4.1.0 (#665)

* [COST-6668] Add descriptions for ROS namespace metrics report (#668)

* docs: Add descriptions for ROS namespace metrics report

* cleanup

* [COST-6428] handle custom certs for proxy (#671)

* fix: update Makefile and improve documentation (#685)

* Bump the testing-framework group with 2 updates (#683)

* Bump the ci-dependencies group across 1 directory with 3 updates (#700)

* Bump the prometheus group with 2 updates (#699)

* Bump the k8s-io-dependencies group across 1 directory with 5 updates (#693)

* Bump the k8s-io-dependencies group across 1 directory with 5 updates

Bumps the k8s-io-dependencies group with 2 updates in the / directory: [github.com/operator-framework/api](https://github.com/operator-framework/api) and [sigs.k8s.io/controller-runtime](https://github.com/kubernetes-sigs/controller-runtime).


Updates `github.com/operator-framework/api` from 0.33.0 to 0.34.0
- [Release notes](https://github.com/operator-framework/api/releases)
- [Changelog](https://github.com/operator-framework/api/blob/master/RELEASE.md)
- [Commits](operator-framework/api@v0.33.0...v0.34.0)

Updates `k8s.io/api` from 0.33.3 to 0.33.4
- [Commits](kubernetes/api@v0.33.3...v0.33.4)

Updates `k8s.io/apimachinery` from 0.33.3 to 0.33.4
- [Commits](kubernetes/apimachinery@v0.33.3...v0.33.4)

Updates `k8s.io/client-go` from 0.33.3 to 0.33.4
- [Changelog](https://github.com/kubernetes/client-go/blob/master/CHANGELOG.md)
- [Commits](kubernetes/client-go@v0.33.3...v0.33.4)

Updates `sigs.k8s.io/controller-runtime` from 0.21.0 to 0.22.0
- [Release notes](https://github.com/kubernetes-sigs/controller-runtime/releases)
- [Changelog](https://github.com/kubernetes-sigs/controller-runtime/blob/main/RELEASE.md)
- [Commits](kubernetes-sigs/controller-runtime@v0.21.0...v0.22.0)

---
updated-dependencies:
- dependency-name: github.com/operator-framework/api
  dependency-version: 0.34.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: k8s-io-dependencies
- dependency-name: k8s.io/api
  dependency-version: 0.33.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: k8s-io-dependencies
- dependency-name: k8s.io/apimachinery
  dependency-version: 0.33.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: k8s-io-dependencies
- dependency-name: k8s.io/client-go
  dependency-version: 0.33.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: k8s-io-dependencies
- dependency-name: sigs.k8s.io/controller-runtime
  dependency-version: 0.22.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: k8s-io-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>

* make manifests

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: dnakabaa <dnakabaa@redhat.com>

* Bump github.com/onsi/ginkgo/v2 in the testing-framework group (#703)

* Bump the k8s-io-dependencies group with 3 updates (#702)

* [COST-6745] Add queries to gather GPU metrics for resource optimization (#705)

* [COST-6745] Add queries to gather GPU metrics for ROS

* update unit tests

* add cpu_throttle_container_min to container metrics

* [COST-6746] Add GPU columns descriptions for ROS container report (#707)

* [COST-6746] Add GPU columns descriptions for ROS container report

* add cpu_throttle_container_min description

* fix ROS queries to properly support both old and current namespace labels for backwards compatibility (#708)

* [COST-6819] add whats new in operator v4.2.0 to the CSV description (#710)

* [COST-6819] add whats new in operator version 4.2.0 to the CSV description documentation

* update  doc

* [COST-6849] generate upstream bundle (#711)

* [COST-6852] generate downstream changes and bundle

---------

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: Michael Skarbek <mskarbek@redhat.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>
Co-authored-by: David <davidjnthn@gmail.com>
Co-authored-by: Luke Couzens <lcouzens@redhat.com>
Co-authored-by: Sam Doran <github@samdoran.com>
Co-authored-by: Cody Myers <cmyers@redhat.com>
Co-authored-by: Shivang Goswami <shivang.goswami@outlook.com>
djnakabaale added a commit that referenced this pull request Nov 11, 2025
* update whats new in 3.3.0 (#360)

* update docs (#363)

* fix make downstream (#365)

* v3.3.0 bundle (#362)

* Bump library/golang from 1.22.3 to 1.22.5 (#372)

* Bump github.com/prometheus/common (#369)

* Bump docker/build-push-action from 5 to 6 in the ci-dependencies group (#368)

* [COST-5183] dont use csvReader.ReadAll to improve memory usage (#370)

* update go in go.mod to 1.22 (#373)

* Bump the testing-framework group with 2 updates (#374)

* Bump github.com/onsi/gomega in the testing-framework group (#375)

* Update badges (#384)

* update license badge

* clean up badges

* remove license badge

* Bump library/golang from 1.22.5 to 1.22.6 (#385)

* update whats new in 3.3.1 (#388)

* [COST-5377] update whats new in 3.3.1

* fix typo

* make bundle for v3.3.1 (#389)

* [COST-5409] Specify correct toolchain version number in go.mod (#394)

* [COST-5409] Specify correct toolchain version number in go.mod

* use mirco version

* definitely use toolchain and not micro version

* address non-constant format string in call to fmt.Errorf

* Red Hat Konflux update koku-metrics-operator (#402)

Signed-off-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>

Co-authored-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>

* [COST-1418] Report fields description (#192)

* initial thoughts on report fields description

* add link to queries and clean up

* add note on label required for ros queries

* clean up

* add a lil organization

* Update docs/report-fields-description.md

---------

Co-authored-by: David <davidjnthn@gmail.com>
Co-authored-by: Luke Couzens <lcouzens@redhat.com>

* Red Hat Konflux purge koku-metrics-operator (#407)

Signed-off-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>

Co-authored-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>

* Red Hat Konflux update koku-metrics-operator (#408)

Signed-off-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>

Co-authored-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>

* Update Konflux references (#410)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Update Konflux references (#411)

* Update Konflux references

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Remove deprecated sbom-json-check

---------

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: Sam Doran <github@samdoran.com>

* Red Hat Konflux purge koku-metrics-operator (#412)

Signed-off-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>

Co-authored-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>

* Red Hat Konflux update koku-metrics-operator (#422)

Signed-off-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>

Co-authored-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>

* [COST-5381] Konflux: Enable multi-arch builds (#426)

* enable multi-arch builds

* initially trigger for when all changes

* Update Konflux references (#427)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Bump the testing-framework group across 1 directory with 2 updates (#416)

* Bump the prometheus group across 1 directory with 2 updates (#423)

* Update Konflux references (#428)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* [COST-5382] Konflux - prepare to add operator bundle component (#429)

* [COST-5382] Konflux - prepare to add operator bundle component

* wait to use konflux built images

* update paths to bundle assets in dockerfile
remove koku-metrics-operator older bundle copies

* Red Hat Konflux update koku-metrics-operator-bundle (#431)

Signed-off-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>

Co-authored-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>

* Update Konflux references (#430)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Update Konflux references (#435)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Update Konflux references (#438)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Update pre-commit hook golangci/golangci-lint to v1.61.0 (#437)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: David Nakabaale <devotee_rulers.0e@icloud.com>

* Update Konflux references (#440)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Update Konflux references to e487185 (#441)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* [COST-5382] konflux: update bundle pipeline and use brew registry (#434)

* [COST-5534] Add renovate config (#443)

* add renovate config to reduce konflux reference updates
* fix typo

* Update Konflux references (#442)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Update Konflux references (#445)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Bump github.com/prometheus/client_golang in the prometheus group (#444)

* Update docker.io/library/golang Docker tag to v1.23.2 (#455)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Update Konflux references (#454)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Bump appleboy/ssh-action in the ci-dependencies group (#457)

Bumps the ci-dependencies group with 1 update: [appleboy/ssh-action](https://github.com/appleboy/ssh-action).

Updates `appleboy/ssh-action` from 1.0.3 to 1.1.0
- [Release notes](https://github.com/appleboy/ssh-action/releases)
- [Changelog](https://github.com/appleboy/ssh-action/blob/master/.goreleaser.yaml)
- [Commits](appleboy/ssh-action@v1.0.3...v1.1.0)

---
updated-dependencies:
- dependency-name: appleboy/ssh-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ci-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump github.com/prometheus/common in the prometheus group (#458)

* Update Konflux references to 37b9187 (#461)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* [COST-5544] Make leader election duration options configurable (#459)

* [COST-5544] Make leader election duration options configurable

* move utils to internal dir

* move utils to internal dir

* define leader-elect flag

* Address feedback
- move getEnv functions to main.go
- drop enableLeaderElection var

* add unit tests

* include overriden values in log message

* Update Konflux references (#464)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Update Konflux references (#468)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Bump github.com/prometheus/client_golang in the prometheus group (#466)

* Bump github.com/prometheus/common in the prometheus group (#470)

* Update Konflux references (#472)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* update go toolchain version (#465)

* update go toolchain version

* add version label to dockerfile

* fix version  dockerfile

* undo adding version label in this pr

* [COST-5607] update whats new in 3.3.2 (#473)

* update whats new in 3.3.2

* text update

* add guidance on updating env variables

* clean up

* apply suggestion and add expected value format for leader election vars

* text update - modify expected format and include default values

* Update Konflux references (#475)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* update  features annotations (#476)

* [COST-5631] bundle for v3.3.2 (#477)

* [COST-5631] bundle for version koku-metrics-operator v3.3.2

* clean up make cmd

* update docs

* Update Konflux references (#483)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Update pre-commit hook golangci/golangci-lint to v1.62.0 (#485)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Bump appleboy/ssh-action in the ci-dependencies group

Bumps the ci-dependencies group with 1 update: [appleboy/ssh-action](https://github.com/appleboy/ssh-action).

Updates `appleboy/ssh-action` from 1.1.0 to 1.2.0
- [Release notes](https://github.com/appleboy/ssh-action/releases)
- [Changelog](https://github.com/appleboy/ssh-action/blob/master/.goreleaser.yaml)
- [Commits](appleboy/ssh-action@v1.1.0...v1.2.0)

---
updated-dependencies:
- dependency-name: appleboy/ssh-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ci-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update docker.io/library/golang Docker tag to v1.23.3 (#484)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Update Konflux references (#491)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Update Konflux references (#492)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Update pre-commit hook golangci/golangci-lint to v1.62.2 (#497)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Update Konflux references (#500)

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>

* Bump github.com/prometheus/common in the prometheus group (#512)

* Red Hat Konflux purge koku-metrics-operator-bundle (#516)

Signed-off-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>

Co-authored-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>

* Red Hat Konflux purge koku-metrics-operator (#515)

Signed-off-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>

Co-authored-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>
Co-authored-by: David Nakabaale <devotee_rulers.0e@icloud.com>

* Bump library/golang from 1.23.3 to 1.23.4 (#506)

* Full dependency update (#525)

* upgrade go.mod to 1.23

* full dependency update

* update controller-gen

* CVE-2024-45338: update golang.org/x/net to v0.33.0

---------

Co-authored-by: David N <dnakabaa@redhat.com>
Co-authored-by: David Nakabaale <devotee_rulers.0e@icloud.com>

* Bump the testing-framework group across 1 directory with 2 updates (#530)

* update community operator release doc (#507)

* update community operator release doc

* add note about when it will be released

---------

Co-authored-by: David Nakabaale <devotee_rulers.0e@icloud.com>

* COST-5898 ubuntu actions update (#538)

* Bump appleboy/ssh-action in the ci-dependencies group across 1 directory (#553)

* Bump the prometheus group across 1 directory with 2 updates (#551)

* Bump github.com/google/go-cmp from 0.6.0 to 0.7.0 (#542)

* Bump library/golang from 1.23.4 to 1.24.2 (#560)

* update dependencies (#558)

* update dependencies

* bump go and golangci-lint versions

* do not migrate to v2 golangci

* remove golangci-lint update

* update golangci-lint

* undo golangci-lint udpate

* codecov ignore testutils

* more codecov exclude

* codecov exclude mocks folder

* [COST-5821] Add scope to access token request for service account auth (#564)

* [cost-5821] Add scope to access token request for SA auth

* clean up

* clean up link to service account documentation

* update scope value

* Bump github.com/operator-framework/api (#565)

Bumps the k8s-io-dependencies group with 1 update in the / directory: [github.com/operator-framework/api](https://github.com/operator-framework/api).

Updates `github.com/operator-framework/api` from 0.27.0 to 0.30.0
- [Release notes](https://github.com/operator-framework/api/releases)
- [Changelog](https://github.com/operator-framework/api/blob/master/RELEASE.md)
- [Commits](operator-framework/api@v0.27.0...v0.30.0)

---
updated-dependencies:
- dependency-name: github.com/operator-framework/api
  dependency-version: 0.30.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: k8s-io-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump golang.org/x/net from 0.33.0 to 0.36.0 in the go_modules group (#554)

* Bump the testing-framework group with 2 updates (#556)

* Bump the prometheus group across 1 directory with 2 updates (#566)

* Bump github.com/onsi/gomega in the testing-framework group (#567)

* [COST-5936] add operatorframework.io/initialization-resource annotation (#571)

* [COST-5936] add operatorframework.io/initialization-resource annotation

* remove namespace from metadata

* [COST-6245] Add virtual machine metrics (#569)

* [COST-6245] Add virtual machine metrics

* filter cpu request units into separate columns

* drop resources field

* refine queries and update unittests

* add queries to collect labels for vm pod and PVC

* undo makefile change

* include actual values for resource limits and requests

* add query for vm labels

* clean up

* move QueryStrings into QueryMap
remove labels for VM pods and PVCs

* remove vm_persistentvolumeclaim_labels query

* Bump the k8s-io-dependencies group with 4 updates (#568)

* Bump library/golang from 1.24.2 to 1.24.3 (#570)

* support golangci-lint v2 (#562)

* support golangci-lint v2

* strings should not end with punctuation

* remove .golangci.bck.yaml

* remove redundant exlcusions

* only remove path exlcusions

* [COST-6334] Add resource_id col to VM report (#577)

* [COST-5539] Replace KokuMetricsConfig with CostManagementMetricsConfig (#576)

* replace KMC with CMMC

* update to operator-sdk v1.39.2

* update Makefile

* Bump github.com/prometheus/common in the prometheus group (#574)

* Bump the k8s-io-dependencies group across 1 directory with 4 updates (#575)

* [COST-6085] make operator FIPS compliant (#578)

* [COST-6085] make operator FIPS compliant

* use ARG instead of ENV for build-time-only vars

* [COST-5805] Update docs with what's new in v4.0.0 (#581)

* [COST-5805] Update docs with what's new in v4.0.0

* fix vm_guest_os_version column name in description doc

* docs clean up

* address feedback

* more clean up

* additional doc clean up

---------

Co-authored-by: Cody Myers <cmyers@redhat.com>

* Bump github.com/go-logr/logr from 1.4.2 to 1.4.3 (#579)

* [COST-6095] bundle for koku metrics operator v4.0.0 (#585)

* [COST-6006] Update upstream release docs (#586)

* snap channel name update for s390x action (#589)

* [COST-6402] exclude pod labels for non-running pods (#594)

* Bump golangci/golangci-lint-action in the ci-dependencies group (#557)

* Bump github.com/prometheus/common in the prometheus group (#617)

* Bump the k8s-io-dependencies group across 1 directory with 4 updates (#629)

* [COST-6562] - Rename ROS label (#633)

* [COST-6562] - Rename ROS label

* [COST-6579] update payload csv file names to reflect content (#636)

* [COST-6491] Add ROS namespace queries (#635)

* [COST-6491] Add ROS namespace queries

* update ros container file prefix

* address comments
- fix typo in function name
- add comment to get-token-and-cert cmd got make help
- update local dev docs

* [COST-6631] update column names in the ROS namespace report (#643)

* Bump the k8s-io-dependencies group across 1 directory with 4 updates (#642)

* Bump github.com/onsi/gomega in the testing-framework group (#658)

* build: bump Go version from 1.24.3 to 1.24.4 (#663)

* Bump github.com/prometheus/client_golang in the prometheus group (#661)

* [COST-6515] docs: add v4.1.0 release notes to csv description (#664)

* [COST-6516] create release bundle for version v4.1.0 (#665)

* [COST-6668] Add descriptions for ROS namespace metrics report (#668)

* docs: Add descriptions for ROS namespace metrics report

* cleanup

* [COST-6518] generate downstream code changes and bundle

* add required bundle labels

* clean up description

---------

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: Michael Skarbek <mskarbek@redhat.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux[bot] <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Co-authored-by: red-hat-konflux <konflux@no-reply.konflux-ci.dev>
Co-authored-by: David <davidjnthn@gmail.com>
Co-authored-by: Luke Couzens <lcouzens@redhat.com>
Co-authored-by: Sam Doran <github@samdoran.com>
Co-authored-by: Cody Myers <cmyers@redhat.com>
Co-authored-by: Shivang Goswami <shivang.goswami@outlook.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants