Skip to content

Commit

Permalink
#798 Configurable injector ephemeral storage
Browse files Browse the repository at this point in the history
  • Loading branch information
krishnadas-m committed Nov 7, 2022
1 parent f6c7323 commit 1e4b2aa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
Features:
* server: Add `extraLabels` for Vault server serviceAccount [GH-806](https://github.com/hashicorp/vault-helm/pull/806)

Improvements:
* injector: Add `ephemeralLimit` and `ephemeralRequest` as options for configuring Agent's ephemeral storage resources [GH-798](https://github.com/hashicorp/vault-helm/pull/798)

## 0.22.1 (October 26th, 2022)

Changes:
Expand Down
7 changes: 0 additions & 7 deletions test/unit/injector-deployment.bats
Original file line number Diff line number Diff line change
Expand Up @@ -835,13 +835,6 @@ EOF
yq -r 'map(select(.name=="AGENT_INJECT_MEM_REQUEST")) | .[] .value' | tee /dev/stderr)
[ "${value}" = "64Mi" ]

local value=$(echo $object |
yq -r 'map(select(.name=="AGENT_INJECT_EPHEMERAL_REQUEST")) | .[] .value' | tee /dev/stderr)
[ "${value}" = "64Mi" ]

local value=$(echo $object |
yq -r 'map(select(.name=="AGENT_INJECT_EPHEMERAL_LIMIT")) | .[] .value' | tee /dev/stderr)
[ "${value}" = "128Mi" ]
}

@test "injector/deployment: can set agent default resources" {
Expand Down

0 comments on commit 1e4b2aa

Please sign in to comment.