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
12 changes: 5 additions & 7 deletions .vib/kube-prometheus/cypress/cypress/e2e/kube_prometheus.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,8 @@ it('allows executing a query and displaying response data for each deployment',
Object.keys(deployments).forEach((podName, i) => {
const query = Object.values(deployments)[i].query;

cy.get('[role="textbox"]').clear({force: true}).type(`${query}{enter}`);
cy.contains('Execute').click();
cy.contains('.data-table', `container="${podName}"`)
cy.visit(`/graph?g0.expr=${query}`);
cy.contains('span', `container="${podName}"`)
})
});

Expand All @@ -25,9 +24,8 @@ it('allows executing a query and displaying response data for each service monit
Object.keys(monitors).forEach((jobName, i) => {
const query = Object.values(monitors)[i].query;

cy.get('[role="textbox"]').clear({force: true}).type(`${query}{enter}`);
cy.contains('Execute').click();
cy.contains('.data-table', `job="${jobName}"`)
cy.visit(`/graph?g0.expr=${query}`);
cy.contains('span', `job="${jobName}"`)
})
});

Expand All @@ -38,6 +36,6 @@ it('checks targets status', () => {
const podData = Object.values(targets)[i];

cy.visit(`/targets?search=${podName}`);
cy.contains(`${podData.replicaCount}/${podData.replicaCount} up`);
cy.get('a[href$=metrics]').should('have.length', `${podData.replicaCount}`);
})
});
8 changes: 6 additions & 2 deletions bitnami/kube-prometheus/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Changelog

## 11.1.6 (2025-04-23)
## 11.1.7 (2025-04-30)

* [bitnami/kube-prometheus] Release 11.1.6 ([#33135](https://github.com/bitnami/charts/pull/33135))
* [bitnami/kube-prometheus] Release 11.1.7 ([#33238](https://github.com/bitnami/charts/pull/33238))

## <small>11.1.6 (2025-04-23)</small>

* [bitnami/kube-prometheus] Release 11.1.6 (#33135) ([1682a33](https://github.com/bitnami/charts/commit/1682a335cb190b990e91c54cd675ecd6df77094c)), closes [#33135](https://github.com/bitnami/charts/issues/33135)

## <small>11.1.5 (2025-04-23)</small>

Expand Down
4 changes: 2 additions & 2 deletions bitnami/kube-prometheus/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ annotations:
- name: blackbox-exporter
image: docker.io/bitnami/blackbox-exporter:0.26.0-debian-12-r6
- name: prometheus
image: docker.io/bitnami/prometheus:2.55.1-debian-12-r19
image: docker.io/bitnami/prometheus:3.0.1-debian-12-r1
- name: prometheus-operator
image: docker.io/bitnami/prometheus-operator:0.82.0-debian-12-r1
- name: thanos
Expand Down Expand Up @@ -50,4 +50,4 @@ maintainers:
name: kube-prometheus
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus
version: 11.1.6
version: 11.1.7
2 changes: 1 addition & 1 deletion bitnami/kube-prometheus/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -638,7 +638,7 @@ prometheus:
image:
registry: docker.io
repository: bitnami/prometheus
tag: 2.55.1-debian-12-r19
tag: 3.0.1-debian-12-r1
digest: ""
pullPolicy: IfNotPresent
## Optionally specify an array of imagePullSecrets.
Expand Down
Loading