Skip to content

Commit

Permalink
chore: bump bank vaults version
Browse files Browse the repository at this point in the history
Signed-off-by: Ramiz Polic <[email protected]>
  • Loading branch information
ramizpolic committed Nov 28, 2023
1 parent 1256757 commit 69d8e50
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
6 changes: 3 additions & 3 deletions deploy/charts/vault-operator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Kubernetes operator for Hashicorp Vault
## TL;DR;

```bash
helm install --generate-name --wait oci://ghcr.io/bank-vaults/helm-charts/vault-operator
helm install --generate-name --wait ghcr.io/bank-vaults/helm-charts/vault-operator
```

## Values
Expand All @@ -22,7 +22,7 @@ helm install --generate-name --wait oci://ghcr.io/bank-vaults/helm-charts/vault-
| image.bankVaultsRepository | string | `""` | Bank-Vaults image repository **Deprecated:** use `bankVaults.image.repository` instead. |
| image.bankVaultsTag | string | `""` | Bank-Vaults image tag **Deprecated:** use `bankVaults.image.tag` instead. |
| bankVaults.image.repository | string | `"ghcr.io/bank-vaults/bank-vaults"` | Bank-Vaults image repository. |
| bankVaults.image.tag | string | `"1.20.3"` | Bank-Vaults image tag (pinned to supported Bank-Vaults version). |
| bankVaults.image.tag | string | `"v1.30.0"` | Bank-Vaults image tag (pinned to supported Bank-Vaults version). |
| nameOverride | string | `""` | A name in place of the chart name for `app:` labels. |
| fullnameOverride | string | `""` | A name to substitute for the full names of resources. |
| watchNamespace | string | `""` | The namespace where the operator watches for vault CR objects. If not defined all namespaces are watched. |
Expand All @@ -39,7 +39,7 @@ helm install --generate-name --wait oci://ghcr.io/bank-vaults/helm-charts/vault-
| service.name | string | `""` | The name of the service to use. If not set, a name is generated using the fullname template. |
| service.externalPort | int | `80` | |
| service.internalPort | int | `8080` | |
| resources | object | `{"limits":{"cpu":"100m","memory":"256Mi"},"requests":{"cpu":"100m","memory":"128Mi"}}` | Container resource [requests and limits](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/). See the [API reference](https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#resources) for details. |
| resources | object | `{}` | Container resource [requests and limits](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/). See the [API reference](https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#resources) for details. |
| nodeSelector | object | `{}` | [Node selector](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#nodeselector) configuration. |
| tolerations | list | `[]` | [Tolerations](https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/) for node taints. See the [API reference](https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#scheduling) for details. |
| affinity | object | `{}` | [Affinity](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity) configuration. See the [API reference](https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#scheduling) for details. |
Expand Down
4 changes: 3 additions & 1 deletion deploy/charts/vault-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ bankVaults:
repository: ghcr.io/bank-vaults/bank-vaults

# -- Bank-Vaults image tag (pinned to supported Bank-Vaults version).
tag: "1.20.3"
tag: "v1.30.0"

# -- A name in place of the chart name for `app:` labels.
nameOverride: ""
Expand Down Expand Up @@ -86,9 +86,11 @@ service:
# -- Container resource [requests and limits](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/).
# See the [API reference](https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#resources) for details.
resources:
# -- @ignored
limits:
cpu: 100m
memory: 256Mi
# -- @ignored
requests:
cpu: 100m
memory: 128Mi
Expand Down
2 changes: 1 addition & 1 deletion deploy/dev/multi-dc/test/multi-dc-raft.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ set -xeo pipefail

METALLB_VERSION=v0.13.10
VAULT_VERSION=1.14.1
BANK_VAULTS_VERSION=1.20.3
BANK_VAULTS_VERSION=v1.30.0
VAULT_TOKEN=$(uuidgen)
export VAULT_TOKEN

Expand Down
2 changes: 1 addition & 1 deletion test/deploy/test-external-secrets-watch-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ metadata:
spec:
size: 1
image: hashicorp/vault:1.14.1
bankVaultsImage: ghcr.io/bank-vaults/bank-vaults:1.20.3
bankVaultsImage: ghcr.io/bank-vaults/bank-vaults:v1.30.0

# Common annotations for all created resources
annotations:
Expand Down

0 comments on commit 69d8e50

Please sign in to comment.