Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kubectl-browse-pvc for openSUSE:Factory checked in at 2026-04-04 19:07:52 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kubectl-browse-pvc (Old) and /work/SRC/openSUSE:Factory/.kubectl-browse-pvc.new.21863 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kubectl-browse-pvc" Sat Apr 4 19:07:52 2026 rev:9 rq:1344553 version:1.4.2 Changes: -------- --- /work/SRC/openSUSE:Factory/kubectl-browse-pvc/kubectl-browse-pvc.changes 2026-03-09 16:32:37.705437080 +0100 +++ /work/SRC/openSUSE:Factory/.kubectl-browse-pvc.new.21863/kubectl-browse-pvc.changes 2026-04-04 19:09:48.395002433 +0200 @@ -1,0 +2,6 @@ +Sat Apr 04 05:58:09 UTC 2026 - Johannes Kastl <[email protected]> + +- Update to version 1.4.2: + * add read-only flag for PVC mounting options + +------------------------------------------------------------------- Old: ---- kubectl-browse-pvc-1.4.1.obscpio New: ---- kubectl-browse-pvc-1.4.2.obscpio ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kubectl-browse-pvc.spec ++++++ --- /var/tmp/diff_new_pack.F9nyMH/_old 2026-04-04 19:09:49.199035398 +0200 +++ /var/tmp/diff_new_pack.F9nyMH/_new 2026-04-04 19:09:49.203035562 +0200 @@ -19,7 +19,7 @@ %define executable_name kubectl-browse_pvc Name: kubectl-browse-pvc -Version: 1.4.1 +Version: 1.4.2 Release: 0 Summary: Kubectl plugin for browsing PVCs on the command line License: MIT ++++++ _service ++++++ --- /var/tmp/diff_new_pack.F9nyMH/_old 2026-04-04 19:09:49.239037038 +0200 +++ /var/tmp/diff_new_pack.F9nyMH/_new 2026-04-04 19:09:49.243037202 +0200 @@ -3,7 +3,7 @@ <param name="url">https://github.com/clbx/kubectl-browse-pvc</param> <param name="scm">git</param> <param name="exclude">.git</param> - <param name="revision">v1.4.1</param> + <param name="revision">v1.4.2</param> <param name="versionformat">@PARENT_TAG@</param> <param name="changesgenerate">enable</param> <param name="versionrewrite-pattern">v(.*)</param> ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.F9nyMH/_old 2026-04-04 19:09:49.271038350 +0200 +++ /var/tmp/diff_new_pack.F9nyMH/_new 2026-04-04 19:09:49.275038514 +0200 @@ -1,6 +1,6 @@ <servicedata> <service name="tar_scm"> <param name="url">https://github.com/clbx/kubectl-browse-pvc</param> - <param name="changesrevision">01eda30d64fcca4e44f105c8ca22e92daf854a29</param></service></servicedata> + <param name="changesrevision">61b597275b44049ccfa6e4a44dc295c0c006f146</param></service></servicedata> (No newline at EOF) ++++++ kubectl-browse-pvc-1.4.1.obscpio -> kubectl-browse-pvc-1.4.2.obscpio ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kubectl-browse-pvc-1.4.1/cmd/browse-pvc/main.go new/kubectl-browse-pvc-1.4.2/cmd/browse-pvc/main.go --- old/kubectl-browse-pvc-1.4.1/cmd/browse-pvc/main.go 2026-03-08 03:10:11.000000000 +0100 +++ new/kubectl-browse-pvc-1.4.2/cmd/browse-pvc/main.go 2026-04-04 05:03:52.000000000 +0200 @@ -30,6 +30,7 @@ var image string var Version string var containerUser int +var readOnly bool var validCommands = []string{"image", "container-user"} @@ -57,6 +58,7 @@ rootCmd.Flags().StringVarP(&image, "image", "i", "alpine", "Image to mount job to") rootCmd.Flags().IntVarP(&containerUser, "container-user", "u", 0, "User ID to run the container as") + rootCmd.Flags().BoolVarP(&readOnly, "read-only", "r", false, "Mount the PVC as read-only") kubeConfigFlags.AddFlags(rootCmd.Flags()) if err := rootCmd.Execute(); err != nil { @@ -141,6 +143,7 @@ Node: node, User: int64(containerUser), Tolerations: tolerationsForNode, + ReadOnly: readOnly, } // Build the Job diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kubectl-browse-pvc-1.4.1/internal/utils/util.go new/kubectl-browse-pvc-1.4.2/internal/utils/util.go --- old/kubectl-browse-pvc-1.4.1/internal/utils/util.go 2026-03-08 03:10:11.000000000 +0100 +++ new/kubectl-browse-pvc-1.4.2/internal/utils/util.go 2026-04-04 05:03:52.000000000 +0200 @@ -15,6 +15,7 @@ Node string User int64 Tolerations []corev1.Toleration + ReadOnly bool } var script = ` @@ -124,6 +125,7 @@ { Name: "target-pvc", MountPath: "/mnt", + ReadOnly: options.ReadOnly, }, }, }, @@ -135,6 +137,7 @@ VolumeSource: corev1.VolumeSource{ PersistentVolumeClaim: &corev1.PersistentVolumeClaimVolumeSource{ ClaimName: options.Pvc.Name, + ReadOnly: options.ReadOnly, }, }, }, ++++++ kubectl-browse-pvc.obsinfo ++++++ --- /var/tmp/diff_new_pack.F9nyMH/_old 2026-04-04 19:09:49.423044582 +0200 +++ /var/tmp/diff_new_pack.F9nyMH/_new 2026-04-04 19:09:49.431044910 +0200 @@ -1,5 +1,5 @@ name: kubectl-browse-pvc -version: 1.4.1 -mtime: 1772935811 -commit: 01eda30d64fcca4e44f105c8ca22e92daf854a29 +version: 1.4.2 +mtime: 1775271832 +commit: 61b597275b44049ccfa6e4a44dc295c0c006f146 ++++++ vendor.tar.gz ++++++ /work/SRC/openSUSE:Factory/kubectl-browse-pvc/vendor.tar.gz /work/SRC/openSUSE:Factory/.kubectl-browse-pvc.new.21863/vendor.tar.gz differ: char 13, line 1
