Skip to content
Merged
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
7 changes: 5 additions & 2 deletions charts/costgraph-operator/Chart.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,8 @@ dependencies:
- name: kube-state-metrics
repository: https://prometheus-community.github.io/helm-charts
version: 5.27.1
digest: sha256:e7d1012e5e0c168152bf31a78201412ace9181b3e1409d2fef03c47a272fb066
generated: "2026-02-11T09:46:23.549839514Z"
- name: cadvisor
repository: https://charts.bitnami.com/bitnami
version: 0.1.13
digest: sha256:c26e65b8c0e137114855071616095d639bce503d01438bb65c0aee6b5197d757
generated: "2026-03-05T17:51:05.641137209Z"
6 changes: 5 additions & 1 deletion charts/costgraph-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,15 @@ apiVersion: v2
name: costgraph-operator
description: A Helm chart for the Costgraph operator
type: application
version: 0.1.0
version: 0.1.1
appVersion: "1.16.0"

dependencies:
- name: kube-state-metrics
version: "5.27.*"
repository: https://prometheus-community.github.io/helm-charts
condition: kube-state-metrics.enabled
- name: cadvisor
version: "0.1.*"
repository: https://charts.bitnami.com/bitnami
condition: cadvisor.enabled
5 changes: 4 additions & 1 deletion charts/costgraph-operator/README.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,26 @@
# costgraph-operator

![Version: 0.1.0](https://img.shields.io/badge/Version-0.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.16.0](https://img.shields.io/badge/AppVersion-1.16.0-informational?style=flat-square)
![Version: 0.1.1](https://img.shields.io/badge/Version-0.1.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.16.0](https://img.shields.io/badge/AppVersion-1.16.0-informational?style=flat-square)

A Helm chart for the Costgraph operator

## Requirements

| Repository | Name | Version |
|------------|------|---------|
| https://charts.bitnami.com/bitnami | cadvisor | 0.1.* |
| https://prometheus-community.github.io/helm-charts | kube-state-metrics | 5.27.* |

## Values

| Key | Type | Default | Description |
|-----|------|---------|-------------|
| cadvisor | object | `{"enabled":true,"image":{"registry":"ghcr.io","repository":"baselinehq/cadvisor","tag":"v0.56.2-baseline"}}` | ------------------------------------------------------------------------ |
| fullnameOverride | string | `""` | |
| global.apiKey | string | `""` | |
| global.clusterName | string | `""` | |
| global.namespace | string | `"costgraph"` | |
| global.security.allowInsecureImages | bool | `true` | |
| imagePullSecrets | list | `[]` | |
| kube-state-metrics | object | `{"enabled":true}` | ------------------------------------------------------------------------ |
| nameOverride | string | `""` | |
Expand Down
14 changes: 14 additions & 0 deletions charts/costgraph-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ global:
clusterName: ""
apiKey: ""
namespace: "costgraph"
# Flag to enable use of our custom image in the cadvisor chart
security:
allowInsecureImages: true

imagePullSecrets: []
nameOverride: ""
Expand All @@ -23,6 +26,17 @@ serviceAccount:
kube-state-metrics:
enabled: true

# --------------------------------------------------------------------------
# cadvisor (subchart from bitnami)
# See: https://github.com/bitnami/charts/tree/main/bitnami/cadvisor
# --------------------------------------------------------------------------
cadvisor:
enabled: true
image:
registry: ghcr.io
repository: baselinehq/cadvisor
tag: "v0.56.2-baseline"

# --------------------------------------------------------------------------
# costgraph-operator-kubernetes deployment
# --------------------------------------------------------------------------
Expand Down