1
0

- 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

OBS-URL: https://build.opensuse.org/package/show/devel:kubic/kubernetes1.20?expand=0&rev=16
This commit is contained in:
Richard Brown 2021-04-15 08:20:44 +00:00 committed by Git OBS Bridge
parent dfd83dd78e
commit 6e3f32cabc
7 changed files with 75 additions and 9 deletions

View File

@ -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.20.5</param>
<param name="revision">v1.20.6</param>
<param name="changesgenerate">enable</param>
</service>
<service name="tar" mode="disabled"/>

View File

@ -1,4 +1,4 @@
<servicedata>
<service name="tar_scm">
<param name="url">https://github.com/kubernetes/kubernetes.git</param>
<param name="changesrevision">7e48dab334ae339ce6a4c4993751f57395530265</param></service></servicedata>
<param name="changesrevision">148445452ded1b9025d6b71a6f571faf3941dd7f</param></service></servicedata>

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:877bbae253ad3a43582c43639348217df188b04af8a498ff61836448073e44b3
size 20327756

3
kubernetes-1.20.6.tar.xz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0be83f40fa34da536fb8066c86fae01855480742c2e005ddc12535bda0931196
size 20361068

View File

@ -1,5 +1,5 @@
name: kubernetes
version: 1.20.5
mtime: 1616029261
commit: 6b1d87acf3c8253c123756b9e61dac642678305f
version: 1.20.6
mtime: 1618456723
commit: 8a62859e515889f07e3e3be6a1080413f17cf2c3

View File

@ -1,3 +1,68 @@
-------------------------------------------------------------------
Thu Apr 15 07:59:12 UTC 2021 - rbrown@suse.com
- Update to version 1.20.6:
* azure: fix node public IP not able to fetch issues from IMDS
* Fix test now that empty struct are tracked in mangaed fields
* make generated_files
* Update bazel and dependencies.
* Update to use cliflag.NamedFlagSets
* Address comments.
* Update NodeIPAM wrapper
* Delete build file based on latest changes.
* Update extension mechanism and related sample.
* Address review comments
* Address review comments
* Modify integration test to fill CCM test gap
* Update test
* Move initialize cloud provider with client builder reference inside controller start func
* Separate example func and add README.md
* Separate func
* Add demonstration of wiring nodeIPAMController config object
* Remove cloud provider name as input parameter.
* Fix flag passing in CCM.
* Use apply to create objects in TestApplyStatus
* Stop skipping APIService in apply test
* Stop clearing OpenAPIConfig for kube-aggregator
* Declare TCP default for service port protocol
* Add ability to skip OpenAPI handler installation
* do not tag user created public IPs
* apf: fix test flake
* update gogo/protobuf to v1.3.2
* Fixed describe ingress causing SEGFAULT
* Update sigs.k8s.io/structured-merge-diff to v4.0.3
* Stop probing a pod during graceful shutdown
* apf: handle error from PollImmediateUntil
* staging/publishing: Set default go version to go1.15.10
* webhook config manager: HasSynced returns true when the manager is synced with existing webhookconfig objects at startup
* update metadata-concealment to 1.6 for removing legacy checking
* slice mirroring controller mirror annotations
* 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
* Support > 5 ports in L4 ILB.
* 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
* Update CHANGELOG/CHANGELOG-1.20.md for v1.20.5
* fix a bug where only service with less than 100 ports can have GCE load balancer
* 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
* Moving docker options to daemon.json
* e2e fix: loosen configmap to 10 in resource quota
* api-server add --lease-max-object-count
* apiserver add metric etcd_lease_object_counts
* apiserver add --lease-reuse-duration-seconds to config lease reuse duration
* Bump Cluster Autoscaler to v1.20.0
-------------------------------------------------------------------
Wed Apr 14 14:54:45 UTC 2021 - Richard Brown <rbrown@suse.com>

View File

@ -22,7 +22,7 @@
%define baseversionminus1 1.19
Name: kubernetes%{baseversion}
Version: 1.20.5
Version: 1.20.6
Release: 0
Summary: Container Scheduling and Management
License: Apache-2.0
@ -70,6 +70,7 @@ for management and discovery.
# packages to build containerized control plane
%package apiserver
Summary: Kubernetes apiserver for container image
Group: System/Management