Commit Graph

10808 Commits

Author SHA1 Message Date
Kubernetes Prow Robot
86141c0cce Merge pull request #88503 from robscott/app-protocol
Adding AppProtocol to Service and Endpoints Ports
2020-02-26 00:20:40 -08:00
Kubernetes Prow Robot
ddf53b8f66 Merge pull request #84920 from sttts/sttts-cr-list-type-set-map-validation
apiextensions: validate list-type map+set uniqueness in CRs
2020-02-25 21:02:40 -08:00
Rob Scott
6a33727632 Adding AppProtocol to Service and Endpoints Ports 2020-02-25 17:42:34 -08:00
jennybuckley
2bcf99f05f Improve rate limiter latency logging and metrics 2020-02-25 17:04:20 -08:00
Kubernetes Prow Robot
851efa8a34 Merge pull request #84051 from bart0sh/PR0079-multiple-sizes-hugepages
Implement support for multiple sizes huge pages
2020-02-25 14:40:27 -08:00
Marek Siarkowicz
6d9fbd2d9f Deprecate heapster related kubelet flags and remove their implementation
Heapster is retired since 1.11.
Having kubectl top mention Heapster is confusing for users.
2020-02-25 21:38:28 +01:00
Marek Siarkowicz
d44d5b35f3 Add show-hidden-metrics-for-version to kubelet 2020-02-25 20:46:34 +01:00
Dr. Stefan Schimanski
ea45da7e52 apiextions: add list-type: map|set CR validation 2020-02-25 18:34:49 +01:00
bowan
23340d7522 [UseNetworkResourceInDifferentTenant] Fix bug of setting incorrect subscription id on azure network resource clients. 2020-02-26 01:23:48 +08:00
Mike Dame
7e1ec59fe2 Remove AlgorithmSource from v1alpha2
This commit removes AlgorithmSource from the v1alpha2 scheduler ComponentConfig api.
It also creates the necessary manual conversion functions and updates defaulting to accept the change.
2020-02-25 11:42:28 -05:00
Saverio Proto
bdc54eb18a Use compute v1 api to specify network tier
Drop the use of the alpha api for operations that are supported by compute v1

The switch/case logic was wrong because the user
can set the default tier for a project:
https://cloud.google.com/network-tiers/docs/using-network-service-tiers#setting_the_tier_for_all_resources_in_a_project

The assumption that the default tier is always PREMIUM is wrong

This patch uses the explicit network tier when possible,
or it falls back to the project default.

Signed-off-by: Saverio Proto <saverioproto@google.com>
2020-02-25 08:16:58 +01:00
Kubernetes Prow Robot
59870dad01 Merge pull request #87748 from satyasm/kep-local-cidr
Refactor handling of local traffic detection.
2020-02-24 19:06:48 -08:00
Kubernetes Prow Robot
71b7b5175a Merge pull request #87790 from marosset/windows-run-as-username-stable
Moving Windows RunAsUserName feature to GA
2020-02-24 17:46:21 -08:00
Kubernetes Prow Robot
f6525dbc81 Merge pull request #88087 from alculquicondor/mutiprofiles-api
Add Schedulings Profiles to kubescheduler.config.k8s.io/v1alpha2
2020-02-24 14:43:35 -08:00
Kubernetes Prow Robot
4cadaf2563 Merge pull request #88437 from mattjmcnaughton/mattjmcnaughton/fix-fake-image-testing-service
Fix initialization bug in `FakeImageService`
2020-02-24 13:12:11 -08:00
Kubernetes Prow Robot
327dd9de0f Merge pull request #88444 from andyzhangx/azuredisk-remediator
fix: add remediation in azure disk attach/detach
2020-02-24 11:03:04 -08:00
Kubernetes Prow Robot
0225798ab2 Merge pull request #88424 from gnufied/respect-ignore-volume-az
Respect ignore-volume-az option in admission plugin
2020-02-24 11:02:57 -08:00
Kubernetes Prow Robot
94837daab2 Merge pull request #88462 from feiskyer/fix-302
Deprecate service annotation service.beta.kubernetes.io/azure-load-balancer-disable-tcp-reset
2020-02-24 08:36:57 -08:00
Aldo Culquicondor
9e71741d06 Add Profiles to kubescheduler.config.k8s.io/v1alpha2
Signed-off-by: Aldo Culquicondor <acondor@google.com>
2020-02-24 09:45:46 -05:00
Kubernetes Prow Robot
e4a5012de6 Merge pull request #88360 from andyzhangx/delete-disk
fix: check disk status before delete azure disk
2020-02-24 06:42:47 -08:00
Brian Pursley
0f31bef94c Default grace period to 0 when --force is used to delete an object 2020-02-24 09:30:56 -05:00
Pengfei Ni
87d0e826c1 Remove the unsupported CloudProviderBackoffMode from Azure cloud
provider config.
2020-02-24 14:07:53 +00:00
Pengfei Ni
a8c41ae5fb Deprecate service annotation service.beta.kubernetes.io/azure-load-balancer-disable-tcp-reset 2020-02-24 13:56:39 +00:00
Kubernetes Prow Robot
ca23b07dd4 Merge pull request #88384 from bowen5/cross-tenant-network-resource
Support cluster using network resources (VNet, LB, IP, etc.) across AAD Tenants.
2020-02-24 02:34:47 -08:00
bowan
b38ed0467f Support cluster using network resources (VNet, LB, IP, etc.) across AAD Tenants. 2020-02-24 16:59:22 +08:00
andyzhangx
0e3b7a7aea fix test failure 2020-02-24 02:43:37 +00:00
andyzhangx
e5bb6af475 fix: add remediation in azure disk attach/detach
add one comment
2020-02-24 02:37:07 +00:00
andrewsykim
8c633356df move well known cloud provider taints to k8s.io/cloud-provider/api
Signed-off-by: andrewsykim <kim.andrewsy@gmail.com>
2020-02-23 19:54:59 -05:00
mattjmcnaughton
5362e8b6cb Fix initialization bug in FakeImageService
When adding this functionality in
https://github.com/kubernetes/kubernetes/pull/88372, I forgot to
allocate a map for the `Errors` field when constructing the object. As a
result, trying to actually use the `InjectError` method failed (as I
noticed when I started trying to write tests to actually use
`InjectError`). Fortunately, `FakeImageService` is only used in tests...
but still, we should fix this issue.

Fixing in a separate diff from the one which will add additional test
coverage (and actually use `InjectError`, because I don't like having
non-working code in master.)

We could also revert the original commit and then re-merge with this
fix, but that seems like unnecessary work given we already have a fix
ready to go.
2020-02-23 09:23:59 -05:00
Kubernetes Prow Robot
9c1543263b Merge pull request #88431 from liggitt/publish-1.18
Add release-1.18 publishing rules
2020-02-23 00:32:47 -08:00
Jordan Liggitt
a6dc7ba138 Add release-1.18 publishing rules 2020-02-22 19:42:34 -05:00
Kubernetes Prow Robot
8ed008a418 Merge pull request #88421 from apelisse/enable-ssa-again
Enable field management for all new objects
2020-02-22 11:04:47 -08:00
Kubernetes Prow Robot
15515e1240 Merge pull request #88294 from immutableT/envelope-metrics
Instrument DEK cache fill and request inter-arrival times.
2020-02-22 08:34:47 -08:00
zhouya0
0acaf5c3e9 Fix kubectl describe ingress annotations not sorted 2020-02-22 22:05:01 +08:00
zhouya0
5db45e12d5 fix kubectl create deployment image name 2020-02-22 20:23:42 +08:00
Kubernetes Prow Robot
de75bf9443 Merge pull request #88405 from feiskyer/mock-vmset
Swith to mock clients for route/routetable/networkinterface tests
2020-02-22 00:09:02 -08:00
Kubernetes Prow Robot
62b0bbc1c6 Merge pull request #88382 from jpbetz/parallel-mem-client-resource-discovery
Refresh discovery server resources for memCacheClient in parallel
2020-02-22 00:08:47 -08:00
Kubernetes Prow Robot
5aa2e3ca06 Merge pull request #80605 from odinuge/hugetlb-kubectl-node-describe
Add huge page usage stats (Allocated resources) to kubectl describe node
2020-02-21 20:58:47 -08:00
Hemant Kumar
ea5bea2b9f Respect ignore-volume-az option in admission plugin
We appear to be respecting this options when provisioning the volume
but when PV is admitted the zone/region fields get added back to the
PV and hence defeating the purpose of the option.
2020-02-21 22:12:58 -05:00
Joe Betz
190a72392a Refresh discovery server resources for memCacheClient in parallel 2020-02-21 18:35:38 -08:00
Pengfei Ni
78b18ed6f4 Swith to mock clients for route/routetable/networkinterface tests 2020-02-22 02:32:19 +00:00
Kubernetes Prow Robot
8d7a8f647a Merge pull request #88372 from mattjmcnaughton/mattjmcnaughton/support-injecting-errors-fake-image-manager
Support injecting errors for `FakeImageService`
2020-02-21 18:32:03 -08:00
Kubernetes Prow Robot
0e9a8481aa Merge pull request #88324 from zhouya0/add_init_containers_to_dump_info
Add init containers log to cluster dump info
2020-02-21 18:31:40 -08:00
Kubernetes Prow Robot
23045f9247 Merge pull request #88057 from julianvmodesto/remove-deprecated-rolling-update
Remove deprecated rolling-update command
2020-02-21 18:31:30 -08:00
Kubernetes Prow Robot
c69c91987b Merge pull request #87811 from mborsz/pv
Remove unnecessary calls to GCE API after PD is created
2020-02-21 18:31:01 -08:00
Satyadeep Musuvathy
8c6956e5bb Refactor handling of local traffic detection. 2020-02-21 17:57:34 -08:00
Antoine Pelisse
a54a52c5de Enable field management for all new objects 2020-02-21 15:11:33 -08:00
Kubernetes Prow Robot
479759ed16 Merge pull request #88377 from Huang-Wei/pts-doc-update
Update API doc for feature PodTopologySpread (a.k.a EvenPodsSpread)
2020-02-21 12:12:25 -08:00
Kubernetes Prow Robot
cd3494193a Merge pull request #87839 from leakingtapan/cloud-provider
Fix aws provider to return no error when instance is not found for InstanceExistsByProviderID
2020-02-21 12:12:11 -08:00
immutablet
684d6fb0ad Instrument DEK cache fill and request inter-arrival times. 2020-02-21 11:07:53 -08:00