Skip to content

Commit

Permalink
Merge branch 'vmware-tanzu:main' into issue#7731
Browse files Browse the repository at this point in the history
  • Loading branch information
chrislinan authored Oct 21, 2024
2 parents aff3d5f + 222c3c5 commit 26467af
Show file tree
Hide file tree
Showing 5 changed files with 69 additions and 32 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ Below is a listing of plugin versions and respective Velero versions that are co

| Plugin Version | Velero Version |
|-----------------|----------------|
| v1.11.x | v1.15.x |
| v1.10.x | v1.14.x |
| v1.9.x | v1.13.x |
| v1.8.x | v1.12.x |
Expand Down Expand Up @@ -221,7 +222,7 @@ Install Velero, including all prerequisites, into the cluster and start the depl
```bash
velero install \
--provider gcp \
--plugins velero/velero-plugin-for-gcp:v1.10.0 \
--plugins velero/velero-plugin-for-gcp:v1.11.0 \
--bucket $BUCKET \
--secret-file ./credentials-velero
```
Expand All @@ -233,7 +234,7 @@ You must add a service account annotation to the Kubernetes service account so t
```bash
velero install \
--provider gcp \
--plugins velero/velero-plugin-for-gcp:v1.10.0 \
--plugins velero/velero-plugin-for-gcp:v1.11.0 \
--bucket $BUCKET \
--no-secret \
--sa-annotations iam.gke.io/gcp-service-account=[$GSA_NAME]@[$PROJECT_ID].iam.gserviceaccount.com \
Expand Down
3 changes: 3 additions & 0 deletions changelogs/CHANGELOG-1.10.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## v1.9.0
### All changes
* Add support for archive snapshot type. (#173, @okuuva)
3 changes: 3 additions & 0 deletions changelogs/CHANGELOG-1.11.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## All changes

* Bump depending velero version to latest main commit. (#195, @blackpiglet)
26 changes: 18 additions & 8 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module github.com/vmware-tanzu/velero-plugin-for-gcp

go 1.22.0
go 1.22.6

toolchain go1.22.2
toolchain go1.22.8

require (
cloud.google.com/go/storage v1.40.0
Expand All @@ -11,7 +11,7 @@ require (
github.com/sirupsen/logrus v1.9.3
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.9.0
github.com/vmware-tanzu/velero v0.0.0-20240424061649-159a49f0b2b9
github.com/vmware-tanzu/velero v0.0.0-20241009105421-ba0dbb91f941
golang.org/x/oauth2 v0.19.0
google.golang.org/api v0.172.0
k8s.io/api v0.29.0
Expand All @@ -23,12 +23,15 @@ require (
cloud.google.com/go/compute v1.24.0 // indirect
cloud.google.com/go/compute/metadata v0.2.3 // indirect
cloud.google.com/go/iam v1.1.7 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
github.com/evanphx/json-patch v5.6.0+incompatible // indirect
github.com/evanphx/json-patch/v5 v5.8.0 // indirect
github.com/fatih/color v1.16.0 // indirect
github.com/felixge/httpsnoop v1.0.4 // indirect
github.com/fsnotify/fsnotify v1.7.0 // indirect
github.com/go-logr/logr v1.4.1 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/go-openapi/jsonpointer v0.19.6 // indirect
Expand Down Expand Up @@ -62,6 +65,10 @@ require (
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
github.com/oklog/run v1.0.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/prometheus/client_golang v1.19.0 // indirect
github.com/prometheus/client_model v0.6.1 // indirect
github.com/prometheus/common v0.52.3 // indirect
github.com/prometheus/procfs v0.12.0 // indirect
github.com/spf13/afero v1.9.2 // indirect
github.com/spf13/cobra v1.7.0 // indirect
github.com/stretchr/objx v0.5.2 // indirect
Expand All @@ -71,13 +78,15 @@ require (
go.opentelemetry.io/otel v1.25.0 // indirect
go.opentelemetry.io/otel/metric v1.25.0 // indirect
go.opentelemetry.io/otel/trace v1.25.0 // indirect
golang.org/x/crypto v0.22.0 // indirect
golang.org/x/net v0.24.0 // indirect
golang.org/x/crypto v0.24.0 // indirect
golang.org/x/exp v0.0.0-20230522175609-2e198f4a06a1 // indirect
golang.org/x/net v0.26.0 // indirect
golang.org/x/sync v0.7.0 // indirect
golang.org/x/sys v0.19.0 // indirect
golang.org/x/term v0.19.0 // indirect
golang.org/x/text v0.14.0 // indirect
golang.org/x/sys v0.21.0 // indirect
golang.org/x/term v0.21.0 // indirect
golang.org/x/text v0.16.0 // indirect
golang.org/x/time v0.5.0 // indirect
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
google.golang.org/genproto v0.0.0-20240227224415-6ceb2ff114de // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20240314234333-6e1732d8331c // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240401170217-c3f982113cda // indirect
Expand All @@ -88,6 +97,7 @@ require (
gopkg.in/yaml.v3 v3.0.1 // indirect
k8s.io/apiextensions-apiserver v0.29.0 // indirect
k8s.io/client-go v0.29.0 // indirect
k8s.io/component-base v0.29.0 // indirect
k8s.io/klog/v2 v2.110.1 // indirect
k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00 // indirect
k8s.io/utils v0.0.0-20230726121419-3b25d923346b // indirect
Expand Down
Loading

0 comments on commit 26467af

Please sign in to comment.