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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
uses: igabaydulin/helm-check-action@0.1.4
env:
CHART_LOCATION: ./charts/bindplane
CHART_VALUES: ./charts/bindplane/values.yaml
CHART_VALUES: ./test/cases/default/values.yaml

- name: Helm Docs
uses: losisin/helm-docs-github-action@v1
Expand Down
4 changes: 2 additions & 2 deletions charts/bindplane/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ name: bindplane
description: Bindplane is an observability pipeline.
type: application
# The chart's version
version: 1.33.2
version: 1.34.0
# The Bindplane tagged release. If the user does not
# set the `image.tag` values option, this version is used.
appVersion: 1.98.2
appVersion: 1.99.1
keywords:
- kubernetes
- bindplane
Expand Down
2 changes: 1 addition & 1 deletion charts/bindplane/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# bindplane

![Version: 1.33.2](https://img.shields.io/badge/Version-1.33.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.98.2](https://img.shields.io/badge/AppVersion-1.98.2-informational?style=flat-square)
![Version: 1.34.0](https://img.shields.io/badge/Version-1.34.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.99.1](https://img.shields.io/badge/AppVersion-1.99.1-informational?style=flat-square)

Bindplane is an observability pipeline.

Expand Down
2 changes: 1 addition & 1 deletion charts/bindplane/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ BBolt support was removed in BindPlane v1.99.0 (April 2026).
{{- define "bindplane.validate_bbolt" -}}
{{- if eq .Values.backend.type "bbolt" -}}
{{- $tag := include "bindplane.tag" . | trimPrefix "v" -}}
{{- if regexMatch "^[0-9]+\\.[0-9]+\\.[0-9]+" $tag -}}
{{- if regexMatch "^[0-9]+\\.[0-9]+\\.[0-9]+(-[a-zA-Z0-9\\.]+)?$" $tag -}}
{{- if semverCompare ">=1.99.0" $tag -}}
{{- fail "backend.type 'bbolt' is not supported with BindPlane versions newer than v1.98.0. BBolt was removed in BindPlane v1.99.0 (April 2026). Please migrate to backend.type 'postgres'." -}}
{{- end -}}
Expand Down
8 changes: 8 additions & 0 deletions test/cases/default/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@ extraEnv:
- name: BINDPLANE_LOGGING_LEVEL
value: debug

backend:
type: postgres
postgres:
host: postgres.postgres.svc.cluster.local
database: bindplane
username: postgres
password: password

# Required options
config:
username: bpuser
Expand Down
8 changes: 8 additions & 0 deletions test/cases/ingress/values.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
backend:
type: postgres
postgres:
host: postgres.postgres.svc.cluster.local
database: bindplane
username: postgres
password: password

# Required options
config:
username: bpuser
Expand Down
8 changes: 8 additions & 0 deletions test/cases/ldap/values.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
backend:
type: postgres
postgres:
host: postgres.postgres.svc.cluster.local
database: bindplane
username: postgres
password: password

# Required options
config:
username: bpuser
Expand Down
8 changes: 8 additions & 0 deletions test/cases/oidc/values.yaml
Original file line number Diff line number Diff line change
@@ -1 +1,9 @@
# Placeholder, see .github/workflows/scripts/generate-oidc-test-config.sh

backend:
type: postgres
postgres:
host: postgres.postgres.svc.cluster.local
database: bindplane
username: postgres
password: password
8 changes: 8 additions & 0 deletions test/cases/volume/values.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
backend:
type: postgres
postgres:
host: postgres.postgres.svc.cluster.local
database: bindplane
username: postgres
password: password

# Required options
config:
username: bpuser
Expand Down
Loading