commit kubernetes1.26 for openSUSE:Factory

2024-07-31 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kubernetes1.26 for openSUSE:Factory 
checked in at 2024-07-31 13:29:36

Comparing /work/SRC/openSUSE:Factory/kubernetes1.26 (Old)
 and  /work/SRC/openSUSE:Factory/.kubernetes1.26.new.7232 (New)


Package is "kubernetes1.26"

Wed Jul 31 13:29:36 2024 rev:15 rq:1190458 version:1.26.15

Changes:

--- /work/SRC/openSUSE:Factory/kubernetes1.26/kubernetes1.26.changes
2024-04-08 17:53:02.135376417 +0200
+++ /work/SRC/openSUSE:Factory/.kubernetes1.26.new.7232/kubernetes1.26.changes  
2024-07-31 13:29:45.992968189 +0200
@@ -1,0 +2,5 @@
+Tue Jul 30 10:47:52 UTC 2024 - Bernhard Wiedemann 
+
+- Add upstream 122680.patch for reproducible builds (boo#1062303)
+
+---

New:

  122680.patch

BETA DEBUG BEGIN:
  New:
- Add upstream 122680.patch for reproducible builds (boo#1062303)
BETA DEBUG END:



Other differences:
--
++ kubernetes1.26.spec ++
--- /var/tmp/diff_new_pack.MY2EvP/_old  2024-07-31 13:29:47.785041784 +0200
+++ /var/tmp/diff_new_pack.MY2EvP/_new  2024-07-31 13:29:47.789041949 +0200
@@ -51,6 +51,8 @@
 Patch5: revert-coredns-image-renaming.patch
 # Patch to advance autoscaling v2 as the preferred API version, to fix 
bsc#1219964, CVE-2024-0793
 Patch6: autoscaling-advance-v2-as-the-preferred-API-version.patch
+# PATCH-FIX-UPSTREAM - make package build reproducible
+Patch7: https://github.com/kubernetes/kubernetes/pull/122680.patch
 BuildRequires:  fdupes
 BuildRequires:  git
 BuildRequires:  go >= 1.21.8
@@ -237,6 +239,7 @@
 %patch -P 4 -p0
 %patch -P 5 -p1
 %patch -P 6 -p1
+%patch -P 7 -p1
 
 %build
 # This is fixing bug bsc#1065972

++ 122680.patch ++
>From f835cddce06d64a610538eb45fc1043b6ddb9d16 Mon Sep 17 00:00:00 2001
From: Tim Hockin 
Date: Tue, 14 Nov 2023 18:57:34 -0800
Subject: [PATCH 1/2] build: use -trimpath in non-DBG mode

---
 hack/lib/golang.sh | 28 +---
 1 file changed, 9 insertions(+), 19 deletions(-)

diff --git a/hack/lib/golang.sh b/hack/lib/golang.sh
index 1ead8597cbcca..5b56c49ed8cc3 100755
--- a/hack/lib/golang.sh
+++ b/hack/lib/golang.sh
@@ -748,7 +748,7 @@ kube::golang::build_binaries_for_platform() {
   done
 
   V=2 kube::log::info "Env for ${platform}: GOOS=${GOOS-} GOARCH=${GOARCH-} 
GOROOT=${GOROOT-} CGO_ENABLED=${CGO_ENABLED-} CC=${CC-}"
-  V=3 kube::log::info "Building binaries with GCFLAGS=${gogcflags} 
ASMFLAGS=${goasmflags} LDFLAGS=${goldflags}"
+  V=3 kube::log::info "Building binaries with GCFLAGS=${gogcflags} 
LDFLAGS=${goldflags}"
 
   local -a build_args
   if [[ "${#statics[@]}" != 0 ]]; then
@@ -756,7 +756,6 @@ kube::golang::build_binaries_for_platform() {
   -installsuffix=static
   ${goflags:+"${goflags[@]}"}
   -gcflags="${gogcflags}"
-  -asmflags="${goasmflags}"
   -ldflags="${goldflags}"
   -tags="${gotags:-}"
 )
@@ -767,7 +766,6 @@ kube::golang::build_binaries_for_platform() {
 build_args=(
   ${goflags:+"${goflags[@]}"}
   -gcflags="${gogcflags}"
-  -asmflags="${goasmflags}"
   -ldflags="${goldflags}"
   -tags="${gotags:-}"
 )
@@ -783,7 +781,6 @@ kube::golang::build_binaries_for_platform() {
 go test -c \
   ${goflags:+"${goflags[@]}"} \
   -gcflags="${gogcflags}" \
-  -asmflags="${goasmflags}" \
   -ldflags="${goldflags}" \
   -tags="${gotags:-}" \
   -o "${outfile}" \
@@ -840,26 +837,19 @@ kube::golang::build_binaries() {
 # These are "local" but are visible to and relied on by functions this
 # function calls.  They are effectively part of the calling API to
 # build_binaries_for_platform.
-local goflags goldflags goasmflags gogcflags gotags
+local goflags goldflags gogcflags gotags
 
-# This is $(pwd) because we use run-in-gopath to build.  Once that is
-# excised, this can become ${KUBE_ROOT}.
-local trimroot # two lines to appease shellcheck SC2155
-trimroot=$(pwd)
-
-goasmflags="all=-trimpath=${trimroot}"
+goflags=()
+gogcflags="${GOGCFLAGS:-}"
+goldflags="all=$(kube::version::ldflags) ${GOLDFLAGS:-}"
 
-gogcflags="all=-trimpath=${trimroot} ${GOGCFLAGS:-}"
 if [[ "${DBG:-}" == 1 ]]; then
 # Debugging - disable optimizations and inlining and trimPath
-gogcflags="${GOGCFLAGS:-} all=-N -l"
-goasmflags=""
-fi
-
-goldflags="all=$(kube::version::ldflags) ${GOLDFLAGS:-}"
-if [[ "${DBG:-}" != 1 ]]; then
-# Not debugging - disable symbols and DWARF.
+gogcflags="${gogcflags} all=-N -l"
+else
+# Not debugging - disable symbols and DWARF, trim embedded paths
 goldflags="${goldflags} 

commit kubernetes1.26 for openSUSE:Factory

2024-04-08 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kubernetes1.26 for openSUSE:Factory 
checked in at 2024-04-08 17:40:35

Comparing /work/SRC/openSUSE:Factory/kubernetes1.26 (Old)
 and  /work/SRC/openSUSE:Factory/.kubernetes1.26.new.1905 (New)


Package is "kubernetes1.26"

Mon Apr  8 17:40:35 2024 rev:14 rq:1166178 version:1.26.15

Changes:

--- /work/SRC/openSUSE:Factory/kubernetes1.26/kubernetes1.26.changes
2024-02-26 19:46:44.520839509 +0100
+++ /work/SRC/openSUSE:Factory/.kubernetes1.26.new.1905/kubernetes1.26.changes  
2024-04-08 17:53:02.135376417 +0200
@@ -1,0 +2,15 @@
+Mon Apr  8 10:39:33 UTC 2024 - Priyanka Saggu 
+
+- update .spec file to set FORCE_HOST_GO env variable,
+  to force k8s build scripts use the local GOTOOLCHAIN version from the build 
pipeline
+  (i.e. GOTOOLCHAIN='auto')
+  * ref: 
https://github.com/kubernetes/kubernetes/blob/9791f0d1f39f3f1e0796add7833c1059325d5098/hack/lib/golang.sh#L507
+
+---
+Mon Apr 08 08:12:59 UTC 2024 - priyanka.sa...@suse.com
+
+- Update to version 1.26.15:
+  * [CVE-2024-24786] Bump github.com/golang/protobuf v1.5.4, 
google.golang.org/protobuf v1.33.0
+  * [go] Bump images, dependencies and versions to go 1.21.8 / 
distroless-iptables to v0.4.6
+
+---

Old:

  kubernetes-1.26.14.tar.xz

New:

  kubernetes-1.26.15.tar.xz



Other differences:
--
++ kubernetes1.26.spec ++
--- /var/tmp/diff_new_pack.uDbNk1/_old  2024-04-08 17:53:02.931405797 +0200
+++ /var/tmp/diff_new_pack.uDbNk1/_new  2024-04-08 17:53:02.935405945 +0200
@@ -22,7 +22,7 @@
 %define baseversionminus1 1.25
 
 Name:   kubernetes%{baseversion}
-Version:1.26.14
+Version:1.26.15
 Release:0
 Summary:Container Scheduling and Management
 License:Apache-2.0
@@ -53,7 +53,7 @@
 Patch6: autoscaling-advance-v2-as-the-preferred-API-version.patch
 BuildRequires:  fdupes
 BuildRequires:  git
-#BuildRequires:  go >= 1.21.7
+BuildRequires:  go >= 1.21.8
 BuildRequires:  go-go-md2man
 BuildRequires:  golang-packaging
 BuildRequires:  rsync
@@ -83,6 +83,13 @@
 
 
 
+
+
+
+
+
+
+
 # packages to build containerized control plane
 
 %package apiserver
@@ -245,6 +252,7 @@
 %endif
 
 #TEST
+export FORCE_HOST_GO=y
 make WHAT="cmd/kube-apiserver cmd/kube-controller-manager cmd/kube-scheduler 
cmd/kube-proxy cmd/kubelet cmd/kubectl cmd/kubeadm" GOFLAGS="-buildmode=pie"
 
 # The majority of the documentation has already been moved into

++ _service ++
--- /var/tmp/diff_new_pack.uDbNk1/_old  2024-04-08 17:53:03.031409488 +0200
+++ /var/tmp/diff_new_pack.uDbNk1/_new  2024-04-08 17:53:03.035409635 +0200
@@ -5,7 +5,7 @@
 .git
 @PARENT_TAG@
 v(.*)
-v1.26.14
+v1.26.15
 enable
   
   

++ _servicedata ++
--- /var/tmp/diff_new_pack.uDbNk1/_old  2024-04-08 17:53:03.059410521 +0200
+++ /var/tmp/diff_new_pack.uDbNk1/_new  2024-04-08 17:53:03.059410521 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/kubernetes/kubernetes.git
-  6db79806d788bfb9cfc996deb7e2e178402e8b50
+  1649f592f1909b97aa3c2a0a8f968a3fd05a7b8b
 (No newline at EOF)
 

++ kubernetes-1.26.14.tar.xz -> kubernetes-1.26.15.tar.xz ++
/work/SRC/openSUSE:Factory/kubernetes1.26/kubernetes-1.26.14.tar.xz 
/work/SRC/openSUSE:Factory/.kubernetes1.26.new.1905/kubernetes-1.26.15.tar.xz 
differ: char 15, line 1

++ kubernetes.obsinfo ++
--- /var/tmp/diff_new_pack.uDbNk1/_old  2024-04-08 17:53:03.163414360 +0200
+++ /var/tmp/diff_new_pack.uDbNk1/_new  2024-04-08 17:53:03.167414508 +0200
@@ -1,5 +1,5 @@
 name: kubernetes
-version: 1.26.14
-mtime: 1707906692
-commit: 6db79806d788bfb9cfc996deb7e2e178402e8b50
+version: 1.26.15
+mtime: 1710377665
+commit: 1649f592f1909b97aa3c2a0a8f968a3fd05a7b8b
 


commit kubernetes1.26 for openSUSE:Factory

2024-02-26 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kubernetes1.26 for openSUSE:Factory 
checked in at 2024-02-26 19:45:50

Comparing /work/SRC/openSUSE:Factory/kubernetes1.26 (Old)
 and  /work/SRC/openSUSE:Factory/.kubernetes1.26.new.1770 (New)


Package is "kubernetes1.26"

Mon Feb 26 19:45:50 2024 rev:13 rq:1151164 version:1.26.14

Changes:

--- /work/SRC/openSUSE:Factory/kubernetes1.26/kubernetes1.26.changes
2024-02-01 18:04:50.789923136 +0100
+++ /work/SRC/openSUSE:Factory/.kubernetes1.26.new.1770/kubernetes1.26.changes  
2024-02-26 19:46:44.520839509 +0100
@@ -1,0 +2,22 @@
+Mon Feb 26 08:34:46 UTC 2024 - Priyanka Saggu 
+
+- add new patch to advance autoscaling v2 as the preferred API version, to fix 
bsc#1219964, CVE-2024-0793
+ * autoscaling-advance-v2-as-the-preferred-API-version.patch 
+
+---
+Mon Feb 26 08:33:49 UTC 2024 - priyanka.sa...@suse.com
+
+- Update to version 1.26.14:
+  * [go] Bump images, dependencies and versions to go 1.21.7 / 
distroless-iptables to v0.4.5
+  * Add processStartTime in metrics/slis
+  * If a pvc has an empty storageclass name, don't try to assign a default 
StorageClass to it.
+
+- Update .spec file to bump go version build requirements:
+  * `BuildRequires:  golang(API) = 1.21`
+
+---
+Thu Feb 22 12:44:16 UTC 2024 - Dominique Leuenberger 
+
+- Use %patch -P N instead of deprecated %patchN.
+
+---

Old:

  kubernetes-1.26.13.tar.xz

New:

  autoscaling-advance-v2-as-the-preferred-API-version.patch
  kubernetes-1.26.14.tar.xz

BETA DEBUG BEGIN:
  New:- add new patch to advance autoscaling v2 as the preferred API version, 
to fix bsc#1219964, CVE-2024-0793
 * autoscaling-advance-v2-as-the-preferred-API-version.patch 
BETA DEBUG END:



Other differences:
--
++ kubernetes1.26.spec ++
--- /var/tmp/diff_new_pack.rccm1L/_old  2024-02-26 19:46:45.956891424 +0100
+++ /var/tmp/diff_new_pack.rccm1L/_new  2024-02-26 19:46:45.956891424 +0100
@@ -22,7 +22,7 @@
 %define baseversionminus1 1.25
 
 Name:   kubernetes%{baseversion}
-Version:1.26.13
+Version:1.26.14
 Release:0
 Summary:Container Scheduling and Management
 License:Apache-2.0
@@ -49,14 +49,16 @@
 Patch4: kubeadm-opensuse-flexvolume.patch
 # Patch to revert renaming of coredns image location to match how it's done on 
download.opensuse.org
 Patch5: revert-coredns-image-renaming.patch
+# Patch to advance autoscaling v2 as the preferred API version, to fix 
bsc#1219964, CVE-2024-0793
+Patch6: autoscaling-advance-v2-as-the-preferred-API-version.patch
 BuildRequires:  fdupes
 BuildRequires:  git
-#BuildRequires:  go >= 1.20.13
+#BuildRequires:  go >= 1.21.7
 BuildRequires:  go-go-md2man
 BuildRequires:  golang-packaging
 BuildRequires:  rsync
 BuildRequires:  systemd-rpm-macros
-BuildRequires:  golang(API) = 1.20
+BuildRequires:  golang(API) = 1.21
 BuildRequires:  golang(github.com/jteeuwen/go-bindata)
 ExcludeArch:%{ix86} s390 ppc64
 
@@ -80,6 +82,7 @@
 
 
 
+
 # packages to build containerized control plane
 
 %package apiserver
@@ -222,10 +225,11 @@
 
 %prep
 %setup -q -n kubernetes-%{version}
-%patch2 -p1
-%patch3 -p1
-%patch4 -p0
-%patch5 -p1
+%patch -P 2 -p1
+%patch -P 3 -p1
+%patch -P 4 -p0
+%patch -P 5 -p1
+%patch -P 6 -p1
 
 %build
 # This is fixing bug bsc#1065972

++ _service ++
--- /var/tmp/diff_new_pack.rccm1L/_old  2024-02-26 19:46:46.016893593 +0100
+++ /var/tmp/diff_new_pack.rccm1L/_new  2024-02-26 19:46:46.020893738 +0100
@@ -5,7 +5,7 @@
 .git
 @PARENT_TAG@
 v(.*)
-v1.26.13
+v1.26.14
 enable
   
   

++ _servicedata ++
--- /var/tmp/diff_new_pack.rccm1L/_old  2024-02-26 19:46:46.036894316 +0100
+++ /var/tmp/diff_new_pack.rccm1L/_new  2024-02-26 19:46:46.040894461 +0100
@@ -1,6 +1,6 @@
 
 
 https://github.com/kubernetes/kubernetes.git
-  7ba444e261616cb572b2c9e3aa6ee8876140f46a
+  6db79806d788bfb9cfc996deb7e2e178402e8b50
 (No newline at EOF)
 

++ autoscaling-advance-v2-as-the-preferred-API-version.patch ++
>From 40a6d6306a2c6c202ab33c3d90178ce19fabf7cf Mon Sep 17 00:00:00 2001
From: SataQiu 
Date: Sun, 11 Dec 2022 13:09:39 +0800
Subject: [PATCH] autoscaling: advance v2 as the preferred API version over v1

---
 pkg/apis/autoscaling/install/install.go | 3 +--
 pkg/controlplane/storageversionhashdata/data.go | 4 ++--
 test/integration/etcd/data.go   | 6 +++---
 3 files changed, 6 insertions(+), 7 deletions(-)

Index: 

commit kubernetes1.26 for openSUSE:Factory

2023-10-27 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kubernetes1.26 for openSUSE:Factory 
checked in at 2023-10-27 22:28:00

Comparing /work/SRC/openSUSE:Factory/kubernetes1.26 (Old)
 and  /work/SRC/openSUSE:Factory/.kubernetes1.26.new.17445 (New)


Package is "kubernetes1.26"

Fri Oct 27 22:28:00 2023 rev:10 rq:1120463 version:1.26.10

Changes:

--- /work/SRC/openSUSE:Factory/kubernetes1.26/kubernetes1.26.changes
2023-10-01 21:22:22.348789145 +0200
+++ /work/SRC/openSUSE:Factory/.kubernetes1.26.new.17445/kubernetes1.26.changes 
2023-10-27 22:28:23.991969265 +0200
@@ -1,0 +2,31 @@
+Thu Oct 26 05:44:41 UTC 2023 - Priyanka Saggu 
+
+- Update .spec file to bump go version build requirements:
+  * `BuildRequires:  go >= 1.20.10`
+- Update to version 1.26.10:
+  * Release commit for Kubernetes v1.26.10
+  * Register UnauthenticatedHTTP2DOSMitigation into kube components
+  * Skip TestUnauthenticatedHTTP2ClientConnectionClose http1 tests
+  * Disable UnauthenticatedHTTP2DOSMitigation by default
+  * Prevent rapid reset http2 DOS on API server
+  * Fix concurrent write when filling PVC labels
+  * Modify test PVC to detect concurrent map write bug
+  * [go] Bump images, dependencies and versions to go 1.20.10
+  * .: bump golang.org/x/net to v0.17.0
+  * Add nil checks for hpa object target type values
+  * Mark a volume as uncertain-attached after detach error
+  * [go] Bump images, versions and deps to use Go 1.20.9
+  * bump etcd cluster image to 3.5.9
+  * cronjob controller: ensure already existing jobs are added to Active list 
of cronjobs
+  * change rolling update logic to exclude sunsetting nodes
+  * vsphere: adapt to govmomi bump
+  * .: bump govmomi to v0.30.6
+  * Increase range of job_sync_duration_seconds
+  * sync Service API status rest storage
+  * scheduler: start scheduling attempt with clean UnschedulablePlugins
+  * updating dependencies.yaml for etcd v3.5.9 version
+  * use upstream etcd github path instead of redirecting one
+  * update etcd version in install.sh to 3.5.9
+  * move check for noop managed field timestamp updates
+
+---

Old:

  kubernetes-1.26.9.tar.xz

New:

  kubernetes-1.26.10.tar.xz



Other differences:
--
++ kubernetes1.26.spec ++
--- /var/tmp/diff_new_pack.ccG1bQ/_old  2023-10-27 22:28:24.916003155 +0200
+++ /var/tmp/diff_new_pack.ccG1bQ/_new  2023-10-27 22:28:24.916003155 +0200
@@ -22,7 +22,7 @@
 %define baseversionminus1 1.25
 
 Name:   kubernetes%{baseversion}
-Version:1.26.9
+Version:1.26.10
 Release:0
 Summary:Container Scheduling and Management
 License:Apache-2.0
@@ -51,7 +51,7 @@
 Patch5: revert-coredns-image-renaming.patch
 BuildRequires:  fdupes
 BuildRequires:  git
-BuildRequires:  go >= 1.20.8
+BuildRequires:  go >= 1.20.10
 BuildRequires:  go-go-md2man
 BuildRequires:  golang-packaging
 BuildRequires:  rsync
@@ -80,6 +80,7 @@
 
 
 # packages to build containerized control plane
+
 %package apiserver
 Summary:Kubernetes apiserver for container image
 Group:  System/Management

++ _service ++
--- /var/tmp/diff_new_pack.ccG1bQ/_old  2023-10-27 22:28:24.976005356 +0200
+++ /var/tmp/diff_new_pack.ccG1bQ/_new  2023-10-27 22:28:24.980005502 +0200
@@ -5,7 +5,7 @@
 .git
 @PARENT_TAG@
 v(.*)
-v1.26.9
+v1.26.10
 enable
   
   

++ _servicedata ++
--- /var/tmp/diff_new_pack.ccG1bQ/_old  2023-10-27 22:28:24.996006089 +0200
+++ /var/tmp/diff_new_pack.ccG1bQ/_new  2023-10-27 22:28:25.06236 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/kubernetes/kubernetes.git
-  d1483fdf7a0578c83523bc1e2212a606a44fd71d
+  b8609d4dd75c5d6fba4a5eaa63a5507cb39a6e99
 (No newline at EOF)
 

++ kubernetes-1.26.9.tar.xz -> kubernetes-1.26.10.tar.xz ++
/work/SRC/openSUSE:Factory/kubernetes1.26/kubernetes-1.26.9.tar.xz 
/work/SRC/openSUSE:Factory/.kubernetes1.26.new.17445/kubernetes-1.26.10.tar.xz 
differ: char 15, line 1

++ kubernetes.obsinfo ++
--- /var/tmp/diff_new_pack.ccG1bQ/_old  2023-10-27 22:28:25.088009463 +0200
+++ /var/tmp/diff_new_pack.ccG1bQ/_new  2023-10-27 22:28:25.096009757 +0200
@@ -1,5 +1,5 @@
 name: kubernetes
-version: 1.26.9
-mtime: 1694604325
-commit: d1483fdf7a0578c83523bc1e2212a606a44fd71d
+version: 1.26.10
+mtime: 1697628815
+commit: b8609d4dd75c5d6fba4a5eaa63a5507cb39a6e99
 


commit kubernetes1.26 for openSUSE:Factory

2023-10-01 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kubernetes1.26 for openSUSE:Factory 
checked in at 2023-10-01 21:22:00

Comparing /work/SRC/openSUSE:Factory/kubernetes1.26 (Old)
 and  /work/SRC/openSUSE:Factory/.kubernetes1.26.new.28202 (New)


Package is "kubernetes1.26"

Sun Oct  1 21:22:00 2023 rev:9 rq:1112623 version:1.26.9

Changes:

--- /work/SRC/openSUSE:Factory/kubernetes1.26/kubernetes1.26.changes
2023-08-03 17:27:54.299081391 +0200
+++ /work/SRC/openSUSE:Factory/.kubernetes1.26.new.28202/kubernetes1.26.changes 
2023-10-01 21:22:22.348789145 +0200
@@ -1,0 +2,80 @@
+Wed Sep 20 18:00:04 UTC 2023 - Priyanka Saggu 
+
+- fixes for bsc#1214406
+- update `Wants` directive in [Unit] section of `kubelet.service`:
+  * add: `containerd.service`
+  * remove: `docker.service`
+- updating container runtime prerequisites:
+  (Refer: 
k8s.io/docs/setup/production-environment/container-runtimes/#install-and-configure-prerequisites)
+  * update `90-kubeadm.conf` to add below iptables rules:
+- net.bridge.bridge-nf-call-iptables = 1
+- net.bridge.bridge-nf-call-ip6tables = 1
+  * update `kubeadm.conf` to add `overlay` kernel module
+  * update .spec file to:
+- add post-installation scriptlet for `kubeadm` package to enable iptables 
rules defined in `90-kubeadm.conf` using sysctl
+- add conditional checks to load kernel modules (br_netfilter, overlay) in 
`kubelet-common` package post-installation scriptlet
+- update `kubelet-common` post scriptlet to correctly update `KUBELET_VER` 
var in `/etc/sysconfig/kubelet` file based on fillup template
+- add below to `kubelet` subpackage to recommend installing correct version of 
package providing `kubernetes-kubelet-common` :
+  * `Recommends: kubernetes-kubelet-common = %{version}`
+- add below to `kubeadm` subpackage to recommend installing correct version of 
`kubelet` and `kubelet-common` packages:
+  * `Recommends: kubernetes%{baseversion}-kubelet`
+
+---
+Wed Sep 20 09:25:03 UTC 2023 - priyanka.sa...@suse.com
+
+- Update .spec file to bump go version build requirements:
+  * `BuildRequires:  go >= 1.20.8`
+- Update to version 1.26.9:
+  * Release commit for Kubernetes v1.26.9
+  * [go] Bump images, versions and deps to use Go 1.20.8
+  * Automated cherry pick of #119776: Fix a job quota related deadlock 
(#120321)
+  * TopologyAwareHints: Take lock in HasPopulatedHints
+  * Mark Job onPodConditions as optional in pod failure policy
+  * Update CHANGELOG/CHANGELOG-1.26.md for v1.26.8
+  * Incorporating feedback on 119341
+  * check for overflow
+  * Fix CEL cost handling of zero length replacement strings
+  * generate ReportingInstance and ReportingController in Event
+  * Pass Pinned field to kubecontainer.Image
+  * update otelhttp to v0.35.1
+  * prep for go1.21: use -e in go list
+  * Skip apiserver_admission_webhook_request_total during context-canceled
+  * Ignore context canceled from validate and mutate webhook failopen metric
+  * kubeadm: fix nil pointer when etcd member is already removed
+  * update to golangci-lint v1.54.1 + go-ruleguard v0.4.0
+  * fix: when PreFilter returns UnschedulableAndUnresolvable, copy the state 
in all nodes in statusmap
+  * Issue 4230: remove readiness check for cache exclusion
+  * run dummy command return status 0
+  * unit test not requiring priviledge
+  * Revert "Revert #114605: its unit test requires root permission"
+  * node: devicemgr: topomgr: add logs
+  * e2e: node: add test to check device-requiring pods are cleaned up
+  * e2e: node: devices: improve the node reboot test
+  * e2e: node: devicemanager: update tests
+  * kubelet: devices: skip allocation for running pods
+  * Add test coverage of result size of string operations
+  * Bump cel-go to v0.12.7
+
+---
+Tue Sep 12 12:24:26 UTC 2023 - priyanka.sa...@suse.com
+
+- Update .spec file to bump go version build requirements:
+  * `BuildRequires:  go >= 1.20.7`
+- Update to version 1.26.8:
+  * Release commit for Kubernetes v1.26.8
+  * Use environment varaibles for parameters in Powershell
+  * Use env varaibles for passing path
+  * Avoid returning nil responseKind in v1beta1 aggregated discovery
+  * [release-1.26] releng/go: Bump images, versions and deps to use Go 1.20.7 
and update protoc
+  * e2e_node: move getSampleDevicePluginPod to device_plugin_test.go
+  * fix 'pod' in kubelet prober metrics
+  * priority & fairness: support dynamically configuring work estimator max 
seats
+  * events: fix EventSeries starting count discrepancy
+  * tools/events: fix data race when emitting series
+  * tools/events: retry on AlreadyExist for Series
+  * kubeadm: backdate generated CAs by 5 minutes
+  * 

commit kubernetes1.26 for openSUSE:Factory

2023-08-03 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kubernetes1.26 for openSUSE:Factory 
checked in at 2023-08-03 17:27:53

Comparing /work/SRC/openSUSE:Factory/kubernetes1.26 (Old)
 and  /work/SRC/openSUSE:Factory/.kubernetes1.26.new.22712 (New)


Package is "kubernetes1.26"

Thu Aug  3 17:27:53 2023 rev:8 rq:1102002 version:1.26.7

Changes:

--- /work/SRC/openSUSE:Factory/kubernetes1.26/kubernetes1.26.changes
2023-07-27 16:51:51.874172277 +0200
+++ /work/SRC/openSUSE:Factory/.kubernetes1.26.new.22712/kubernetes1.26.changes 
2023-08-03 17:27:54.299081391 +0200
@@ -1,0 +2,5 @@
+Tue Aug  1 12:55:16 UTC 2023 - Egbert Eich 
+
+- Restore the correct content of the  kublet wrapper script (boo#1213829).
+
+---



Other differences:
--
++ kubernetes1.26.spec ++
--- /var/tmp/diff_new_pack.7KRMMo/_old  2023-08-03 17:27:56.447094390 +0200
+++ /var/tmp/diff_new_pack.7KRMMo/_new  2023-08-03 17:27:56.451094415 +0200
@@ -76,6 +76,7 @@
 
 
 # packages to build containerized control plane
+
 %package apiserver
 Summary:Kubernetes apiserver for container image
 Group:  System/Management

++ kubelet.sh ++
--- /var/tmp/diff_new_pack.7KRMMo/_old  2023-08-03 17:27:56.571095141 +0200
+++ /var/tmp/diff_new_pack.7KRMMo/_new  2023-08-03 17:27:56.575095165 +0200
@@ -1,85 +1,13 @@
-MDSFORMANPAGES="kube-apiserver.md kube-controller-manager.md kube-proxy.md 
kube-scheduler.md kubelet.md"
-
-# remove comments from man pages
-for manpage in ${MDSFORMANPAGES}; do
-  pos=$(grep -n "<\!-- END MUNGE: UNVERSIONED_WARNING -->" ${manpage} | cut 
-d':' -f1)
-  if [ -n ${pos} ]; then
-sed -i "1,${pos}{/.*/d}" ${manpage}
-  fi
-done
-
-# for each man page add NAME and SYNOPSIS section
-# kube-apiserver
-sed -i -s "s/## kube-apiserver/# NAME\nkube-apiserver \- Provides the API for 
kubernetes orchestration.\n\n# SYNOPSIS\n**kube-apiserver** [OPTIONS]\n/" 
kube-apiserver.md
-
-cat << 'EOF' >> kube-apiserver.md
-# EXAMPLES
-```
-/usr/bin/kube-apiserver --logtostderr=true --v=0 
--etcd_servers=http://127.0.0.1:4001 --insecure_bind_address=127.0.0.1 
--insecure_port=8080 --kubelet_port=10250 
--service-cluster-ip-range=10.1.1.0/24 --allow_privileged=false
-```
-EOF
-# kube-controller-manager
-sed -i -s "s/## kube-controller-manager/# NAME\nkube-controller-manager \- 
Enforces kubernetes services.\n\n# SYNOPSIS\n**kube-controller-manager** 
[OPTIONS]\n/" kube-controller-manager.md
-
-cat << 'EOF' >> kube-controller-manager.md
-# EXAMPLES
-```
-/usr/bin/kube-controller-manager --logtostderr=true --v=0 
--master=127.0.0.1:8080
-```
-EOF
-# kube-proxy
-sed -i -s "s/## kube-proxy/# NAME\nkube-proxy \- Provides network proxy 
services.\n\n# SYNOPSIS\n**kube-proxy** [OPTIONS]\n/" kube-proxy.md
-
-cat << 'EOF' >> kube-proxy.md
-# EXAMPLES
-```
-/usr/bin/kube-proxy --logtostderr=true --v=0 --master=http://127.0.0.1:8080
-```
-EOF
-# kube-scheduler
-sed -i -s "s/## kube-scheduler/# NAME\nkube-scheduler \- Schedules containers 
on hosts.\n\n# SYNOPSIS\n**kube-scheduler** [OPTIONS]\n/" kube-scheduler.md
-
-cat << 'EOF' >> kube-scheduler.md
-# EXAMPLES
-```
-/usr/bin/kube-scheduler --logtostderr=true --v=0 --master=127.0.0.1:8080
-```
-EOF
-# kubelet
-sed -i -s "s/## kubelet/# NAME\nkubelet \- Processes a container manifest so 
the containers are launched according to how they are described.\n\n# 
SYNOPSIS\n**kubelet** [OPTIONS]\n/" kubelet.md
-
-cat << 'EOF' >> kubelet.md
-# EXAMPLES
-```
-/usr/bin/kubelet --logtostderr=true --v=0 --api_servers=http://127.0.0.1:8080 
--address=127.0.0.1 --port=10250 --hostname_override=127.0.0.1 
--allow-privileged=false
-```
-EOF
-
-# for all man-pages
-for md in $MDSFORMANPAGES; do
-   # correct section names
-   sed -i -s "s/### Synopsis/# DESCRIPTION/" $md
-   sed -i -s "s/### Options/# OPTIONS/" $md
-   # add header
-   sed -i "s/# NAME/% KUBERNETES(1) kubernetes User Manuals\n# NAME/" $md
-   # modify list of options
-   # options with no value in ""
-   sed -i -r 's/(^  )(-[^":][^":]*)(:)(.*)/\*\*\2\*\*\n\t\4\n/' $md
-   # option with value in ""
-   sed -i -r 's/(^  
)(-[^":][^":]*)("[^"]*")(:)(.*)/\*\*\2\3\*\*\n\t\5\n/' $md
-   # options in -s, --long
-   sed -i -r 's/(^  )(-[a-z], -[^":][^":]*)(:)(.*)/\*\*\2\*\*\n\t\4\n/' $md
-   sed -i -r 's/(^  )(-[a-z], 
-[^":][^":]*)("[^"]*")(:)(.*)/\*\*\2\3\*\*\n\t\5\n/' $md
-   # remove ```
-   sed -i 's/```//' $md
-   # remove all lines starting with ##
-   sed -i 's/^##.*//' $md
-   # modify footer
-   sed -i -r "s/^\[!\[Analytics\].*//" $md
-   # md does not contain section => taking 1
-   

commit kubernetes1.26 for openSUSE:Factory

2023-07-27 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kubernetes1.26 for openSUSE:Factory 
checked in at 2023-07-27 16:51:25

Comparing /work/SRC/openSUSE:Factory/kubernetes1.26 (Old)
 and  /work/SRC/openSUSE:Factory/.kubernetes1.26.new.32662 (New)


Package is "kubernetes1.26"

Thu Jul 27 16:51:25 2023 rev:7 rq:1100843 version:1.26.7

Changes:

--- /work/SRC/openSUSE:Factory/kubernetes1.26/kubernetes1.26.changes
2023-06-21 22:40:48.966716717 +0200
+++ /work/SRC/openSUSE:Factory/.kubernetes1.26.new.32662/kubernetes1.26.changes 
2023-07-27 16:51:51.874172277 +0200
@@ -1,0 +2,34 @@
+Wed Jul 26 10:50:38 UTC 2023 - Priyanka Saggu 
+
+- Update: `BuildRequires:  go >= 1.20.6`
+- Update: `BuildRequires:  golang(API) = 1.20`
+
+- Update to version 1.26.7:
+  * [release-1.26] releng/go: Bump images, versions and deps to use Go 1.20.6
+  * Fix the converts an empty string to nil.
+  * Add unit tests for parallel StatefulSet create & delete
+  * Parallel StatefulSet pod create & delete
+  * Refactor StatefulSet controller update logic
+  * Only declare job as finished after removing all finalizers
+  * Cherry pick of #118716 upstream release 1.26 (#118912)
+  * Hide numberOfMissedSchedules as an algorithm internal number
+  * Update schedule logic to properly calculate missed schedules
+  * kubeadm: set priority for "system-node-critical" Pods
+  * Automated cherry pick of #118805: test comment should match the code in 
podgc (#118914)
+  * call ./hack/update-vendor.sh
+  * kubeadm: remove function pointer comparison in phase test
+  * Make etcd component status consistent with health probes
+  * Fix deadlock in ready test
+  * fix the existing problem (0 SerialNumber in all certificate) as part of 
this PR in a separate commit
+  * update serial number to a valid non-zero number in ca certificate
+  * deps: Bump to cAdvisor v0.46.1
+  * AWS: fix code for picking region from zone
+  * Fix the git-repo test error caused by the correct use of loop variables
+  * dra scheduler plugin test: fix loopvar bug and "reserve" expected data
+  * don't process unsupported loadbalancers with mixed protocols
+  * make MixedProtocolNotSupported public
+  * Add node check to vSphere cloud provider
+  * Set permissions on volume before publishing update
+  * Adding additional validations to queried endpoint list iteration.
+
+---

Old:

  kubernetes-1.26.6.tar.xz

New:

  kubernetes-1.26.7.tar.xz



Other differences:
--
++ kubernetes1.26.spec ++
--- /var/tmp/diff_new_pack.Ym5r3A/_old  2023-07-27 16:51:55.314191713 +0200
+++ /var/tmp/diff_new_pack.Ym5r3A/_new  2023-07-27 16:51:55.318191736 +0200
@@ -22,7 +22,7 @@
 %define baseversionminus1 1.25
 
 Name:   kubernetes%{baseversion}
-Version:1.26.6
+Version:1.26.7
 Release:0
 Summary:Container Scheduling and Management
 License:Apache-2.0
@@ -51,12 +51,12 @@
 Patch5: revert-coredns-image-renaming.patch
 BuildRequires:  fdupes
 BuildRequires:  git
-BuildRequires:  go >= 1.19.10
+BuildRequires:  go >= 1.20.6
 BuildRequires:  go-go-md2man
 BuildRequires:  golang-packaging
 BuildRequires:  rsync
 BuildRequires:  systemd-rpm-macros
-BuildRequires:  golang(API) = 1.19
+BuildRequires:  golang(API) = 1.20
 BuildRequires:  golang(github.com/jteeuwen/go-bindata)
 ExcludeArch:%{ix86} s390 ppc64
 
@@ -74,8 +74,8 @@
 
 
 
-# packages to build containerized control plane
 
+# packages to build containerized control plane
 %package apiserver
 Summary:Kubernetes apiserver for container image
 Group:  System/Management

++ _service ++
--- /var/tmp/diff_new_pack.Ym5r3A/_old  2023-07-27 16:51:55.406192233 +0200
+++ /var/tmp/diff_new_pack.Ym5r3A/_new  2023-07-27 16:51:55.414192278 +0200
@@ -5,7 +5,7 @@
 .git
 @PARENT_TAG@
 v(.*)
-v1.26.6
+v1.26.7
 enable
   
   

++ _servicedata ++
--- /var/tmp/diff_new_pack.Ym5r3A/_old  2023-07-27 16:51:55.434192391 +0200
+++ /var/tmp/diff_new_pack.Ym5r3A/_new  2023-07-27 16:51:55.438192414 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/kubernetes/kubernetes.git
-  11902a838028edef305dfe2f96be929bc4d114d8
+  84e1fc493a47446df2e155e70fca768d2653a398
 (No newline at EOF)
 

++ kubernetes-1.26.6.tar.xz -> kubernetes-1.26.7.tar.xz ++
/work/SRC/openSUSE:Factory/kubernetes1.26/kubernetes-1.26.6.tar.xz 
/work/SRC/openSUSE:Factory/.kubernetes1.26.new.32662/kubernetes-1.26.7.tar.xz 
differ: char 15, line 1

++ kubernetes.obsinfo ++
--- /var/tmp/diff_new_pack.Ym5r3A/_old  2023-07-27 16:51:55.590193272 +0200
+++ /var/tmp/diff_new_pack.Ym5r3A/_new  

commit kubernetes1.26 for openSUSE:Factory

2023-06-21 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kubernetes1.26 for openSUSE:Factory 
checked in at 2023-06-21 22:39:33

Comparing /work/SRC/openSUSE:Factory/kubernetes1.26 (Old)
 and  /work/SRC/openSUSE:Factory/.kubernetes1.26.new.15902 (New)


Package is "kubernetes1.26"

Wed Jun 21 22:39:33 2023 rev:6 rq:1094264 version:1.26.6

Changes:

--- /work/SRC/openSUSE:Factory/kubernetes1.26/kubernetes1.26.changes
2023-06-12 15:27:45.679516969 +0200
+++ /work/SRC/openSUSE:Factory/.kubernetes1.26.new.15902/kubernetes1.26.changes 
2023-06-21 22:40:48.966716717 +0200
@@ -1,0 +2,23 @@
+Wed Jun 21 04:55:08 UTC 2023 - Priyanka Saggu 
+
+- Update: `BuildRequires:  go >= 1.19.10`
+- Update to version 1.26.6:
+  * Release commit for Kubernetes v1.26.6
+  * update-vendor: update vendored go.sums
+  * [release-1.26] releng/go: Update images, dependencies and version to Go 
1.19.10
+  * kube-proxy avoid race condition using LocalModeNodeCIDR
+  * Add ephemeralcontainer to imagepolicy securityaccount admission plugin
+  * Add DisruptionTarget condition when preempting for critical pod
+  * update webhook test to go 1.21
+  * Test APIService safe handling at startup
+  * Fix waiting for CRD sync at server start
+  * kubeadm: fix a bug where the static pod changes detection logic is 
inconsistent with kubelet
+  * kubeadm: Make etcd member removal idempotent
+  * kubeadm: Add etcd client unit tests
+  * kubeadm: Use internal etcd client through an interface
+  * run update-vendor.sh
+  * vclib: Modify x509.UnknownAuthorityError unwrap check
+  * vsphere: Adapt to govmomi version bumps
+  * *: Bump version of vmware/govmomi
+
+---

Old:

  kubernetes-1.26.5.tar.xz

New:

  kubernetes-1.26.6.tar.xz



Other differences:
--
++ kubernetes1.26.spec ++
--- /var/tmp/diff_new_pack.LsOr1k/_old  2023-06-21 22:40:50.786727671 +0200
+++ /var/tmp/diff_new_pack.LsOr1k/_new  2023-06-21 22:40:50.790727694 +0200
@@ -22,7 +22,7 @@
 %define baseversionminus1 1.25
 
 Name:   kubernetes%{baseversion}
-Version:1.26.5
+Version:1.26.6
 Release:0
 Summary:Container Scheduling and Management
 License:Apache-2.0
@@ -51,7 +51,7 @@
 Patch5: revert-coredns-image-renaming.patch
 BuildRequires:  fdupes
 BuildRequires:  git
-BuildRequires:  go >= 1.19.9
+BuildRequires:  go >= 1.19.10
 BuildRequires:  go-go-md2man
 BuildRequires:  golang-packaging
 BuildRequires:  rsync
@@ -69,6 +69,7 @@
 
 
 
+
 
 
 

++ _service ++
--- /var/tmp/diff_new_pack.LsOr1k/_old  2023-06-21 22:40:50.850728055 +0200
+++ /var/tmp/diff_new_pack.LsOr1k/_new  2023-06-21 22:40:50.850728055 +0200
@@ -5,7 +5,7 @@
 .git
 @PARENT_TAG@
 v(.*)
-v1.26.5
+v1.26.6
 enable
   
   

++ _servicedata ++
--- /var/tmp/diff_new_pack.LsOr1k/_old  2023-06-21 22:40:50.870728176 +0200
+++ /var/tmp/diff_new_pack.LsOr1k/_new  2023-06-21 22:40:50.870728176 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/kubernetes/kubernetes.git
-  890a139214b4de1f01543d15003b5bda71aae9c7
+  11902a838028edef305dfe2f96be929bc4d114d8
 (No newline at EOF)
 

++ kubernetes-1.26.5.tar.xz -> kubernetes-1.26.6.tar.xz ++
/work/SRC/openSUSE:Factory/kubernetes1.26/kubernetes-1.26.5.tar.xz 
/work/SRC/openSUSE:Factory/.kubernetes1.26.new.15902/kubernetes-1.26.6.tar.xz 
differ: char 15, line 1

++ kubernetes.obsinfo ++
--- /var/tmp/diff_new_pack.LsOr1k/_old  2023-06-21 22:40:50.986728874 +0200
+++ /var/tmp/diff_new_pack.LsOr1k/_new  2023-06-21 22:40:50.990728898 +0200
@@ -1,5 +1,5 @@
 name: kubernetes
-version: 1.26.5
-mtime: 1684332529
-commit: 890a139214b4de1f01543d15003b5bda71aae9c7
+version: 1.26.6
+mtime: 1686736146
+commit: 11902a838028edef305dfe2f96be929bc4d114d8
 


commit kubernetes1.26 for openSUSE:Factory

2023-06-12 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kubernetes1.26 for openSUSE:Factory 
checked in at 2023-06-12 15:26:53

Comparing /work/SRC/openSUSE:Factory/kubernetes1.26 (Old)
 and  /work/SRC/openSUSE:Factory/.kubernetes1.26.new.15902 (New)


Package is "kubernetes1.26"

Mon Jun 12 15:26:53 2023 rev:5 rq:1092438 version:1.26.5

Changes:

--- /work/SRC/openSUSE:Factory/kubernetes1.26/kubernetes1.26.changes
2023-04-13 17:02:40.791562510 +0200
+++ /work/SRC/openSUSE:Factory/.kubernetes1.26.new.15902/kubernetes1.26.changes 
2023-06-12 15:27:45.679516969 +0200
@@ -1,0 +2,48 @@
+Mon Jun 12 05:04:12 UTC 2023 - Priyanka Saggu 
+
+- Update BuildRequires:  `go >= 1.19.9`
+- Update to version 1.26.5:
+  * Release commit for Kubernetes v1.26.5
+  * benchmark test to evaluate the overhead of podMatchesScopeFunc
+  * Fix incorrect calculation for ResourceQuota with PriorityClass as its scope
+  * Update podFailurePolicy comments from alpha-level to beta
+  * releng/go: Update images, dependencies and version to Go 1.19.9
+  * Kube-proxy/ipvs: accept access to healthCheckNodePort on LbIP
+  * node: device-plugin: e2e: Additional test cases
+  * node: device-plugin: add node reboot test scenario
+  * node: device-plugin: e2e: Capture pod admission failure
+  * node: device-mgr: e2e: adapt to sample device plugin refactoring
+  * node: device-mgr: e2e: Update the e2e test to reproduce issue:109595
+  * node: device-mgr: e2e: Implement End to end test
+  * node: device-mgr: Handle recovery by checking if healthy devices exist
+  * node: device-plugin: e2e: Add test case for kubelet restart
+  * node: device-plugin: e2e: Provide sleep intervals via constants
+  * node: device-plugin: e2e: Update test description to make it explicit
+  * node: device-plugin: e2e: Isolate test to pod restart scenario
+  * node: device-plugin: e2e: Annotate device check with error message
+  * node: device-plugins: e2e: s/devLen/expectedSampleDevsAmount
+  * node: device-plugins: e2e: Refactor parse log to return string and error
+  * test: Fix path to e2e node sample device plugin
+  * node: device-mgr: sample device plugin: manifest to avoid registration
+  * node: device-mgr: sample device plugin: control registration process
+  * e2e: node: unify sample device plugin utilities
+  * Bump runc go module v1.1.4 -> v1.1.6
+  * Use absolute path instead requestURI in openapiv3 discovery
+  * Correct the changelog for GlusterFS removal in 1.26.
+  * Refactors discovery content-type and helper functions
+  * Fix directory mismatch for `volume.SetVolumeOwnership()`
+  * Investigate and fix the handling of Succeeded pods in DaemonSet
+  * KCCM: add providerID predicate to service controller
+  * add log includes pod preemption details
+  * fix: the volume is not detached after the pod and PVC objects are deleted
+  * use case-insensitive header keys for http probes
+  * kube-aggregator: correctly use client-go TLS cache with custom dialer
+  * Do not look at VPC-related resources outside the cluster's network
+  * Bump konnectivity-client to 0.0.37
+  * kubelet: Do not mutate pods in the pod manager
+  * Fix azure disk e2e after migration
+  * Return error for localhost seccomp type with no localhost profile defined
+  * Bump the timeout for volume expansion
+  * Wait for pod to be running before expanding
+
+---

Old:

  kubernetes-1.26.4.tar.xz

New:

  kubernetes-1.26.5.tar.xz



Other differences:
--
++ kubernetes1.26.spec ++
--- /var/tmp/diff_new_pack.BHPeGm/_old  2023-06-12 15:27:48.643534505 +0200
+++ /var/tmp/diff_new_pack.BHPeGm/_new  2023-06-12 15:27:48.647534528 +0200
@@ -22,7 +22,7 @@
 %define baseversionminus1 1.25
 
 Name:   kubernetes%{baseversion}
-Version:1.26.4
+Version:1.26.5
 Release:0
 Summary:Container Scheduling and Management
 License:Apache-2.0
@@ -51,7 +51,7 @@
 Patch5: revert-coredns-image-renaming.patch
 BuildRequires:  fdupes
 BuildRequires:  git
-BuildRequires:  go >= 1.19.8
+BuildRequires:  go >= 1.19.9
 BuildRequires:  go-go-md2man
 BuildRequires:  golang-packaging
 BuildRequires:  rsync
@@ -74,6 +74,7 @@
 
 
 # packages to build containerized control plane
+
 %package apiserver
 Summary:Kubernetes apiserver for container image
 Group:  System/Management

++ _service ++
--- /var/tmp/diff_new_pack.BHPeGm/_old  2023-06-12 15:27:48.723534978 +0200
+++ /var/tmp/diff_new_pack.BHPeGm/_new  2023-06-12 15:27:48.731535026 +0200
@@ -5,7 +5,7 @@
 .git
 @PARENT_TAG@
 v(.*)
-v1.26.4
+v1.26.5
 enable
   
   

++ _servicedata ++
--- 

commit kubernetes1.26 for openSUSE:Factory

2023-04-13 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kubernetes1.26 for openSUSE:Factory 
checked in at 2023-04-13 17:02:34

Comparing /work/SRC/openSUSE:Factory/kubernetes1.26 (Old)
 and  /work/SRC/openSUSE:Factory/.kubernetes1.26.new.19717 (New)


Package is "kubernetes1.26"

Thu Apr 13 17:02:34 2023 rev:4 rq:1079128 version:1.26.4

Changes:

--- /work/SRC/openSUSE:Factory/kubernetes1.26/kubernetes1.26.changes
2023-03-30 22:51:12.680556913 +0200
+++ /work/SRC/openSUSE:Factory/.kubernetes1.26.new.19717/kubernetes1.26.changes 
2023-04-13 17:02:40.791562510 +0200
@@ -1,0 +2,30 @@
+Thu Apr 13 11:02:02 UTC 2023 - Priyanka Saggu 
+
+- Update to version 1.26.4:
+  * Release commit for Kubernetes v1.26.4
+  * releng/go: Update images, dependencies and version to Go 1.19.8
+  * Drop development dependencies from test targets
+  * Clear front proxy headers after authentication is complete
+  * Make prerelease tag optional in CI versions
+  * Annotate CI version regexes
+  * Drop unused regex grouping
+  * Delete unused version regex function
+  * kubelet: Fix fs quota monitoring on volumes
+  * fsquota: only generate pod uuid is nil
+  * Preserve UID/ResourceVersion in the BindingREST endpoint
+  * Add integration test for DefaultBinder
+  * API-initiated eviction: handle deleteOptions correctly
+  * Change where transformers are called.
+  * Aggregated discovery resilient to nil GVK
+  * wait again on pending state
+  * cacher allow context cancellation if not ready
+  * Unlock CSIMigrationvSphere feature gate until there is a supported vSphere 
CSI driver available
+  * Route controller should update routes with NodeIP changed When a node 
reboots or kubelet restarts, it is possible that its IP is changed. In this 
case, node route should be updated with the correct IP. In this PR, it checks 
if the IP in an existing route is the same as the actual one. If not, it marks 
it as "update" so the old route will be deleted and a new one will be created. 
There's a new field EnableNodeAddresses, which is a feature gate for specific 
cloud providers to enable after they update their cloud provider code for 
CreateRoute().
+  * client-go/cache: update Replace comment to be more clear
+  * client-go/cache: rewrite Replace to check queue first
+  * client-go/cache: merge ReplaceMakesDeletionsForObjectsInQueue tests
+  * client-go/cache: fix missing delete event on replace without knownObjects
+  * client-go/cache: fix missing delete event on replace
+  * CHANGELOG-1.26: move OpenStack in-tree provider removal to urgent notes
+
+---

Old:

  kubernetes-1.26.3.tar.xz

New:

  kubernetes-1.26.4.obscpio
  kubernetes-1.26.4.tar.xz



Other differences:
--
++ kubernetes1.26.spec ++
--- /var/tmp/diff_new_pack.lSwFai/_old  2023-04-13 17:02:42.883575019 +0200
+++ /var/tmp/diff_new_pack.lSwFai/_new  2023-04-13 17:02:42.887575043 +0200
@@ -22,7 +22,7 @@
 %define baseversionminus1 1.25
 
 Name:   kubernetes%{baseversion}
-Version:1.26.3
+Version:1.26.4
 Release:0
 Summary:Container Scheduling and Management
 License:Apache-2.0
@@ -51,7 +51,7 @@
 Patch5: revert-coredns-image-renaming.patch
 BuildRequires:  fdupes
 BuildRequires:  git
-BuildRequires:  go >= 1.19.7
+BuildRequires:  go >= 1.19.8
 BuildRequires:  go-go-md2man
 BuildRequires:  golang-packaging
 BuildRequires:  rsync
@@ -71,8 +71,9 @@
 
 
 
-# packages to build containerized control plane
 
+
+# packages to build containerized control plane
 %package apiserver
 Summary:Kubernetes apiserver for container image
 Group:  System/Management

++ _service ++
--- /var/tmp/diff_new_pack.lSwFai/_old  2023-04-13 17:02:42.943575377 +0200
+++ /var/tmp/diff_new_pack.lSwFai/_new  2023-04-13 17:02:42.947575401 +0200
@@ -5,7 +5,7 @@
 .git
 @PARENT_TAG@
 v(.*)
-v1.26.3
+v1.26.4
 enable
   
   

++ _servicedata ++
--- /var/tmp/diff_new_pack.lSwFai/_old  2023-04-13 17:02:42.963575497 +0200
+++ /var/tmp/diff_new_pack.lSwFai/_new  2023-04-13 17:02:42.967575521 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/kubernetes/kubernetes.git
-  9e644106593f3f4aa98f8a84b23db5fa378900bd
+  f89670c3aa4059d6999cb42e23ccb4f0b9a03979
 (No newline at EOF)
 

++ kubernetes-1.26.3.tar.xz -> kubernetes-1.26.4.tar.xz ++
/work/SRC/openSUSE:Factory/kubernetes1.26/kubernetes-1.26.3.tar.xz 
/work/SRC/openSUSE:Factory/.kubernetes1.26.new.19717/kubernetes-1.26.4.tar.xz 
differ: char 15, line 1

++ kubernetes.obsinfo ++
--- /var/tmp/diff_new_pack.lSwFai/_old  2023-04-13 17:02:43.131576501 

commit kubernetes1.26 for openSUSE:Factory

2023-03-30 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kubernetes1.26 for openSUSE:Factory 
checked in at 2023-03-30 22:51:08

Comparing /work/SRC/openSUSE:Factory/kubernetes1.26 (Old)
 and  /work/SRC/openSUSE:Factory/.kubernetes1.26.new.31432 (New)


Package is "kubernetes1.26"

Thu Mar 30 22:51:08 2023 rev:3 rq:1075484 version:1.26.3

Changes:

--- /work/SRC/openSUSE:Factory/kubernetes1.26/kubernetes1.26.changes
2023-03-29 23:28:04.999740218 +0200
+++ /work/SRC/openSUSE:Factory/.kubernetes1.26.new.31432/kubernetes1.26.changes 
2023-03-30 22:51:12.680556913 +0200
@@ -1,0 +2,10 @@
+Mon Mar 27 09:24:52 UTC 2023 - Robert Munteanu 
+
+- Stronger conflicts for completion packages 
+
+---
+Mon Mar 27 08:53:20 UTC 2023 - Robert Munteanu 
+
+- Split individual completions into separate packages
+
+---



Other differences:
--
++ kubernetes1.26.spec ++
--- /var/tmp/diff_new_pack.xQQDGF/_old  2023-03-30 22:51:13.216559781 +0200
+++ /var/tmp/diff_new_pack.xQQDGF/_new  2023-03-30 22:51:13.220559802 +0200
@@ -49,16 +49,15 @@
 Patch4: kubeadm-opensuse-flexvolume.patch
 # Patch to revert renaming of coredns image location to match how it's done on 
download.opensuse.org
 Patch5: revert-coredns-image-renaming.patch
-BuildRequires:  bash-completion
 BuildRequires:  fdupes
 BuildRequires:  git
+BuildRequires:  go >= 1.19.7
 BuildRequires:  go-go-md2man
 BuildRequires:  golang-packaging
 BuildRequires:  rsync
 BuildRequires:  systemd-rpm-macros
 BuildRequires:  golang(API) = 1.19
 BuildRequires:  golang(github.com/jteeuwen/go-bindata)
-BuildRequires:  go >= 1.19.7
 ExcludeArch:%{ix86} s390 ppc64
 
 %description
@@ -70,7 +69,10 @@
 
 
 
+
+
 # packages to build containerized control plane
+
 %package apiserver
 Summary:Kubernetes apiserver for container image
 Group:  System/Management
@@ -178,6 +180,35 @@
 %description client-common
 Kubernetes client tools common files
 
+%package client-bash-completion
+Summary:Bash Completion for %{name}-client
+Group:  System/Shells
+BuildRequires:  bash-completion
+Requires:   bash-completion
+Requires:   kubernetes%{baseversion}-client = %{version}
+Supplements:(kubernetes%{baseversion}-client and bash-completion)
+BuildArch:  noarch
+Obsoletes:  kubernetes%{baseversionminus1}-client-bash-completion
+Provides:   kubernetes-client-bash-completion = %{version}
+Conflicts:  kubernetes-client-bash-completion
+
+%description client-bash-completion
+Bash command line completion support for %{name}-client
+
+%package client-fish-completion
+Summary:Fish Completion for %{name}-client
+Group:  System/Shells
+BuildRequires:  fish
+Requires:   kubernetes%{baseversion}-client = %{version}
+Supplements:(kubernetes%{baseversion}-client and fish)
+BuildArch:  noarch
+Obsoletes:  kubernetes%{baseversionminus1}-client-fish-completion
+Provides:   kubernetes-client-fish-completion = %{version}
+Conflicts:  kubernetes-client-fish-completion
+
+%description client-fish-completion
+Fish command line completion support for %{name}-client.
+
 %prep
 %setup -q -n kubernetes-%{version}
 %patch2 -p1
@@ -250,6 +281,10 @@
 install -d -m 0755 %{buildroot}%{_datadir}/bash-completion/completions/
 %{buildroot}%{_bindir}/kubectl%{baseversion} completion bash > 
%{buildroot}%{_datadir}/bash-completion/completions/kubectl
 
+# install the fish completion
+mkdir -p %{buildroot}%{_datadir}/fish/vendor_completions.d
+%{buildroot}%{_bindir}/kubectl%{baseversion} completion fish > 
%{buildroot}%{_datadir}/fish/vendor_completions.d/kubectl.fish
+
 # move CHANGELOG-%{baseversion}.md to old location
 mv CHANGELOG/CHANGELOG-%{baseversion}.md .
 
@@ -403,6 +438,11 @@
 %license LICENSE
 %{_mandir}/man1/kubectl.1%{?ext_man}
 %{_mandir}/man1/kubectl-*
+
+%files client-bash-completion
 %{_datadir}/bash-completion/completions/kubectl
 
+%files client-fish-completion
+%{_datadir}/fish/vendor_completions.d/kubectl.fish
+
 %changelog


commit kubernetes1.26 for openSUSE:Factory

2023-03-29 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kubernetes1.26 for openSUSE:Factory 
checked in at 2023-03-29 23:28:03

Comparing /work/SRC/openSUSE:Factory/kubernetes1.26 (Old)
 and  /work/SRC/openSUSE:Factory/.kubernetes1.26.new.31432 (New)


Package is "kubernetes1.26"

Wed Mar 29 23:28:03 2023 rev:2 rq:1075173 version:1.26.3

Changes:

--- /work/SRC/openSUSE:Factory/kubernetes1.26/kubernetes1.26.changes
2023-03-22 22:29:35.213874671 +0100
+++ /work/SRC/openSUSE:Factory/.kubernetes1.26.new.31432/kubernetes1.26.changes 
2023-03-29 23:28:04.999740218 +0200
@@ -1,0 +2,42 @@
+Wed Mar 22 08:35:51 UTC 2023 - Priyanka Saggu 
+
+- Add "BuildRequires: go>=1.19.7" in spec file  
+
+---
+Tue Mar 21 08:16:15 UTC 2023 - Priyanka Saggu 
+
+- Update to version 1.26.3:
+  * Release commit for Kubernetes v1.26.3
+  * Avoid metric lookup in Parallelizer.Util on every work piece
+  * One lock among PodNominator and SchedulingQueue
+  * Removes old discovery hack ignoring 403 and 404
+  * Plumb stale GroupVersions through aggregated discovery
+  * releng/go: Update images, dependencies and version to Go 1.19.7
+  * Tolerate empty discovery response in memcache client
+  * Fix for windows kube-proxy: 'externalTrafficPolicy: Local' results in no 
clusterIP entry in windows node.
+  * Deflake tests in staging/src/k8s.io/kube-aggregator/pkg/apiserver
+  * Fix a data race in TestDirty
+  * ut: fix TestLegacyFallbackNoCache versions order
+  * Fix legacy fallback stale for aggregated discovery
+  * Re-enable label selector
+  * Add integration test for diff --prune --selector
+  * Use label selector for filtering out resources when pruning. Matches same 
behavior as for kubectl apply
+  * svc: Support pods with same address
+  * api: generated files
+  * api: drop Resources.Claims from PVC and PVC template
+  * scheduler/framework/plugins/volumebinding: fix inaccurate log for when a 
volume is bound to a claim
+  * Fix validation.go to validate without StatefulSetStartOrdinal feature gate 
check. Adds test case to validate regression fix of validation failing when 
spec.ordinals set and feature gate disabled
+  * Remove global framework variable
+  * fix race in aggregated discovery handler
+  * Remove check for CSI driver running on node for CSI migration attach 
operations
+  * Disable multiple pv mount tests for vsphere intree driver
+  * Simplify construction of /metrics request
+  * Fix for issue with Loadbalancer policy creation for IPV6 endpoints in 
Dualstack mode.
+  * Bump konnectivity-client to v0.0.36
+  * make GetSubnetPrefix IP family agnostic
+  * Invoke gimme from kube::golang::verify_go_version
+  * Defer builds to test-cmd and test-integration targets
+  * Set node_stage whenever available
+  * Carefully compute request path for metrics
+
+---

Old:

  kubernetes-1.26.2.tar.xz

New:

  kubernetes-1.26.3.tar.xz



Other differences:
--
++ kubernetes1.26.spec ++
--- /var/tmp/diff_new_pack.mFBsmO/_old  2023-03-29 23:28:05.859744814 +0200
+++ /var/tmp/diff_new_pack.mFBsmO/_new  2023-03-29 23:28:05.863744836 +0200
@@ -22,7 +22,7 @@
 %define baseversionminus1 1.25
 
 Name:   kubernetes%{baseversion}
-Version:1.26.2
+Version:1.26.3
 Release:0
 Summary:Container Scheduling and Management
 License:Apache-2.0
@@ -58,6 +58,7 @@
 BuildRequires:  systemd-rpm-macros
 BuildRequires:  golang(API) = 1.19
 BuildRequires:  golang(github.com/jteeuwen/go-bindata)
+BuildRequires:  go >= 1.19.7
 ExcludeArch:%{ix86} s390 ppc64
 
 %description

++ _service ++
--- /var/tmp/diff_new_pack.mFBsmO/_old  2023-03-29 23:28:05.927745177 +0200
+++ /var/tmp/diff_new_pack.mFBsmO/_new  2023-03-29 23:28:05.931745199 +0200
@@ -5,7 +5,7 @@
 .git
 @PARENT_TAG@
 v(.*)
-v1.26.2
+v1.26.3
 enable
   
   

++ _servicedata ++
--- /var/tmp/diff_new_pack.mFBsmO/_old  2023-03-29 23:28:05.955745327 +0200
+++ /var/tmp/diff_new_pack.mFBsmO/_new  2023-03-29 23:28:05.959745349 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/kubernetes/kubernetes.git
-  fc04e732bb3e7198d2fa44efa5457c7c6f8c0f5b
+  9e644106593f3f4aa98f8a84b23db5fa378900bd
 (No newline at EOF)
 

++ kubernetes-1.26.2.tar.xz -> kubernetes-1.26.3.tar.xz ++
/work/SRC/openSUSE:Factory/kubernetes1.26/kubernetes-1.26.2.tar.xz 
/work/SRC/openSUSE:Factory/.kubernetes1.26.new.31432/kubernetes-1.26.3.tar.xz 
differ: char 15, line 1

++ kubernetes.obsinfo ++
--- /var/tmp/diff_new_pack.mFBsmO/_old  2023-03-29 23:28:06.067745926 +0200