From 21ea432a9b318d54eb0f09e0410ee612350bb142 Mon Sep 17 00:00:00 2001 From: JenTing Hsiao Date: Wed, 4 May 2022 20:06:01 +0800 Subject: [PATCH 1/4] Remove jenting from maintainers Signed-off-by: JenTing Hsiao --- .github/auto-assignees.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/auto-assignees.yml b/.github/auto-assignees.yml index 6d197b2..56be011 100644 --- a/.github/auto-assignees.yml +++ b/.github/auto-assignees.yml @@ -9,7 +9,7 @@ reviewers: groups: maintainers: - - jenting + - dsu-igeek - sseago - reasonerjt - ywk253100 From 05d9a12924199fe869b9118ac6f3c2df755c5028 Mon Sep 17 00:00:00 2001 From: Xun Jiang Date: Tue, 14 Jun 2022 16:23:30 +0800 Subject: [PATCH 2/4] Pin golang image to v1.17.11, and resolve auto-assignees list conflict. Signed-off-by: Xun Jiang --- .github/auto-assignees.yml | 1 - .github/workflows/pr.yaml | 4 ++-- .github/workflows/push.yml | 2 +- Dockerfile | 2 +- 4 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/auto-assignees.yml b/.github/auto-assignees.yml index 56be011..a79f5da 100644 --- a/.github/auto-assignees.yml +++ b/.github/auto-assignees.yml @@ -9,7 +9,6 @@ reviewers: groups: maintainers: - - dsu-igeek - sseago - reasonerjt - ywk253100 diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index 12583f3..09c6a80 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -7,10 +7,10 @@ jobs: runs-on: ubuntu-latest steps: - - name: Set up Go 1.17 + - name: Set up Go 1.17.11 uses: actions/setup-go@v2 with: - go-version: 1.17 + go-version: 1.17.11 id: go - name: Check out the code diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 1851f87..ccdaff7 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -18,7 +18,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v2 with: - go-version: 1.17 + go-version: 1.17.11 id: go - name: Check out code into the Go module directory diff --git a/Dockerfile b/Dockerfile index c3c7898..47a4211 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM --platform=$BUILDPLATFORM golang:1.17-buster AS build +FROM --platform=$BUILDPLATFORM golang:1.17.11-buster AS build ARG TARGETOS ARG TARGETARCH From 69f852c4016f198a34cec8a3ae059d360f7cc96d Mon Sep 17 00:00:00 2001 From: Xun Jiang Date: Mon, 13 Jun 2022 16:56:00 +0800 Subject: [PATCH 3/4] Update README and change log for v1.5. Signed-off-by: Xun Jiang --- README.md | 5 +++-- changelogs/CHANGELOG-1.5.0.md | 7 +++++++ changelogs/unreleased/84-jxun | 1 - 3 files changed, 10 insertions(+), 3 deletions(-) create mode 100644 changelogs/CHANGELOG-1.5.0.md delete mode 100644 changelogs/unreleased/84-jxun diff --git a/README.md b/README.md index e7d4d13..d4a3829 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,7 @@ Below is a listing of plugin versions and respective Velero versions that are co | Plugin Version | Velero Version | |-----------------|----------------| +| v1.5.x | v1.9.x | | v1.4.x | v1.8.x | | v1.3.x | v1.7.x | | v1.2.x | v1.6.x | @@ -200,7 +201,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.4.0 \ + --plugins velero/velero-plugin-for-gcp:v1.5.0 \ --bucket $BUCKET \ --secret-file ./credentials-velero ``` @@ -212,7 +213,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.4.0 \ + --plugins velero/velero-plugin-for-gcp:v1.5.0 \ --bucket $BUCKET \ --no-secret \ --sa-annotations iam.gke.io/gcp-service-account=[$GSA_NAME]@[$PROJECT_ID].iam.gserviceaccount.com \ diff --git a/changelogs/CHANGELOG-1.5.0.md b/changelogs/CHANGELOG-1.5.0.md new file mode 100644 index 0000000..c7c6c76 --- /dev/null +++ b/changelogs/CHANGELOG-1.5.0.md @@ -0,0 +1,7 @@ +## All changes + +- Add Shubham to auto-assignees. +- Use scratch as the base image. +- Bump up the version of library go-plugin. +- Remove jenting from maintainers. +- Use Project ID setting for volumeProject. \ No newline at end of file diff --git a/changelogs/unreleased/84-jxun b/changelogs/unreleased/84-jxun deleted file mode 100644 index b5c6ada..0000000 --- a/changelogs/unreleased/84-jxun +++ /dev/null @@ -1 +0,0 @@ -Add regional PV support for GKE \ No newline at end of file From 290903a720d98405fd11ab365af0c5366142b101 Mon Sep 17 00:00:00 2001 From: Xun Jiang Date: Mon, 13 Jun 2022 20:41:07 +0800 Subject: [PATCH 4/4] Add PR link and author in changelog. Signed-off-by: Xun Jiang --- changelogs/CHANGELOG-1.5.0.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/changelogs/CHANGELOG-1.5.0.md b/changelogs/CHANGELOG-1.5.0.md index c7c6c76..53a1fc6 100644 --- a/changelogs/CHANGELOG-1.5.0.md +++ b/changelogs/CHANGELOG-1.5.0.md @@ -1,7 +1,7 @@ ## All changes -- Add Shubham to auto-assignees. -- Use scratch as the base image. -- Bump up the version of library go-plugin. -- Remove jenting from maintainers. -- Use Project ID setting for volumeProject. \ No newline at end of file +- Add Shubham to auto-assignees. (#96, @sseago) +- Use scratch as the base image. (#95, @ywk253100) +- Bump up the version of library go-plugin. (#94, @ywk53100) +- Remove jenting from maintainers. (#93, @jenting) +- Use Project ID setting for volumeProject. (#92, @mayeco) \ No newline at end of file