diff --git a/charts/bindplane/Chart.yaml b/charts/bindplane/Chart.yaml index 7dd3cbe..abf6c5c 100644 --- a/charts/bindplane/Chart.yaml +++ b/charts/bindplane/Chart.yaml @@ -3,7 +3,7 @@ name: bindplane description: BindPlane OP is an observability pipeline. type: application # The chart's version -version: 1.22.1 +version: 1.23.0 # The BindPlane OP tagged release. If the user does not # set the `image.tag` values option, this version is used. appVersion: 1.84.0 diff --git a/charts/bindplane/README.md b/charts/bindplane/README.md index 7ee02aa..d5e96bb 100644 --- a/charts/bindplane/README.md +++ b/charts/bindplane/README.md @@ -1,6 +1,6 @@ # bindplane -![Version: 1.22.1](https://img.shields.io/badge/Version-1.22.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.84.0](https://img.shields.io/badge/AppVersion-1.84.0-informational?style=flat-square) +![Version: 1.23.0](https://img.shields.io/badge/Version-1.23.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.84.0](https://img.shields.io/badge/AppVersion-1.84.0-informational?style=flat-square) BindPlane OP is an observability pipeline. @@ -69,6 +69,7 @@ BindPlane OP is an observability pipeline. | backend.postgres.sslsecret.sslrootcertSubPath | string | `""` | Path to the CA certificate used to verify the Postgres server's certificate. | | backend.postgres.username | string | `""` | Username to use when connecting to Postgres. | | backend.type | string | `"bbolt"` | Backend to use for persistent storage. Available options are `bbolt`, and `postgres`. | +| busybox_image | string | `"busybox:latest"` | The container image to use for the busybox init container. | | config.accept_eula | bool | `true` | Whether or not to accept the EULA. EULA acceptance is required. See https://observiq.com/legal/eula. | | config.analytics.disable | bool | `false` | Whether or not to disable analytics. Disabling analytics is only supported when an enterprise license is used. | | config.license | string | `""` | The license key to use for BindPlane OP. Overrides `config.secret`. | diff --git a/charts/bindplane/templates/bindplane-jobs.yaml b/charts/bindplane/templates/bindplane-jobs.yaml index 5587908..381bf78 100644 --- a/charts/bindplane/templates/bindplane-jobs.yaml +++ b/charts/bindplane/templates/bindplane-jobs.yaml @@ -63,7 +63,7 @@ spec: {{- if eq .Values.backend.postgres.sslSource "secret" }} initContainers: - name: postgres-tls - image: busybox + image: {{ .Values.busybox_image }} command: - sh - -c diff --git a/charts/bindplane/templates/bindplane.yaml b/charts/bindplane/templates/bindplane.yaml index 2eb0ea2..44af158 100644 --- a/charts/bindplane/templates/bindplane.yaml +++ b/charts/bindplane/templates/bindplane.yaml @@ -73,7 +73,7 @@ spec: initContainers: {{- if eq .Values.backend.type "bbolt" }} - name: set-data-permissions - image: busybox + image: {{ .Values.busybox_image }} command: - sh - -c @@ -88,7 +88,7 @@ spec: {{- if .Values.backend.postgres.sslsecret.name }} {{- if eq .Values.backend.postgres.sslSource "secret" }} - name: postgres-tls - image: busybox + image: {{ .Values.busybox_image }} command: - sh - -c diff --git a/charts/bindplane/values.yaml b/charts/bindplane/values.yaml index 909fd56..cbcbdea 100644 --- a/charts/bindplane/values.yaml +++ b/charts/bindplane/values.yaml @@ -578,3 +578,6 @@ extraPodLabels: {} # -- Optional arbitrary environment variables to add to the BindPlane pod(s). extraEnv: [] + +# -- The container image to use for the busybox init container. +busybox_image: busybox:latest