Skip to content

Commit e862b68

Browse files
authored
Update Velero to v1.14.0 (kubermatic#13473)
* update Velero to v1.14.0 * go mod tidy * codegen * add more internal packages to the wwhrd allowlist * bump other random otel libraries to make helm compile again
1 parent 8267bca commit e862b68

File tree

10 files changed

+82
-103
lines changed

10 files changed

+82
-103
lines changed

.wwhrd.yml

+3
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,10 @@ exceptions:
3434
- github.com/hashicorp/go-multierror # MPL-2.0
3535
- github.com/hashicorp/go-retryablehttp # MPL-2.0
3636
- github.com/hashicorp/go-plugin # MPL-2.0
37+
- github.com/hashicorp/go-plugin/internal/cmdrunner # MPL-2.0
38+
- github.com/hashicorp/go-plugin/internal/grpcmux # MPL-2.0
3739
- github.com/hashicorp/go-plugin/internal/plugin # MPL-2.0
40+
- github.com/hashicorp/go-plugin/runner # MPL-2.0
3841
- github.com/hashicorp/go-version # MPL-2.0
3942
- github.com/hashicorp/golang-lru/v2/internal # MPL-2.0
4043
- github.com/hashicorp/golang-lru/arc/v2 # MPL-2.0

charts/backup/velero/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
apiVersion: v2
1616
name: velero
1717
version: 9.9.9-dev
18-
appVersion: v1.13.1
18+
appVersion: v1.14.0
1919
description: A Helm chart for Velero
2020
keywords:
2121
- kubermatic

charts/backup/velero/test/default.yaml.out

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ metadata:
6868
name: velero
6969
labels:
7070
app.kubernetes.io/name: velero
71-
app.kubernetes.io/version: 'v1.13.1'
71+
app.kubernetes.io/version: 'v1.14.0'
7272
app.kubernetes.io/managed-by: helm
7373
spec:
7474
replicas: 1
@@ -88,7 +88,7 @@ spec:
8888
restartPolicy: Always
8989
containers:
9090
- name: velero
91-
image: 'docker.io/velero/velero:v1.13.1'
91+
image: 'docker.io/velero/velero:v1.14.0'
9292
imagePullPolicy: IfNotPresent
9393
command:
9494
- /velero

charts/backup/velero/test/values.example.ce.yaml.out

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ metadata:
6868
name: velero
6969
labels:
7070
app.kubernetes.io/name: velero
71-
app.kubernetes.io/version: 'v1.13.1'
71+
app.kubernetes.io/version: 'v1.14.0'
7272
app.kubernetes.io/managed-by: helm
7373
spec:
7474
replicas: 1
@@ -88,7 +88,7 @@ spec:
8888
restartPolicy: Always
8989
containers:
9090
- name: velero
91-
image: 'docker.io/velero/velero:v1.13.1'
91+
image: 'docker.io/velero/velero:v1.14.0'
9292
imagePullPolicy: IfNotPresent
9393
command:
9494
- /velero

charts/backup/velero/test/values.example.ee.yaml.out

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ metadata:
6868
name: velero
6969
labels:
7070
app.kubernetes.io/name: velero
71-
app.kubernetes.io/version: 'v1.13.1'
71+
app.kubernetes.io/version: 'v1.14.0'
7272
app.kubernetes.io/managed-by: helm
7373
spec:
7474
replicas: 1
@@ -88,7 +88,7 @@ spec:
8888
restartPolicy: Always
8989
containers:
9090
- name: velero
91-
image: 'docker.io/velero/velero:v1.13.1'
91+
image: 'docker.io/velero/velero:v1.14.0'
9292
imagePullPolicy: IfNotPresent
9393
command:
9494
- /velero

charts/backup/velero/values.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ velero:
1818
# that also contains the nodeAgent binary
1919
image:
2020
repository: docker.io/velero/velero
21-
tag: v1.13.1
21+
tag: v1.14.0
2222
pullPolicy: IfNotPresent
2323

2424
# CLI flags to pass to velero server; note that the flags `uploader-type`,
@@ -34,21 +34,21 @@ velero:
3434
# At least one plugin provider image is required.
3535
initContainers:
3636
# - name: velero-plugin-for-aws
37-
# image: docker.io/velero/velero-plugin-for-aws:v1.9.1
37+
# image: docker.io/velero/velero-plugin-for-aws:v1.10.0
3838
# imagePullPolicy: IfNotPresent
3939
# volumeMounts:
4040
# - mountPath: /target
4141
# name: plugins
4242

4343
# - name: velero-plugin-for-gcp
44-
# image: docker.io/velero/velero-plugin-for-gcp:v1.9.0
44+
# image: docker.io/velero/velero-plugin-for-gcp:v1.10.0
4545
# imagePullPolicy: IfNotPresent
4646
# volumeMounts:
4747
# - mountPath: /target
4848
# name: plugins
4949

5050
# - name: velero-plugin-for-microsoft-azure
51-
# image: docker.io/velero/velero-plugin-for-microsoft-azure:v1.9.1
51+
# image: docker.io/velero/velero-plugin-for-microsoft-azure:v1.10.0
5252
# imagePullPolicy: IfNotPresent
5353
# volumeMounts:
5454
# - mountPath: /target

go.mod

+19-19
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ require (
6464
github.com/spf13/pflag v1.0.6-0.20210604193023-d5e0c0615ace
6565
github.com/stretchr/testify v1.9.0
6666
github.com/vishvananda/netlink v1.2.1-beta.2.0.20240524165444-4d4ba1473f21
67-
github.com/vmware-tanzu/velero v1.13.1
67+
github.com/vmware-tanzu/velero v1.14.0
6868
github.com/vmware/go-vcloud-director/v2 v2.22.0
6969
github.com/vmware/govmomi v0.38.0
7070
go.anx.io/go-anxcloud v0.7.2
@@ -154,7 +154,7 @@ require (
154154
github.com/beorn7/perks v1.0.1 // indirect
155155
github.com/blang/semver/v4 v4.0.0 // indirect
156156
github.com/bshuster-repo/logrus-logstash-hook v1.0.0 // indirect
157-
github.com/cenkalti/backoff/v4 v4.2.1 // indirect
157+
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
158158
github.com/census-instrumentation/opencensus-proto v0.4.1 // indirect
159159
github.com/cespare/xxhash/v2 v2.2.0 // indirect
160160
github.com/chai2010/gettext-go v1.0.2 // indirect
@@ -200,7 +200,7 @@ require (
200200
github.com/go-gorp/gorp/v3 v3.1.0 // indirect
201201
github.com/go-logr/logr v1.4.2 // indirect
202202
github.com/go-logr/stdr v1.2.2 // indirect
203-
github.com/go-ole/go-ole v1.2.6 // indirect
203+
github.com/go-ole/go-ole v1.3.0 // indirect
204204
github.com/go-openapi/analysis v0.21.4 // indirect
205205
github.com/go-openapi/errors v0.20.4 // indirect
206206
github.com/go-openapi/jsonpointer v0.20.2 // indirect
@@ -235,18 +235,18 @@ require (
235235
github.com/gosimple/slug v1.1.1 // indirect
236236
github.com/gosuri/uitable v0.0.4 // indirect
237237
github.com/gregjones/httpcache v0.0.0-20190212212710-3befbb6ad0cc // indirect
238-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.18.1 // indirect
238+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0 // indirect
239239
github.com/hashicorp/errwrap v1.1.0 // indirect
240240
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
241241
github.com/hashicorp/go-hclog v1.6.3 // indirect
242242
github.com/hashicorp/go-multierror v1.1.1 // indirect
243-
github.com/hashicorp/go-plugin v1.4.3 // indirect
243+
github.com/hashicorp/go-plugin v1.6.0 // indirect
244244
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
245245
github.com/hashicorp/go-version v1.6.0 // indirect
246246
github.com/hashicorp/golang-lru/arc/v2 v2.0.5 // indirect
247247
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
248248
github.com/hashicorp/hcl v1.0.1-vault-5 // indirect
249-
github.com/hashicorp/yamux v0.0.0-20190923154419-df201c70410d // indirect
249+
github.com/hashicorp/yamux v0.1.1 // indirect
250250
github.com/huandu/xstrings v1.4.0 // indirect
251251
github.com/imdario/mergo v0.3.16 // indirect
252252
github.com/inconshreveable/mousetrap v1.1.0 // indirect
@@ -257,7 +257,7 @@ require (
257257
github.com/josharian/intern v1.0.0 // indirect
258258
github.com/json-iterator/go v1.1.12 // indirect
259259
github.com/kevinburke/ssh_config v1.2.0 // indirect
260-
github.com/klauspost/compress v1.17.6 // indirect
260+
github.com/klauspost/compress v1.17.8 // indirect
261261
github.com/klauspost/cpuid/v2 v2.2.6 // indirect
262262
github.com/kr/pretty v0.3.1 // indirect
263263
github.com/kr/text v0.2.0 // indirect
@@ -304,8 +304,8 @@ require (
304304
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
305305
github.com/pkg/errors v0.9.1 // indirect
306306
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
307-
github.com/prometheus/client_model v0.5.0 // indirect
308-
github.com/prometheus/common v0.48.0 // indirect
307+
github.com/prometheus/client_model v0.6.1 // indirect
308+
github.com/prometheus/common v0.52.3 // indirect
309309
github.com/prometheus/procfs v0.12.0 // indirect
310310
github.com/rainycape/unidecode v0.0.0-20150907023854-cb7f23ec59be // indirect
311311
github.com/redis/go-redis/extra/rediscmd/v9 v9.0.5 // indirect
@@ -353,20 +353,20 @@ require (
353353
go.opentelemetry.io/contrib/exporters/autoexport v0.46.1 // indirect
354354
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect
355355
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect
356-
go.opentelemetry.io/otel v1.24.0 // indirect
356+
go.opentelemetry.io/otel v1.27.0 // indirect
357357
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v0.44.0 // indirect
358358
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v0.44.0 // indirect
359-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.21.0 // indirect
360-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.21.0 // indirect
361-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.21.0 // indirect
359+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.27.0 // indirect
360+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.27.0 // indirect
361+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.27.0 // indirect
362362
go.opentelemetry.io/otel/exporters/prometheus v0.44.0 // indirect
363363
go.opentelemetry.io/otel/exporters/stdout/stdoutmetric v0.44.0 // indirect
364-
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.21.0 // indirect
365-
go.opentelemetry.io/otel/metric v1.24.0 // indirect
366-
go.opentelemetry.io/otel/sdk v1.22.0 // indirect
367-
go.opentelemetry.io/otel/sdk/metric v1.21.0 // indirect
368-
go.opentelemetry.io/otel/trace v1.24.0 // indirect
369-
go.opentelemetry.io/proto/otlp v1.0.0 // indirect
364+
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.27.0 // indirect
365+
go.opentelemetry.io/otel/metric v1.27.0 // indirect
366+
go.opentelemetry.io/otel/sdk v1.27.0 // indirect
367+
go.opentelemetry.io/otel/sdk/metric v1.27.0 // indirect
368+
go.opentelemetry.io/otel/trace v1.27.0 // indirect
369+
go.opentelemetry.io/proto/otlp v1.2.0 // indirect
370370
go.starlark.net v0.0.0-20230525235612-a134d8f9ddca // indirect
371371
go.uber.org/dig v1.17.1 // indirect
372372
go.uber.org/multierr v1.11.0 // indirect

0 commit comments

Comments
 (0)