Skip to content
This repository was archived by the owner on Nov 28, 2022. It is now read-only.

Commit cfc6cf8

Browse files
authored
Update HashiCorp Vault image to 1.6.5 (#52)
1 parent 8269be3 commit cfc6cf8

File tree

7 files changed

+16
-8
lines changed

7 files changed

+16
-8
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog for Vault Sidecar Injector
22

3+
## Release v7.2.1 - 2021-05-26
4+
5+
New default Vault image to fix CVE-2021-32923 (refer to HashiCorp Vault's [changelog](https://github.com/hashicorp/vault/blob/master/CHANGELOG.md#may-20th-2021-1)).
6+
7+
**Changed**
8+
9+
- [VSI #52](https://github.com/Talend/vault-sidecar-injector/pull/52) - Update HashiCorp Vault image to 1.6.5
10+
311
## Release v7.2.0 - 2021-05-19
412

513
This release comes with support for `admission.k8s.io/v1` AdmissionReview and `admissionregistration.k8s.io/v1` MutatingWebhookConfiguration on Kubernetes 1.16+. As a result, Vault Sidecar Injector now handles both v1 and v1beta1 versions of those resources.

VERSION_CHART

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.3.0
1+
4.3.1

VERSION_RELEASE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.2.0
1+
7.2.1

deploy/helm/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ injectconfig:
7474
vault:
7575
image:
7676
path: "vault" # image path
77-
tag: "1.6.2" # image tag
77+
tag: "1.6.5" # image tag
7878
pullPolicy: Always # Pull policy for images: IfNotPresent or Always
7979
log:
8080
level: info # Vault log level: trace, debug, info, warn, err

doc/Configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The following table lists the configurable parameters of the `Vault Sidecar Inje
2121
| injectconfig.jobbabysitter.resources.requests.memory | Job babysitter sidecar memory resource requests | 20Mi |
2222
| injectconfig.vault.image.path | Image path | vault |
2323
| injectconfig.vault.image.pullPolicy | Pull policy for image: IfNotPresent or Always | Always |
24-
| injectconfig.vault.image.tag | Image tag | 1.6.2 |
24+
| injectconfig.vault.image.tag | Image tag | 1.6.5 |
2525
| injectconfig.vault.log.format | Vault log format: standard, json | json |
2626
| injectconfig.vault.log.level | Vault log level: trace, debug, info, warn, err | info |
2727
| injectconfig.vault.resources.limits.cpu | Vault sidecar CPU resource limits | 200m |

test/config/injectionconfig.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
initContainers:
22
- name: tvsi-vault-agent-init
3-
image: vault:1.6.2
3+
image: vault:1.6.5
44
imagePullPolicy: Always
55
env:
66
- name: SKIP_SETCAP
@@ -106,7 +106,7 @@ containers:
106106
mountPath: /var/run/secrets/kubernetes.io/serviceaccount
107107
readOnly: true
108108
- name: tvsi-vault-agent
109-
image: vault:1.6.2
109+
image: vault:1.6.5
110110
imagePullPolicy: Always
111111
env:
112112
- name: SKIP_SETCAP

test/config/injectionconfig.yaml.resolved

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ containers:
116116
- name: VSI_VAULT_AUTH_METHOD
117117
value: kubernetes
118118
- name: VSI_VAULT_ROLE
119-
image: vault:1.6.2
119+
image: vault:1.6.5
120120
imagePullPolicy: Always
121121
lifecycle:
122122
preStop:
@@ -173,7 +173,7 @@ initContainers:
173173
value: https://vault:8200
174174
- name: VSI_SECRETS_TEMPLATES_PLACEHOLDER
175175
- name: VSI_VAULT_ROLE
176-
image: vault:1.6.2
176+
image: vault:1.6.5
177177
imagePullPolicy: Always
178178
name: tvsi-vault-agent-init
179179
resources: {}

0 commit comments

Comments
 (0)