Skip to content

Commit 8044bd8

Browse files
authored
chore: prepare release (#181)
chore: prepare release Signed-off-by: Bence Csati <csatib02@gmail.com>
1 parent 2af1fb4 commit 8044bd8

File tree

6 files changed

+106
-106
lines changed

6 files changed

+106
-106
lines changed

.github/workflows/ci.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ jobs:
215215
strategy:
216216
matrix:
217217
k8s_version: ["v1.28.9", "v1.29.4", "v1.30.0"]
218-
operator_version: ["v1.22.1", "v1.22.2"] # First version that works with the generic webhook: v1.22.1
218+
operator_version: ["v1.22.1", "v1.22.2", "v1.22.3"] # First version that works with the generic webhook: v1.22.1
219219
# vault_version: ["1.11.12", "1.12.8", "1.13.4", "1.14.8"]
220220

221221
steps:

deploy/charts/secrets-webhook/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ The following table lists the configurable parameters of the Helm chart.
122122
| `webhookClientConfig.useUrl` | bool | `false` | Use url if webhook should be contacted over loadbalancer or ingress instead of service object. By default, the mutating webhook uses the service of the webhook directly to contact webhook. |
123123
| `webhookClientConfig.url` | string | `"https://example.com"` | Set the url how the webhook should be contacted, including the protocol |
124124
| `secretInit.repository` | string | `"ghcr.io/bank-vaults/secret-init"` | Container image repo that contains the secret-init container |
125-
| `secretInit.tag` | string | `"v0.2.0"` | Container image tag for the secret-init container |
125+
| `secretInit.tag` | string | `"v0.2.1"` | Container image tag for the secret-init container |
126126
| `env` | object | `{}` | Custom environment variables available to webhook |
127127
| `initContainers` | list | `[]` | Containers to run before the webhook containers are started |
128128
| `metrics.enabled` | bool | `false` | Enable metrics service for the webhook |

deploy/charts/secrets-webhook/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ secretInit:
7373
# -- Container image repo that contains the secret-init container
7474
repository: ghcr.io/bank-vaults/secret-init
7575
# -- Container image tag for the secret-init container
76-
tag: "v0.2.0"
76+
tag: "v0.2.1"
7777

7878
# -- Custom environment variables available to webhook
7979
env: {}

garden.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ spec:
55
namespace: vault-operator
66
chart:
77
name: oci://ghcr.io/bank-vaults/helm-charts/vault-operator
8-
version: "1.22.2"
8+
version: "1.22.3"
99

1010
---
1111
kind: Build

go.mod

+34-34
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ go 1.23.1
55
require (
66
emperror.dev/errors v0.8.1
77
github.com/aws/aws-sdk-go v1.55.5
8-
github.com/bank-vaults/secret-init v0.2.0
9-
github.com/bank-vaults/vault-sdk v0.10.0
8+
github.com/bank-vaults/secret-init v0.2.1
9+
github.com/bank-vaults/vault-sdk v0.10.1
1010
github.com/fsnotify/fsnotify v1.7.0
1111
github.com/google/go-cmp v0.6.0
1212
github.com/google/go-containerregistry v0.20.2
@@ -30,17 +30,17 @@ require (
3030
cloud.google.com/go v0.115.1 // indirect
3131
cloud.google.com/go/auth v0.9.4 // indirect
3232
cloud.google.com/go/auth/oauth2adapt v0.2.4 // indirect
33-
cloud.google.com/go/compute/metadata v0.5.1 // indirect
33+
cloud.google.com/go/compute/metadata v0.5.2 // indirect
3434
cloud.google.com/go/iam v1.2.1 // indirect
35-
cloud.google.com/go/kms v1.19.1 // indirect
35+
cloud.google.com/go/kms v1.20.0 // indirect
3636
cloud.google.com/go/longrunning v0.6.1 // indirect
3737
cloud.google.com/go/storage v1.43.0 // indirect
3838
dario.cat/mergo v1.0.1 // indirect
3939
github.com/Azure/azure-sdk-for-go v68.0.0+incompatible // indirect
4040
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.14.0 // indirect
4141
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.7.0 // indirect
4242
github.com/Azure/azure-sdk-for-go/sdk/internal v1.10.0 // indirect
43-
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.4.0 // indirect
43+
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.4.1 // indirect
4444
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
4545
github.com/Azure/go-autorest/autorest v0.11.29 // indirect
4646
github.com/Azure/go-autorest/autorest/adal v0.9.24 // indirect
@@ -54,28 +54,28 @@ require (
5454
github.com/Masterminds/goutils v1.1.1 // indirect
5555
github.com/Masterminds/semver/v3 v3.3.0 // indirect
5656
github.com/Masterminds/sprig/v3 v3.3.0 // indirect
57-
github.com/aws/aws-sdk-go-v2 v1.30.5 // indirect
58-
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.4 // indirect
59-
github.com/aws/aws-sdk-go-v2/config v1.27.33 // indirect
60-
github.com/aws/aws-sdk-go-v2/credentials v1.17.32 // indirect
61-
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.13 // indirect
62-
github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.17.18 // indirect
63-
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.17 // indirect
64-
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.17 // indirect
57+
github.com/aws/aws-sdk-go-v2 v1.31.0 // indirect
58+
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.5 // indirect
59+
github.com/aws/aws-sdk-go-v2/config v1.27.37 // indirect
60+
github.com/aws/aws-sdk-go-v2/credentials v1.17.35 // indirect
61+
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.14 // indirect
62+
github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.17.23 // indirect
63+
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.18 // indirect
64+
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.18 // indirect
6565
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.1 // indirect
66-
github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.17 // indirect
67-
github.com/aws/aws-sdk-go-v2/service/ecr v1.33.0 // indirect
68-
github.com/aws/aws-sdk-go-v2/service/ecrpublic v1.25.6 // indirect
69-
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.4 // indirect
70-
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.3.19 // indirect
71-
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.19 // indirect
72-
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.17.17 // indirect
73-
github.com/aws/aws-sdk-go-v2/service/s3 v1.61.2 // indirect
74-
github.com/aws/aws-sdk-go-v2/service/sso v1.22.7 // indirect
75-
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.26.7 // indirect
76-
github.com/aws/aws-sdk-go-v2/service/sts v1.30.7 // indirect
77-
github.com/aws/smithy-go v1.20.4 // indirect
78-
github.com/awslabs/amazon-ecr-credential-helper/ecr-login v0.0.0-20240909191326-0ee4ec5d16bf // indirect
66+
github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.18 // indirect
67+
github.com/aws/aws-sdk-go-v2/service/ecr v1.35.1 // indirect
68+
github.com/aws/aws-sdk-go-v2/service/ecrpublic v1.26.1 // indirect
69+
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.5 // indirect
70+
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.3.20 // indirect
71+
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.20 // indirect
72+
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.17.18 // indirect
73+
github.com/aws/aws-sdk-go-v2/service/s3 v1.63.1 // indirect
74+
github.com/aws/aws-sdk-go-v2/service/sso v1.23.1 // indirect
75+
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.27.1 // indirect
76+
github.com/aws/aws-sdk-go-v2/service/sts v1.31.1 // indirect
77+
github.com/aws/smithy-go v1.21.0 // indirect
78+
github.com/awslabs/amazon-ecr-credential-helper/ecr-login v0.0.0-20240918142057-e21b7a4e92d1 // indirect
7979
github.com/beorn7/perks v1.0.1 // indirect
8080
github.com/blang/semver/v4 v4.0.0 // indirect
8181
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
@@ -84,7 +84,7 @@ require (
8484
github.com/containerd/stargz-snapshotter/estargz v0.15.1 // indirect
8585
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
8686
github.com/dimchansky/utfbom v1.1.1 // indirect
87-
github.com/docker/cli v27.2.1+incompatible // indirect
87+
github.com/docker/cli v27.3.1+incompatible // indirect
8888
github.com/docker/distribution v2.8.3+incompatible // indirect
8989
github.com/docker/docker-credential-helpers v0.8.2 // indirect
9090
github.com/emicklei/go-restful/v3 v3.12.1 // indirect
@@ -134,7 +134,7 @@ require (
134134
github.com/jmespath/go-jmespath v0.4.0 // indirect
135135
github.com/josharian/intern v1.0.0 // indirect
136136
github.com/json-iterator/go v1.1.12 // indirect
137-
github.com/klauspost/compress v1.17.9 // indirect
137+
github.com/klauspost/compress v1.17.10 // indirect
138138
github.com/kylelemons/godebug v1.1.0 // indirect
139139
github.com/magiconair/properties v1.8.7 // indirect
140140
github.com/mailru/easyjson v0.7.7 // indirect
@@ -191,11 +191,11 @@ require (
191191
golang.org/x/time v0.6.0 // indirect
192192
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
193193
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
194-
google.golang.org/api v0.197.0 // indirect
195-
google.golang.org/genproto v0.0.0-20240903143218-8af14fe29dc1 // indirect
196-
google.golang.org/genproto/googleapis/api v0.0.0-20240903143218-8af14fe29dc1 // indirect
197-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240903143218-8af14fe29dc1 // indirect
198-
google.golang.org/grpc v1.66.2 // indirect
194+
google.golang.org/api v0.198.0 // indirect
195+
google.golang.org/genproto v0.0.0-20240924160255-9d4c2d233b61 // indirect
196+
google.golang.org/genproto/googleapis/api v0.0.0-20240924160255-9d4c2d233b61 // indirect
197+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240924160255-9d4c2d233b61 // indirect
198+
google.golang.org/grpc v1.67.0 // indirect
199199
google.golang.org/protobuf v1.34.2 // indirect
200200
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
201201
gopkg.in/inf.v0 v0.9.1 // indirect
@@ -204,7 +204,7 @@ require (
204204
gopkg.in/yaml.v3 v3.0.1 // indirect
205205
k8s.io/component-base v0.31.0 // indirect
206206
k8s.io/kube-openapi v0.0.0-20240903163716-9e1beecbcb38 // indirect
207-
k8s.io/utils v0.0.0-20240902221715-702e33fdd3c3 // indirect
207+
k8s.io/utils v0.0.0-20240921022957-49e7df575cb6 // indirect
208208
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
209209
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
210210
sigs.k8s.io/yaml v1.4.0 // indirect

0 commit comments

Comments
 (0)