Skip to content

Commit 50f7439

Browse files
authored
Update to v0.27.0 (#978)
1 parent 3e16e05 commit 50f7439

File tree

5 files changed

+18
-8
lines changed

5 files changed

+18
-8
lines changed

CHANGELOG.md

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

3+
## 0.27.0 (November 16, 2023)
4+
5+
Changes:
6+
7+
* Default `vault` version updated to 1.15.2
8+
39
Features:
410

511
* server: Support setting `persistentVolumeClaimRetentionPolicy` on the StatefulSet [GH-965](https://github.com/hashicorp/vault-helm/pull/965)
612
* server: Support setting labels on PVCs [GH-969](https://github.com/hashicorp/vault-helm/pull/969)
13+
* server: Support setting ingress rules for networkPolicy [GH-877](https://github.com/hashicorp/vault-helm/pull/877)
714

815
Improvements:
916

Chart.yaml

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

44
apiVersion: v2
55
name: vault
6-
version: 0.26.1
7-
appVersion: 1.15.1
6+
version: 0.27.0
7+
appVersion: 1.15.2
88
kubeVersion: ">= 1.20.0-0"
99
description: Official HashiCorp Vault Chart
1010
home: https://www.vaultproject.io

values.openshift.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ injector:
1313

1414
agentImage:
1515
repository: "registry.connect.redhat.com/hashicorp/vault"
16-
tag: "1.15.1-ubi"
16+
tag: "1.15.2-ubi"
1717

1818
server:
1919
image:
2020
repository: "registry.connect.redhat.com/hashicorp/vault"
21-
tag: "1.15.1-ubi"
21+
tag: "1.15.2-ubi"
2222

2323
readinessProbe:
2424
path: "/v1/sys/health?uninitcode=204"

values.schema.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -872,6 +872,9 @@
872872
},
873873
"enabled": {
874874
"type": "boolean"
875+
},
876+
"ingress": {
877+
"type": "array"
875878
}
876879
}
877880
},

values.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ injector:
7676
# required.
7777
agentImage:
7878
repository: "hashicorp/vault"
79-
tag: "1.15.1"
79+
tag: "1.15.2"
8080

8181
# The default values for the injected Vault Agent containers.
8282
agentDefaults:
@@ -377,7 +377,7 @@ server:
377377

378378
image:
379379
repository: "hashicorp/vault"
380-
tag: "1.15.1"
380+
tag: "1.15.2"
381381
# Overrides the default Image Pull Policy
382382
pullPolicy: IfNotPresent
383383

@@ -649,7 +649,7 @@ server:
649649
# port: 443
650650
ingress:
651651
- from:
652-
- namespaceSelector: {}
652+
- namespaceSelector: {}
653653
ports:
654654
- port: 8200
655655
protocol: TCP
@@ -1165,7 +1165,7 @@ csi:
11651165

11661166
image:
11671167
repository: "hashicorp/vault"
1168-
tag: "1.15.1"
1168+
tag: "1.15.2"
11691169
pullPolicy: IfNotPresent
11701170

11711171
logFormat: standard

0 commit comments

Comments
 (0)