Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package velero-plugin-for-gcp for 
openSUSE:Factory checked in at 2021-10-01 22:29:11
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/velero-plugin-for-gcp (Old)
 and      /work/SRC/openSUSE:Factory/.velero-plugin-for-gcp.new.2443 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "velero-plugin-for-gcp"

Fri Oct  1 22:29:11 2021 rev:3 rq:922573 version:1.3.0

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/velero-plugin-for-gcp/velero-plugin-for-gcp.changes  
    2021-07-28 19:21:16.027538933 +0200
+++ 
/work/SRC/openSUSE:Factory/.velero-plugin-for-gcp.new.2443/velero-plugin-for-gcp.changes
    2021-10-01 22:29:42.601446828 +0200
@@ -1,0 +2,7 @@
+Thu Sep 30 15:42:56 UTC 2021 - [email protected]
+
+- Update to version 1.3.0:
+  * Releasing for 1.7 RC1
+  * Change the base image to distroless
+
+-------------------------------------------------------------------

Old:
----
  velero-plugin-for-gcp-1.2.1.tar.gz

New:
----
  velero-plugin-for-gcp-1.3.0.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ velero-plugin-for-gcp.spec ++++++
--- /var/tmp/diff_new_pack.PSHeEu/_old  2021-10-01 22:29:43.333448181 +0200
+++ /var/tmp/diff_new_pack.PSHeEu/_new  2021-10-01 22:29:43.333448181 +0200
@@ -19,7 +19,7 @@
 %define goipath github.com/vmware-tanzu/velero-plugin-for-gcp
 
 Name:           velero-plugin-for-gcp
-Version:        1.2.1
+Version:        1.3.0
 Release:        0
 Summary:        Velero plugin for GCP
 License:        Apache-2.0

++++++ _service ++++++
--- /var/tmp/diff_new_pack.PSHeEu/_old  2021-10-01 22:29:43.365448240 +0200
+++ /var/tmp/diff_new_pack.PSHeEu/_new  2021-10-01 22:29:43.365448240 +0200
@@ -5,7 +5,7 @@
     <param name="exclude">.git</param>
     <param name="versionformat">@PARENT_TAG@</param>
     <param name="versionrewrite-pattern">v(.*)</param>
-    <param name="revision">v1.2.1</param>
+    <param name="revision">v1.3.0</param>
     <param name="changesgenerate">enable</param>
   </service>
   <service name="recompress" mode="disabled">

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.PSHeEu/_old  2021-10-01 22:29:43.381448269 +0200
+++ /var/tmp/diff_new_pack.PSHeEu/_new  2021-10-01 22:29:43.381448269 +0200
@@ -1,4 +1,4 @@
 <servicedata>
 <service name="tar_scm">
                 <param 
name="url">https://github.com/vmware-tanzu/velero-plugin-for-gcp</param>
-              <param 
name="changesrevision">558d306f2adb11e39e615a5733ceb706dd69fd3c</param></service></servicedata>
\ No newline at end of file
+              <param 
name="changesrevision">8e43171eafe53a2da7a5c71359ae505f5c2efaaf</param></service></servicedata>
\ No newline at end of file

++++++ velero-plugin-for-gcp-1.2.1.tar.gz -> velero-plugin-for-gcp-1.3.0.tar.gz 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/velero-plugin-for-gcp-1.2.1/Dockerfile 
new/velero-plugin-for-gcp-1.3.0/Dockerfile
--- old/velero-plugin-for-gcp-1.2.1/Dockerfile  2021-07-24 13:33:34.000000000 
+0200
+++ new/velero-plugin-for-gcp-1.3.0/Dockerfile  2021-09-09 11:12:58.000000000 
+0200
@@ -17,9 +17,10 @@
 WORKDIR /go/src/velero-plugin-for-gcp
 RUN CGO_ENABLED=0 GOOS=linux go build -v -o /go/bin/velero-plugin-for-gcp 
./velero-plugin-for-gcp
 
+FROM busybox:1.33.1 AS busybox
 
-FROM ubuntu:bionic
-RUN mkdir /plugins
+FROM gcr.io/distroless/base-debian10:nonroot
 COPY --from=build /go/bin/velero-plugin-for-gcp /plugins/
-USER nobody:nogroup
-ENTRYPOINT ["/bin/bash", "-c", "cp /plugins/* /target/."]
+COPY --from=busybox /bin/cp /bin/cp
+USER nonroot:nonroot
+ENTRYPOINT ["cp", "/plugins/velero-plugin-for-gcp", "/target/."]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/velero-plugin-for-gcp-1.2.1/README.md 
new/velero-plugin-for-gcp-1.3.0/README.md
--- old/velero-plugin-for-gcp-1.2.1/README.md   2021-07-24 13:33:34.000000000 
+0200
+++ new/velero-plugin-for-gcp-1.3.0/README.md   2021-09-09 11:12:58.000000000 
+0200
@@ -24,6 +24,7 @@
 
 | Plugin Version  | Velero Version |
 |-----------------|----------------|
+| v1.3.x          | v1.7.x         |
 | v1.2.x          | v1.6.x         |
 | v1.1.x          | v1.5.x         |
 | v1.1.x          | v1.4.x         |
@@ -161,7 +162,7 @@
 ```bash
 velero install \
     --provider gcp \
-    --plugins velero/velero-plugin-for-gcp:v1.2.0 \
+    --plugins velero/velero-plugin-for-gcp:v1.3.0 \
     --bucket $BUCKET \
     --secret-file ./credentials-velero
 ```
@@ -173,7 +174,7 @@
 ```bash
 velero install \
     --provider gcp \
-    --plugins velero/velero-plugin-for-gcp:v1.2.0 \
+    --plugins velero/velero-plugin-for-gcp:v1.3.0 \
     --bucket $BUCKET \
     --no-secret \
     --sa-annotations 
iam.gke.io/gcp-service-account=[GSA_NAME]@[PROJECT_ID].iam.gserviceaccount.com \
@@ -201,7 +202,7 @@
 ### Prerequisites
 
 * Velero 1.6.0 or later
-* GCP plugin must be installed, either at install time, or by running `velero 
plugin add velero/velero-plugin-for-gcp:v1.2.0`
+* GCP plugin must be installed, either at install time, or by running `velero 
plugin add velero/velero-plugin-for-gcp:plugin-version`, replace the 
`plugin-version` with the corresponding value
 
 ### Configure GCS bucket and credentials
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/velero-plugin-for-gcp-1.2.1/changelogs/CHANGELOG-1.3.0.md 
new/velero-plugin-for-gcp-1.3.0/changelogs/CHANGELOG-1.3.0.md
--- old/velero-plugin-for-gcp-1.2.1/changelogs/CHANGELOG-1.3.0.md       
1970-01-01 01:00:00.000000000 +0100
+++ new/velero-plugin-for-gcp-1.3.0/changelogs/CHANGELOG-1.3.0.md       
2021-09-09 11:12:58.000000000 +0200
@@ -0,0 +1,3 @@
+## All changes
+
+- Change the base image to `distroless`. (#106, @ywk253100)
\ No newline at end of file

++++++ vendor.tar.gz ++++++
/work/SRC/openSUSE:Factory/velero-plugin-for-gcp/vendor.tar.gz 
/work/SRC/openSUSE:Factory/.velero-plugin-for-gcp.new.2443/vendor.tar.gz 
differ: char 5, line 1

Reply via email to