Skip to content
2 changes: 1 addition & 1 deletion chart/chart-index/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ dependencies:
version: 0.33.0
repository: https://open-telemetry.github.io/opentelemetry-helm-charts
- name: prometheus-blackbox-exporter
version: 11.0.0
version: 11.2.0
repository: https://prometheus-community.github.io/helm-charts
- name: prometheus-msteams
version: 1.3.4
Expand Down
4 changes: 2 additions & 2 deletions charts/prometheus-blackbox-exporter/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v2
appVersion: v0.26.0
appVersion: v0.27.0
description: Prometheus Blackbox Exporter
home: https://github.com/prometheus/blackbox_exporter
keywords:
Expand All @@ -25,4 +25,4 @@ sources:
- https://github.com/prometheus/blackbox_exporter
- https://github.com/prometheus-community/helm-charts/tree/main/charts/prometheus-blackbox-exporter
type: application
version: 11.0.0
version: 11.2.0
42 changes: 21 additions & 21 deletions charts/prometheus-blackbox-exporter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,26 +11,26 @@ This chart creates a Blackbox-Exporter deployment on a [Kubernetes](http://kuber
- Kubernetes 1.8+ with Beta APIs enabled
- Helm >= 3.0

## Get Repository Info
## Usage

```console
helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
helm repo update
```
The chart is distributed as an [OCI Artifact](https://helm.sh/docs/topics/registries/) as well as via a traditional [Helm Repository](https://helm.sh/docs/topics/chart_repository/).

- OCI Artifact: `oci://ghcr.io/prometheus-community/charts/prometheus-blackbox-exporter`
- Helm Repository: `https://prometheus-community.github.io/helm-charts` with chart `prometheus-blackbox-exporter`

_See [`helm repo`](https://helm.sh/docs/helm/helm_repo/) for command documentation._
The installation instructions use the OCI registry. Refer to the [`helm repo`]([`helm repo`](https://helm.sh/docs/helm/helm_repo/)) command documentation for information on installing charts via the traditional repository.

## Install Chart
### Install Chart

```console
helm install [RELEASE_NAME] prometheus-community/prometheus-blackbox-exporter
helm install [RELEASE_NAME] oci://ghcr.io/prometheus-community/charts/prometheus-blackbox-exporter
```

_See [configuration](#configuration) below._

_See [helm install](https://helm.sh/docs/helm/helm_install/) for command documentation._

## Uninstall Chart
### Uninstall Chart

```console
helm uninstall [RELEASE_NAME]
Expand All @@ -40,34 +40,34 @@ This removes all the Kubernetes components associated with the chart and deletes

_See [helm uninstall](https://helm.sh/docs/helm/helm_uninstall/) for command documentation._

## Upgrading Chart
### Upgrading Chart

```console
helm upgrade [RELEASE_NAME] [CHART] --install
```

_See [helm upgrade](https://helm.sh/docs/helm/helm_upgrade/) for command documentation._

### To 11.0.0
#### To 11.0.0

This version removes support for the deprecated Kubernetes API `extensions/v1beta1`, `networking.k8s.io/v1beta1`, and `rbac.authorization.k8s.io/v1beta1`. and associated attributes.

### To 10.0.0
#### To 10.0.0

- `extraEnvFromSecret` got replaced with `extraEnvFrom`
- `extraEnv` handling got changed to use k8s env definitions as list of maps

### To 9.0.0
#### To 9.0.0

This version remove pod security policy as it is deprecated.

### To 8.0.0
#### To 8.0.0

- The default image is set to `quay.io/prometheus/blackbox-exporter` instead `prom/blackbox-exporter`
- `image.repository` is now split into `image.registry` and `image.repository`.
For the old behavior, set `image.registry` to an empty string and only use `image.repository`.

### To 7.0.0
#### To 7.0.0

This version introduces the `securityContext` and `podSecurityContext` and removes `allowICMP`option.

Expand All @@ -81,20 +81,20 @@ securityContext:
add: ["NET_RAW"]
```

### To 6.0.0
#### To 6.0.0

This version introduces the relabeling field for the ServiceMonitor.
All values in the list `additionalRelabeling` will now appear under `relabelings` instead of `metricRelabelings`.

### To 5.0.0
#### To 5.0.0

This version removes Helm 2 support. Also the ingress config has changed, so you have to adapt to the example in the values.yaml.

### To 4.0.0
#### To 4.0.0

This version create the service account by default and introduce pod security policy, it can be enabled by setting `pspEnabled: true`.

### To 2.0.0
#### To 2.0.0

This version removes the `podDisruptionBudget.enabled` parameter and changes the default value of `podDisruptionBudget` to `{}`, in order to fix Helm 3 compatibility.

Expand All @@ -105,7 +105,7 @@ podDisruptionBudget:
maxUnavailable: 0
```

### To 1.0.0
#### To 1.0.0

This version introduce the new recommended labels.

Expand All @@ -122,5 +122,5 @@ Note that this will cause downtime of the blackbox.
See [Customizing the Chart Before Installing](https://helm.sh/docs/intro/using_helm/#customizing-the-chart-before-installing). To see all configurable options with detailed comments, visit the chart's [values.yaml](./values.yaml), or run these configuration commands:

```console
helm show values prometheus-community/prometheus-blackbox-exporter
helm show values oci://ghcr.io/prometheus-community/charts/prometheus-blackbox-exporter
```
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
template:
metadata:
labels:
{{- include "prometheus-blackbox-exporter.selectorLabels" . | nindent 8 }}
{{- include "prometheus-blackbox-exporter.labels" . | nindent 8 }}
{{- if .Values.commonLabels }}
{{ toYaml .Values.commonLabels | indent 8 }}
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion charts/prometheus-blackbox-exporter/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ configReloader:
image:
registry: quay.io
repository: prometheus-operator/prometheus-config-reloader
tag: "v0.83.0"
tag: "v0.84.0"
pullPolicy: IfNotPresent
digest: ""
securityContext:
Expand Down