commit kubernetes1.19 for openSUSE:Factory

2022-03-13 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kubernetes1.19 for openSUSE:Factory 
checked in at 2022-03-13 20:24:46

Comparing /work/SRC/openSUSE:Factory/kubernetes1.19 (Old)
 and  /work/SRC/openSUSE:Factory/.kubernetes1.19.new.25692 (New)


Package is "kubernetes1.19"

Sun Mar 13 20:24:46 2022 rev:15 rq:960746 version:1.19.15

Changes:

--- /work/SRC/openSUSE:Factory/kubernetes1.19/kubernetes1.19.changes
2021-10-16 22:47:24.828680471 +0200
+++ /work/SRC/openSUSE:Factory/.kubernetes1.19.new.25692/kubernetes1.19.changes 
2022-03-13 20:24:49.259630915 +0100
@@ -1,0 +2,5 @@
+Mon Feb  7 16:21:21 UTC 2022 - Dirk M??ller 
+
+- avoid bashism in client-common postinstall script (bsc#1195391)
+
+---



Other differences:
--
++ kubernetes1.19.spec ++
--- /var/tmp/diff_new_pack.pnCg6W/_old  2022-03-13 20:24:50.051631847 +0100
+++ /var/tmp/diff_new_pack.pnCg6W/_new  2022-03-13 20:24:50.055631852 +0100
@@ -1,7 +1,7 @@
 #
 # spec file
 #
-# Copyright (c) 2021 SUSE LLC
+# Copyright (c) 2022 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -71,8 +71,8 @@
 
 
 
-# packages to build containerized control plane
 
+# packages to build containerized control plane
 %package apiserver
 Summary:Kubernetes apiserver for container image
 Group:  System/Management
@@ -303,9 +303,8 @@
 %fdupes -s %{buildroot}
 
 %post client-common
-export baseversion="%{baseversion}"
 %{_sbindir}/update-alternatives \
-  --install %{_bindir}/kubectl kubectl %{_bindir}/kubectl%{baseversion} 
${baseversion/./}
+  --install %{_bindir}/kubectl kubectl %{_bindir}/kubectl%{baseversion} %(echo 
%{baseversion} | tr -d .)
 
 %postun client-common
 if [ ! -f %{_bindir}/kubectl%{baseversion} ] ; then


commit kubernetes1.19 for openSUSE:Factory

2021-10-16 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kubernetes1.19 for openSUSE:Factory 
checked in at 2021-10-16 22:47:02

Comparing /work/SRC/openSUSE:Factory/kubernetes1.19 (Old)
 and  /work/SRC/openSUSE:Factory/.kubernetes1.19.new.1890 (New)


Package is "kubernetes1.19"

Sat Oct 16 22:47:02 2021 rev:14 rq:925152 version:1.19.15

Changes:

--- /work/SRC/openSUSE:Factory/kubernetes1.19/kubernetes1.19.changes
2021-09-20 23:32:51.519151745 +0200
+++ /work/SRC/openSUSE:Factory/.kubernetes1.19.new.1890/kubernetes1.19.changes  
2021-10-16 22:47:24.828680471 +0200
@@ -1,0 +2,6 @@
+Wed Oct 13 14:08:08 UTC 2021 - Dominique Leuenberger 
+
+- Bump disk constraint to 10GB. The last successful builds
+  currently occupy 9.4GB of disk space.
+
+---



Other differences:
--
++ kubernetes1.19.spec ++
--- /var/tmp/diff_new_pack.pMws59/_old  2021-10-16 22:47:25.448680993 +0200
+++ /var/tmp/diff_new_pack.pMws59/_new  2021-10-16 22:47:25.448680993 +0200
@@ -72,6 +72,7 @@
 
 
 # packages to build containerized control plane
+
 %package apiserver
 Summary:Kubernetes apiserver for container image
 Group:  System/Management

++ _constraints ++
--- /var/tmp/diff_new_pack.pMws59/_old  2021-10-16 22:47:25.492681030 +0200
+++ /var/tmp/diff_new_pack.pMws59/_new  2021-10-16 22:47:25.492681030 +0200
@@ -7,7 +7,7 @@
   8
 
 
-  9
+  10
 
   
   


commit kubernetes1.19 for openSUSE:Factory

2021-09-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kubernetes1.19 for openSUSE:Factory 
checked in at 2021-09-20 23:32:12

Comparing /work/SRC/openSUSE:Factory/kubernetes1.19 (Old)
 and  /work/SRC/openSUSE:Factory/.kubernetes1.19.new.1899 (New)


Package is "kubernetes1.19"

Mon Sep 20 23:32:12 2021 rev:13 rq:919510 version:1.19.15

Changes:

--- /work/SRC/openSUSE:Factory/kubernetes1.19/kubernetes1.19.changes
2021-09-01 21:36:49.396851071 +0200
+++ /work/SRC/openSUSE:Factory/.kubernetes1.19.new.1899/kubernetes1.19.changes  
2021-09-20 23:32:51.519151745 +0200
@@ -1,0 +2,23 @@
+Thu Sep 16 11:33:00 UTC 2021 - rbr...@suse.com
+
+- Update to version 1.19.15:
+  * optimize the use of informer for scheduler
+  * Initialize scheduler's podInformer in sharedInformerFactory
+  * Fix buckets initialization
+  * Do not throw error when we can't get canonical path
+  * Fix vsphere disk detach failing
+  * fix: ensure InstanceShutdownByProviderID return false for creating Azure 
VMs
+  * fix: skip case sensitivity when checking Azure NSG rules
+  * Add subpath mount files to BUILD
+  * Pass additional flags to subpath mount to avoid flakes in certain 
conditions
+  * Create a FakeMounter for the subpath that wraps the mountutils FakeMounter
+  * Duplicate vendor/k8s.io/utils/mount/fake_mounter.go history in 
pkg/volume/util/subpath/subpath_fake_mounter.go history.
+  * Add MountSensitiveWithFlags to the subpath Mounter interface
+  * New subpath Mounter implements mount.Interface, update kubelet startup
+  * Duplicate vendor/k8s.io/utils/mount/* history in 
pkg/volume/util/subpath/subpath_* history.
+  * Update CHANGELOG/CHANGELOG-1.19.md for v1.19.14
+  * Copy golang license to staging copies
+  * job controller: don't mutate shared cache object
+  * Set idle and readheader timeouts
+
+---

Old:

  kubernetes-1.19.14.tar.xz

New:

  kubernetes-1.19.15.tar.xz



Other differences:
--
++ kubernetes1.19.spec ++
--- /var/tmp/diff_new_pack.Uv6uZx/_old  2021-09-20 23:32:52.431152871 +0200
+++ /var/tmp/diff_new_pack.Uv6uZx/_new  2021-09-20 23:32:52.431152871 +0200
@@ -22,7 +22,7 @@
 %define baseversionminus1 1.18
 
 Name:   kubernetes%{baseversion}
-Version:1.19.14
+Version:1.19.15
 Release:0
 Summary:Container Scheduling and Management
 License:Apache-2.0
@@ -70,8 +70,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.Uv6uZx/_old  2021-09-20 23:32:52.491152946 +0200
+++ /var/tmp/diff_new_pack.Uv6uZx/_new  2021-09-20 23:32:52.491152946 +0200
@@ -5,7 +5,7 @@
 .git
 @PARENT_TAG@
 v(.*)
-v1.19.14
+v1.19.15
 enable
   
   

++ _servicedata ++
--- /var/tmp/diff_new_pack.Uv6uZx/_old  2021-09-20 23:32:52.511152971 +0200
+++ /var/tmp/diff_new_pack.Uv6uZx/_new  2021-09-20 23:32:52.511152971 +0200
@@ -1,4 +1,4 @@
 
 
 https://github.com/kubernetes/kubernetes.git
-  9d49ff96ca7491b8f2736aa1be73a2ed66ef08cc
\ No newline at end of file
+  1c49fd9363f1714325ba858a9ca909f9c815c443
\ No newline at end of file

++ kubernetes-1.19.14.tar.xz -> kubernetes-1.19.15.tar.xz ++
/work/SRC/openSUSE:Factory/kubernetes1.19/kubernetes-1.19.14.tar.xz 
/work/SRC/openSUSE:Factory/.kubernetes1.19.new.1899/kubernetes-1.19.15.tar.xz 
differ: char 15, line 1

++ kubernetes.obsinfo ++
--- /var/tmp/diff_new_pack.Uv6uZx/_old  2021-09-20 23:32:52.611153094 +0200
+++ /var/tmp/diff_new_pack.Uv6uZx/_new  2021-09-20 23:32:52.611153094 +0200
@@ -1,5 +1,5 @@
 name: kubernetes
-version: 1.19.14
-mtime: 1628704883
-commit: 0fd2b5afdfe3134d6e1531365fdb37dd11f54d1c
+version: 1.19.15
+mtime: 1631733425
+commit: 58178e7f7aab455bc8de88d3bdd314b64141e7ee
 


commit kubernetes1.19 for openSUSE:Factory

2021-09-01 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kubernetes1.19 for openSUSE:Factory 
checked in at 2021-09-01 21:36:47

Comparing /work/SRC/openSUSE:Factory/kubernetes1.19 (Old)
 and  /work/SRC/openSUSE:Factory/.kubernetes1.19.new.1899 (New)


Package is "kubernetes1.19"

Wed Sep  1 21:36:47 2021 rev:12 rq:914233 version:1.19.14

Changes:

--- /work/SRC/openSUSE:Factory/kubernetes1.19/kubernetes1.19.changes
2021-07-20 15:38:38.189383566 +0200
+++ /work/SRC/openSUSE:Factory/.kubernetes1.19.new.1899/kubernetes1.19.changes  
2021-09-01 21:36:49.396851071 +0200
@@ -1,0 +2,15 @@
+Wed Aug 25 11:29:52 UTC 2021 - rbr...@suse.com
+
+- Update to version 1.19.14:
+  * Bump to golang 1.15.15 in build/**
+  * Bump to golang 1.15.15 in cluster/** and staging/**
+  * Bump to golang 1.15.15 in test/**
+  * Avoid spurious calls to update/delete validation
+  * update comments and owners file for pkg/util/removeall
+  * kubelet: do not call RemoveAll on volumes directory for orphaned pods
+  * Update CHANGELOG/CHANGELOG-1.19.md for v1.19.13
+  * Add missing locks for device-manager in 1.19
+  * test/e2e: Busybox image is not being templatized
+  * Fix race in attachdetach tests
+
+---

Old:

  kubernetes-1.19.13.tar.xz

New:

  kubernetes-1.19.14.tar.xz



Other differences:
--
++ kubernetes1.19.spec ++
--- /var/tmp/diff_new_pack.1ttF7E/_old  2021-09-01 21:36:50.616852539 +0200
+++ /var/tmp/diff_new_pack.1ttF7E/_new  2021-09-01 21:36:50.624852549 +0200
@@ -22,7 +22,7 @@
 %define baseversionminus1 1.18
 
 Name:   kubernetes%{baseversion}
-Version:1.19.13
+Version:1.19.14
 Release:0
 Summary:Container Scheduling and Management
 License:Apache-2.0
@@ -51,8 +51,8 @@
 BuildRequires:  fdupes
 BuildRequires:  git
 BuildRequires:  go-go-md2man
-# Kubernetes 1.19.13 requires at least go 1.15.14 (see changelog)
-BuildRequires:  go >= 1.15.14
+# Kubernetes 1.19.14 requires at least go 1.15.15 (see changelog)
+BuildRequires:  go >= 1.15.15
 BuildRequires:  golang-packaging
 BuildRequires:  rsync
 BuildRequires:  systemd-rpm-macros
@@ -69,6 +69,7 @@
 
 
 
+
 # packages to build containerized control plane
 
 %package apiserver

++ _service ++
--- /var/tmp/diff_new_pack.1ttF7E/_old  2021-09-01 21:36:50.720852664 +0200
+++ /var/tmp/diff_new_pack.1ttF7E/_new  2021-09-01 21:36:50.720852664 +0200
@@ -5,7 +5,7 @@
 .git
 @PARENT_TAG@
 v(.*)
-v1.19.13
+v1.19.14
 enable
   
   

++ _servicedata ++
--- /var/tmp/diff_new_pack.1ttF7E/_old  2021-09-01 21:36:50.736852684 +0200
+++ /var/tmp/diff_new_pack.1ttF7E/_new  2021-09-01 21:36:50.736852684 +0200
@@ -1,4 +1,4 @@
 
 
 https://github.com/kubernetes/kubernetes.git
-  5856238cc2b9489ca7af82a022f0dc79f5fd9c92
\ No newline at end of file
+  9d49ff96ca7491b8f2736aa1be73a2ed66ef08cc
\ No newline at end of file

++ kubernetes-1.19.13.tar.xz -> kubernetes-1.19.14.tar.xz ++
/work/SRC/openSUSE:Factory/kubernetes1.19/kubernetes-1.19.13.tar.xz 
/work/SRC/openSUSE:Factory/.kubernetes1.19.new.1899/kubernetes-1.19.14.tar.xz 
differ: char 15, line 1

++ kubernetes.obsinfo ++
--- /var/tmp/diff_new_pack.1ttF7E/_old  2021-09-01 21:36:50.840852809 +0200
+++ /var/tmp/diff_new_pack.1ttF7E/_new  2021-09-01 21:36:50.840852809 +0200
@@ -1,5 +1,5 @@
 name: kubernetes
-version: 1.19.13
-mtime: 1626382347
-commit: 53c7b65d4531a749cd3a7004c5212d23daa044a9
+version: 1.19.14
+mtime: 1628704883
+commit: 0fd2b5afdfe3134d6e1531365fdb37dd11f54d1c
 


commit kubernetes1.19 for openSUSE:Factory

2021-07-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kubernetes1.19 for openSUSE:Factory 
checked in at 2021-07-20 15:38:36

Comparing /work/SRC/openSUSE:Factory/kubernetes1.19 (Old)
 and  /work/SRC/openSUSE:Factory/.kubernetes1.19.new.2632 (New)


Package is "kubernetes1.19"

Tue Jul 20 15:38:36 2021 rev:11 rq:906675 version:1.19.13

Changes:

--- /work/SRC/openSUSE:Factory/kubernetes1.19/kubernetes1.19.changes
2021-04-26 16:38:46.661994775 +0200
+++ /work/SRC/openSUSE:Factory/.kubernetes1.19.new.2632/kubernetes1.19.changes  
2021-07-20 15:38:38.189383566 +0200
@@ -1,0 +2,72 @@
+Fri Jul 16 13:08:49 UTC 2021 - rbr...@suse.com
+
+- Update to version 1.19.13:
+  * Bump to golang 1.15.14 in build/**
+  * Bump to golang 1.15.14 in cluster/** and staging/**
+  * Bump to golang 1.15.14 in test/**
+  * Update debian-iptables image to buster-v1.6.5
+  * Update debian-base image to buster-v1.8.0
+  * Bump SMD to v4.1.2 to pick up #102749 fix
+  * generate scheduler merge patches on the pod status instead of the full pod
+  * Handle int -> float conversion in FromUnstructured
+  * Fix Node Resources plugins score when there are pods with no requests
+  * Update CHANGELOG/CHANGELOG-1.19.md for v1.19.12
+  * Remove error wrap from logs
+  * staging/publishing: Set default go version to go1.15.13
+  * build: Update to k/repo-infra@v0.1.8 (supports go1.15.13)
+  * Use go-runner:v2.3.1-go1.15.13-buster.0 image (built on go1.15.13)
+  * Update to go1.15.13
+  * Return UnschedulableAndUnresolvable when looking up volume-related 
resources returns NotFound error
+  * Return UnschedulableAndUnresolvable instead of Error when failing to 
lookup pvc or storageclass in VolumeZone plugin
+  * sched: fix a bug that a preemptor pod exists as a phantom
+  * Revert "Cleanup portforward streams after their usage"
+  * Fix VolumeAttachment garbage collection for migrated PVs
+  * Ignore transient errors when gather stats
+  * Speed up PV provisioning for vsphere driver
+  * dependencies: update debian-base/debian-iptables regex
+  * Update etcd image revision
+  * Update debian-base to buster-v1.7.0
+  * Update debian-iptables to buster-v1.6.1
+  * Respect annotation size limit for SSA last-applied.
+  * Fix expired unit test certs
+  * fix: delete non existing disk issue
+  * Azure: avoid setting cached Sku when updating VMSS and VMSS instances
+  * Update cos-gpu-installer image
+  * Ref counting is only applicable to Remote endpoints
+  * Make watch order conformance test reliable
+  * actually retry if we failed to reconcile some objects
+  * Update CHANGELOG/CHANGELOG-1.19.md for v1.19.11
+  * chunk target operatation for aws targetGroup
+  * Use CSI driver to determine unique name for migrated in-tree plugins
+  * staging/publishing: Set default go version to go1.15.12
+  * build: Update to k/repo-infra@v0.1.7 (supports go1.15.12)
+  * Use go-runner:v2.3.1-go1.15.12-buster.0 image (built on go1.15.12)
+  * Update to go1.15.12
+  * Avoid caching the VMSS instances whose network profile is nil
+  * Fix watchForLockfileContention memory leak
+  * Updating EndpointSlice controllers to avoid duplicate creations
+  * Backport SIG Node approvers to 1.19
+  * Update pkg/volume/azure_file/azure_provision.go
+  * Normalize share name to not include capital letters
+  * Extend pod start timeout to 5min for storage subpath configmap test
+  * no watch endpointslice in userpace mode
+  * Ensure service deleted when the Azure resource group has been deleted
+  * Updating EndpointSlice validation to match Endpoints validation
+  * Make parallel build memory threshold configurable
+  * fix: azure file namespace issue in csi translation
+  * pkg/kubelet: improve the node informer sync check
+  * Additional CVE-2021-3121 fix
+  * Fix startupProbe behaviour changed
+  * Fix test
+  * staging/publishing: Set default go version to go1.15.10
+  * build: Update to k/repo-infra@v0.1.6 (supports go1.15.11)
+  * Use go-runner:v2.3.1-go1.15.11-buster.0 image (built on go1.15.11)
+  * Update to go1.15.11
+  * add duration encoder to structured logger
+  * Update CHANGELOG/CHANGELOG-1.19.md for v1.19.10
+  * apf: exempt probes /healthz /livez /readyz
+  * list pod list once to avoid timeout
+  * Cleanup portforward streams after their usage
+  * Fixed the Dockerfile for the build-image to build from 
KUBE_BASE_IMAGE_REGISTRY
+
+---

Old:

  kubernetes-1.19.10.tar.xz

New:

  kubernetes-1.19.13.tar.xz



Other differences:
--
++ kubernetes1.19.spec ++
--- /var/tmp/diff_new_pack.6a3i5E/_old  2021-07-20 15:38:39.901386628 +0200
+++ /var/tmp/diff_new_pack.6a3i5E/_new  2021-07-20 

commit kubernetes1.19 for openSUSE:Factory

2021-04-26 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kubernetes1.19 for openSUSE:Factory 
checked in at 2021-04-26 16:38:40

Comparing /work/SRC/openSUSE:Factory/kubernetes1.19 (Old)
 and  /work/SRC/openSUSE:Factory/.kubernetes1.19.new.12324 (New)


Package is "kubernetes1.19"

Mon Apr 26 16:38:40 2021 rev:10 rq:885589 version:1.19.10

Changes:

--- /work/SRC/openSUSE:Factory/kubernetes1.19/kubernetes1.19.changes
2021-01-22 21:50:17.409676010 +0100
+++ /work/SRC/openSUSE:Factory/.kubernetes1.19.new.12324/kubernetes1.19.changes 
2021-04-26 16:38:46.661994775 +0200
@@ -1,0 +2,160 @@
+Thu Apr 15 07:59:11 UTC 2021 - rbr...@suse.com
+
+- Update to version 1.19.10:
+  * azure: fix node public IP not able to fetch issues from IMDS
+  * Add yaml util to unmarshal numbers into int/float
+  * Use apply to create objects in TestApplyStatus
+  * Stop skipping APIService in apply test
+  * Stop clearing OpenAPIConfig for kube-aggregator
+  * Add ability to skip OpenAPI handler installation
+  * apf: fix test flake
+  * Fixed describe ingress causing SEGFAULT
+  * update gogo/protobuf to v1.3.2
+  * Update sigs.k8s.io/structured-merge-diff to v4.0.3
+  * e2e fix: loosen configmap to 10 in resource quota
+  * apf: handle error from PollImmediateUntil
+  * Stop probing a pod during graceful shutdown
+  * staging/publishing: Set default go version to go1.15.10
+  * build: Update to k/repo-infra@v0.1.5 (supports go1.15.10)
+  * Use go-runner:v2.3.1-go1.15.10-buster.0 image (built on go1.15.10)
+  * Update to go1.15.10
+  * slice mirroring controller mirror annotations
+  * webhook config manager: HasSynced returns true when the manager is synced 
with existing webhookconfig objects at startup
+  * api-server add --lease-max-object-count
+  * apiserver add metric etcd_lease_object_counts
+  * update metadata-concealment to 1.6 for removing legacy checking
+  * apiserver add --lease-reuse-duration-seconds to config lease reuse duration
+  * additional subnet configuration for AWS ELB
+  * Revert "Automated cherry pick of #97417: fix azure file secret not found 
issue"
+  * Use the correct volum handle format for GCE regional PD.
+  * Increasing maximum number of ports allowed in EndpointSlice
+  * Update CHANGELOG/CHANGELOG-1.19.md for v1.19.9
+  * bazel
+  * deepcopy statefulsets
+  * full deepcopy on munged pod spec
+  * remove pod toleration toleration seconds mutation
+  * add markers for inspected validation mutation hits
+  * move secret mutation from validation to prepareforupdate
+  * remove unnecessary mutations in validation
+  * tweak validation to avoid mutation
+  * For LoadBalancer Service type don't create a HNS policy for empty or 
invalid external loadbalancer IP
+  * do not create StatefulSet pods when PVC is being deleted
+  * AWS cloudprovider allow nlb-ip and external type lbs to be managed 
externally
+
+---
+Wed Apr 14 14:49:05 UTC 2021 - Richard Brown 
+
+- Rebase opensuse-version-checks.patch 
+
+---
+Tue Apr 13 13:45:23 UTC 2021 - rbr...@suse.com
+
+- Update to version 1.19.9:
+  * Updating EndpointSliceMirroring controller to wait for cache to be updated
+  * Updating EndpointSlice controller to wait for cache to be updated
+  * Add tests for populated volumes
+  * Fix comment on getPodVolumeSubpathListFromDisk
+  * Fix tests to test for new behavior
+  * Add warnings after cleanup back
+  * Automatically remove orphaned pod's dangling volumes
+  * Count pod overhead as an entity's resource usage
+  * Number of sockets is assumed to be same as NUMA nodes
+  * Fix issue in checking domain socket for plugin watcher
+  * Use Lstat in plugin watcher to avoid Windows problem
+  * Skip visiting empty secret and configmap names
+  * Fix test "[sig-windows] DNS should support configurable pod DNS servers"
+  * move to cadvisor.MachineInfo
+  * Avoid using socket for hints
+  * Remove unnecessary snapshot ability check
+  * Add linuxonly on one multivolume test
+  * Mark some storage tests as LinuxOnly
+  * Update topology tests for windows
+  * Update storage test suits for Windows
+  * Modify storage snapshottable and disruptive test for Windows
+  * Separate in-tree gcepd driver for windows
+  * Log PodExec stdout + stderr
+  * e2e can't use both pod.Name and pod.GenerateName
+  * Tolerate NotFound errors when deleting snapshots
+  * tests: Refactors agnhost image pod usage in tests
+  * Fix testpattern check
+  * Combine switch case into one case
+  * Ran hack/update-bazel.sh but discarded changes to root build file
+  * Move common portion of dynamic snapshot out of switch statement
+  * Remove custom hash function, generate a random UUID for snapshot and 
snapcontent name 

commit kubernetes1.19 for openSUSE:Factory

2021-01-22 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kubernetes1.19 for openSUSE:Factory 
checked in at 2021-01-22 21:49:58

Comparing /work/SRC/openSUSE:Factory/kubernetes1.19 (Old)
 and  /work/SRC/openSUSE:Factory/.kubernetes1.19.new.28504 (New)


Package is "kubernetes1.19"

Fri Jan 22 21:49:58 2021 rev:9 rq:865039 version:1.19.7

Changes:

--- /work/SRC/openSUSE:Factory/kubernetes1.19/kubernetes1.19.changes
2021-01-06 19:56:06.445025653 +0100
+++ /work/SRC/openSUSE:Factory/.kubernetes1.19.new.28504/kubernetes1.19.changes 
2021-01-22 21:50:17.409676010 +0100
@@ -1,0 +2,16 @@
+Wed Jan 20 10:01:24 UTC 2021 - dmuel...@suse.com
+
+- Update to version 1.19.7:
+  * use default unkown sock for kubeadm cmd if cri detect is not needed
+  * cherry-pick part of #97451: fix nodeport quota check failure during 
creating clusterip
+  * Release reserved GCE IP address after ensure completes.
+  * Ensure reproducible builds when build through docker
+  * Fix cadvisor machine metrics
+  * Create OWNERS for most of the API Priority and Fairness impl
+  * Fix bug in CPUManager with race on map acccess
+  * fix azure file secret not found issue
+  * fix: azure file latency issue for metadata-heavy workload
+  * Update CHANGELOG/CHANGELOG-1.19.md for v1.19.6
+  * Add more logging for Mount error
+
+---

Old:

  kubernetes-1.19.6.tar.xz

New:

  kubernetes-1.19.7.tar.xz



Other differences:
--
++ kubernetes1.19.spec ++
--- /var/tmp/diff_new_pack.r2vIZu/_old  2021-01-22 21:50:18.585677678 +0100
+++ /var/tmp/diff_new_pack.r2vIZu/_new  2021-01-22 21:50:18.585677678 +0100
@@ -22,7 +22,7 @@
 %define baseversionminus1 1.18
 
 Name:   kubernetes%{baseversion}
-Version:1.19.6
+Version:1.19.7
 Release:0
 Summary:Container Scheduling and Management
 License:Apache-2.0

++ _service ++
--- /var/tmp/diff_new_pack.r2vIZu/_old  2021-01-22 21:50:18.657677780 +0100
+++ /var/tmp/diff_new_pack.r2vIZu/_new  2021-01-22 21:50:18.661677786 +0100
@@ -5,7 +5,7 @@
 .git
 @PARENT_TAG@
 v(.*)
-v1.19.6
+v1.19.7
 enable
   
   

++ _servicedata ++
--- /var/tmp/diff_new_pack.r2vIZu/_old  2021-01-22 21:50:18.685677820 +0100
+++ /var/tmp/diff_new_pack.r2vIZu/_new  2021-01-22 21:50:18.685677820 +0100
@@ -1,4 +1,4 @@
 
 
 https://github.com/kubernetes/kubernetes.git
-  cfa3373ae0785d16fdb6f452bb574649c6e0
\ No newline at end of file
+  85c99cf988c9675e83361034fb06db0b4d47a318
\ No newline at end of file

++ kubernetes-1.19.6.tar.xz -> kubernetes-1.19.7.tar.xz ++
/work/SRC/openSUSE:Factory/kubernetes1.19/kubernetes-1.19.6.tar.xz 
/work/SRC/openSUSE:Factory/.kubernetes1.19.new.28504/kubernetes-1.19.7.tar.xz 
differ: char 15, line 1

++ kubernetes.obsinfo ++
--- /var/tmp/diff_new_pack.r2vIZu/_old  2021-01-22 21:50:18.821678013 +0100
+++ /var/tmp/diff_new_pack.r2vIZu/_new  2021-01-22 21:50:18.825678018 +0100
@@ -1,5 +1,5 @@
 name: kubernetes
-version: 1.19.6
-mtime: 1608292842
-commit: fbf646b339dc52336b55d8ec85c181981b86331a
+version: 1.19.7
+mtime: 1610543665
+commit: 1dd5338295409edcfff11505e7bb246f0d325d15
 


[opensuse-commit] commit kubernetes1.19 for openSUSE:Factory

2020-11-15 Thread User for buildservice source handling
Hello community,

here is the log from the commit of package kubernetes1.19 for openSUSE:Factory 
checked in at 2020-11-15 15:23:36

Comparing /work/SRC/openSUSE:Factory/kubernetes1.19 (Old)
 and  /work/SRC/openSUSE:Factory/.kubernetes1.19.new.24930 (New)


Package is "kubernetes1.19"

Sun Nov 15 15:23:36 2020 rev:7 rq:848395 version:1.19.4

Changes:

--- /work/SRC/openSUSE:Factory/kubernetes1.19/kubernetes1.19.changes
2020-10-18 16:31:22.260756531 +0200
+++ /work/SRC/openSUSE:Factory/.kubernetes1.19.new.24930/kubernetes1.19.changes 
2020-11-15 15:25:02.027364260 +0100
@@ -1,0 +2,33 @@
+Fri Nov 13 13:03:45 UTC 2020 - rbr...@suse.com
+
+- Update to version 1.19.4:
+  * Do not skip externalLB update if some nodes are not found.
+  * Honor disabled LocalStorageCapacityIsolation in scheduling
+  * Disable watchcache for events
+  * Fix seccomp PSP docker/default annotation handling
+  * Re-add the event recorder in the release test
+  * Don't clear the cached resourcelock when errors occurs on updates
+  * Add failing test showing release is not working properly
+  * Add lease release tests in leader election
+  * Generate complete leader election record to resolve leader election issues 
with LeaseLocks
+  * Fix a bug that Pods with topologySpreadConstraints get scheduled to nodes 
without required labels
+  * If we set SelectPolicy MinPolicySelect on scaleUp behavior or scaleDown 
behavior,Horizontal Pod Autoscaler doesn`t automatically scale the number of 
pods correctly
+  * fix: add missing patch flag for kubeadm init phase control-plane
+  * Update the PIP when it is not in the Succeeded provisioning state during 
the LB update.
+  * Do not assume storageclass is still in-tree after csi migration
+  * Fix `kubectl describe ingress` format
+  * Fixes high CPU usage in kubectl drain
+  * Ignore deleted pods.
+  * Automated cherry pick of #94781: Don't attempt to detach an FC device if 
we don't know its name
+  * add a local tlsTransportCache to available_controller
+  * don't cache transports for incomparable configs
+  * Fix fcpath
+  * Update CHANGELOG/CHANGELOG-1.19.md for v1.19.3
+  * fix upgrade test
+  * fix azure disk data loss issue on Windows
+  * fix azure disk attach failure for disk size bigger than 4TB
+  * cloud node controller: handle empty providerID from getProviderID
+  * Updating kube-proxy to trim space from loadBalancerSourceRanges
+  * Don't create a new sandbox for pod with RestartPolicyOnFailure if all 
containers succeeded
+
+---

Old:

  kubernetes-1.19.3.tar.xz

New:

  kubernetes-1.19.4.tar.xz



Other differences:
--
++ kubernetes1.19.spec ++
--- /var/tmp/diff_new_pack.1YJp0z/_old  2020-11-15 15:25:02.867365159 +0100
+++ /var/tmp/diff_new_pack.1YJp0z/_new  2020-11-15 15:25:02.867365159 +0100
@@ -22,7 +22,7 @@
 %define baseversionminus1 1.18
 
 Name:   kubernetes%{baseversion}
-Version:1.19.3
+Version:1.19.4
 Release:0
 Summary:Container Scheduling and Management
 License:Apache-2.0

++ _service ++
--- /var/tmp/diff_new_pack.1YJp0z/_old  2020-11-15 15:25:02.927365223 +0100
+++ /var/tmp/diff_new_pack.1YJp0z/_new  2020-11-15 15:25:02.927365223 +0100
@@ -5,7 +5,7 @@
 .git
 @PARENT_TAG@
 v(.*)
-v1.19.3
+v1.19.4
 enable
   
   

++ _servicedata ++
--- /var/tmp/diff_new_pack.1YJp0z/_old  2020-11-15 15:25:02.943365241 +0100
+++ /var/tmp/diff_new_pack.1YJp0z/_new  2020-11-15 15:25:02.947365245 +0100
@@ -1,4 +1,4 @@
 
 
 https://github.com/kubernetes/kubernetes.git
-  9f014348af5af5af5c33c70396fe1a3b370b1285
\ No newline at end of file
+  5f1e5cafd33a8863c5dfe9f36c9cba836f0e981b
\ No newline at end of file

++ kubernetes-1.19.3.tar.xz -> kubernetes-1.19.4.tar.xz ++
/work/SRC/openSUSE:Factory/kubernetes1.19/kubernetes-1.19.3.tar.xz 
/work/SRC/openSUSE:Factory/.kubernetes1.19.new.24930/kubernetes-1.19.4.tar.xz 
differ: char 15, line 1

++ kubernetes.obsinfo ++
--- /var/tmp/diff_new_pack.1YJp0z/_old  2020-11-15 15:25:03.039365343 +0100
+++ /var/tmp/diff_new_pack.1YJp0z/_new  2020-11-15 15:25:03.039365343 +0100
@@ -1,5 +1,5 @@
 name: kubernetes
-version: 1.19.3
-mtime: 1602679177
-commit: 1e11e4a2108024935ecfcb2912226cedeafd99df
+version: 1.19.4
+mtime: 1605100100
+commit: d360454c9bcd1634cf4cc52d1867af5491dc9c5f
 
___
openSUSE Commits mailing list -- commit@lists.opensuse.org
To unsubscribe, email commit-le...@lists.opensuse.org
List Netiquette: https://en.opensuse.org/openSUSE:Mailing_list_netiquette
List Archives: 
https://lists.opensuse.org/archives/list/commit@lists.opensuse.org