Skip to content

Commit de4bc8f

Browse files
Eldarotheyenx
andauthored
fix(snapshotAgent): change extraVolumes to list instead of object (#141)
--------- Signed-off-by: Eldaroth <flavio.waelchli@gmail.com> Signed-off-by: Flavio <flavio.waelchli@gmail.com> Co-authored-by: Toni Tauro <eye@eyenx.ch>
1 parent 87efcce commit de4bc8f

File tree

4 files changed

+17
-10
lines changed

4 files changed

+17
-10
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## Unreleased
22

3+
### 0.25.1
4+
5+
- fix(snapshotAgent): change extraVolumes to list instead of object
6+
37
### 0.25.0
48

59
- Update OpenBao to version 2.5.0

charts/openbao/Chart.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
apiVersion: v2
55
name: openbao
6-
version: 0.25.0
6+
version: 0.25.1
77
appVersion: v2.5.0
88
kubeVersion: ">= 1.30.0-0"
99
description: Official OpenBao Chart
@@ -26,9 +26,9 @@ annotations:
2626
charts.openshift.io/name: Openbao
2727
artifacthub.io/containsSecurityUpdates: "false"
2828
artifacthub.io/changes: |
29-
- kind: changed
29+
- kind: fixed
3030
description: |
31-
feat: Update to OpenBao 2.5.0
31+
fix(snapshotAgent): change extraVolumes to list instead of object
3232
links:
3333
- name: OpenBao 2.5.0 Release
3434
url: https://github.com/openbao/openbao/releases/tag/v2.5.0

charts/openbao/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# openbao
22

3-
![Version: 0.25.0](https://img.shields.io/badge/Version-0.25.0-informational?style=flat-square) ![AppVersion: v2.5.0](https://img.shields.io/badge/AppVersion-v2.5.0-informational?style=flat-square)
3+
![Version: 0.25.1](https://img.shields.io/badge/Version-0.25.1-informational?style=flat-square) ![AppVersion: v2.5.0](https://img.shields.io/badge/AppVersion-v2.5.0-informational?style=flat-square)
44

55
Official OpenBao Chart
66

@@ -331,8 +331,8 @@ Kubernetes: `>= 1.30.0-0`
331331
| snapshotAgent.enabled | bool | `false` | |
332332
| snapshotAgent.extraEnvironmentVars | object | `{}` | Map of extra environment variables to set in the snapshot-agent cronjob |
333333
| snapshotAgent.extraSecretEnvironmentVars | list | `[]` | List of extra environment variables to set in the snapshot-agent cronjob These variables take value from existing Secret objects. |
334-
| snapshotAgent.extraVolumeMounts | list | `[]` | List of additional volumeMounts for the snapshot cronjob container. These are rendered via toYaml rather than pre-processed like the extraVolumes value. |
335-
| snapshotAgent.extraVolumes | object | `{}` | |
334+
| snapshotAgent.extraVolumeMounts | list | `[]` | List of additional volumeMounts for the snapshot cronjob container. |
335+
| snapshotAgent.extraVolumes | list | `[]` | List of extraVolumes made available to the snapshot cronjob container. |
336336
| snapshotAgent.image.repository | string | `"ghcr.io/openbao/openbao-snapshot-agent"` | |
337337
| snapshotAgent.image.tag | string | `"0.2.4"` | |
338338
| snapshotAgent.resources | object | `{}` | |

charts/openbao/values.yaml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1512,11 +1512,14 @@ snapshotAgent:
15121512
repository: ghcr.io/openbao/openbao-snapshot-agent
15131513
tag: 0.2.4
15141514

1515-
# extraVolumes for the snapshot agent cronjob
1516-
extraVolumes: {}
1515+
# -- List of extraVolumes made available to the snapshot cronjob container.
1516+
extraVolumes: []
1517+
# - name: openbao-tls
1518+
# secret:
1519+
# defaultMode: 420
1520+
# secretName: openbao-tls
15171521

1518-
# -- List of additional volumeMounts for the snapshot cronjob container. These are rendered
1519-
# via toYaml rather than pre-processed like the extraVolumes value.
1522+
# -- List of additional volumeMounts for the snapshot cronjob container.
15201523
extraVolumeMounts: []
15211524
# - mountPath: /openbao/tls/ca.crt
15221525
# name: openbao-tls

0 commit comments

Comments
 (0)