Antonio Ojea
ac9eec0093
e2e test for CVE-2021-29923
...
The e2e test checks that the component implementing Kubernetes Services
interprets ClusterIPs with leading zeros as decimal, otherwise the
cluster will be exposed to CVE-2021-29923.
2022-01-14 16:58:29 +01:00
Kubernetes Prow Robot
03bcfab1a6
Merge pull request #106164 from nilo19/fix/route
...
fix: remove outdated ipv4 route when the corresponding node is deleted
2022-01-13 22:14:27 -08:00
Kubernetes Prow Robot
e95eda5213
Merge pull request #107528 from sayaoailun/test-e2e-apps-cronjob
...
It is weird that lastScheduleTime is earlier than creationTime
2022-01-13 21:14:27 -08:00
Kubernetes Prow Robot
35c8975710
Merge pull request #105387 from howardjohn/metadata-client/tracker
...
Make metadata fake client implement testing.FakeClient
2022-01-13 19:22:27 -08:00
Kubernetes Prow Robot
f1da8cd3e2
Merge pull request #107541 from tabbysable/sig-security-approvers
...
re-add missing sig-security-* aliases
2022-01-13 16:56:27 -08:00
Kubernetes Prow Robot
6b399153ba
Merge pull request #107502 from zshihang/metadata
...
limit the scope of 169.254.169.252/32 to host
2022-01-13 15:54:27 -08:00
Kubernetes Prow Robot
08fc9febb1
Merge pull request #106445 from majst01/fix-typo-in-cloudprovider
...
Fix typo
2022-01-13 14:28:29 -08:00
Tabitha Sable
0a0b4dc775
add missing sig-security-* aliases
2022-01-13 16:10:50 -06:00
Kubernetes Prow Robot
01da891398
Merge pull request #107529 from humblec/vol-fields
...
storage: correct struct fields in volume plugins
2022-01-13 10:30:41 -08:00
Kubernetes Prow Robot
3bd422dc76
Merge pull request #107293 from dims/jan-1-owners-cleanup
...
Cleanup OWNERS files - Jan 2021 Week 1
2022-01-13 10:30:30 -08:00
Kubernetes Prow Robot
0669da445f
Merge pull request #107510 from MikeSpreitzer/order-flow-schemas
...
Order suggested FlowSchemas by matching precedence
2022-01-13 08:46:30 -08:00
Humble Chirammal
283022a88d
storage: correct struct fields in volume plugins
...
This commit corrects struct field names in the godoc for various
storage volume plugins volume sources and persistent volume sources.
Additional Ref# #105963 (comment)
Signed-off-by: Humble Chirammal <hchiramm@redhat.com>
2022-01-13 21:20:19 +05:30
Kubernetes Prow Robot
7dd03c8326
Merge pull request #107508 from andrewsykim/controllers-owners
...
add myself as approver to pkg/controller
2022-01-13 02:46:30 -08:00
sayaoailun
f2d585e356
It is weird that lastScheduleTime is earlier than creationTime
...
Signed-off-by: sayaoailun <guojianwei007@126.com>
2022-01-13 14:07:38 +08:00
Kubernetes Prow Robot
2f64227aea
Merge pull request #107429 from andyzhangx/azuredisk-translation-camel
...
fix: azuredisk parameter lowercase translation issue
2022-01-12 21:28:29 -08:00
Qi Ni
efeda3c32a
fix: remove outdated ipv4 route when the corresponding node is deleted
2022-01-13 12:01:11 +08:00
Kubernetes Prow Robot
42436c877e
Merge pull request #107462 from dims/next-step-in-csi-migration-for-openstack-take-2
...
Next step in CSI migration for openstack
2022-01-12 19:57:07 -08:00
Mike Spreitzer
798fc67a37
Order suggested FlowSchemas by matching precedence
2022-01-12 21:40:22 -05:00
Kubernetes Prow Robot
dad0c48959
Merge pull request #106594 from pohly/log-benchmark
...
logs: add benchmark
2022-01-12 18:01:08 -08:00
Andrew Sy Kim
845d4a4304
add myself as approver to pkg/controller
...
Signed-off-by: Andrew Sy Kim <kim.andrewsy@gmail.com>
2022-01-12 19:33:02 -05:00
Kubernetes Prow Robot
8c69e5d25b
Merge pull request #107361 from wzshiming/test/skip
...
Skip tests when no signal emitting command
2022-01-12 14:21:38 -08:00
Kubernetes Prow Robot
e22ec17057
Merge pull request #99441 from CKchen0726/csi-client
...
migrate volume/csi/csi-client.go logs to structured logging
2022-01-12 11:52:13 -08:00
Shihang Zhang
17c2be0667
limit the scope of 169.254.169.252/32 to host
2022-01-12 10:36:59 -08:00
Kubernetes Prow Robot
bf8c918e0b
Merge pull request #107494 from BinacsLee/binacs/remove-switch-for-binary-condition
...
cleanup: remove switch for binary condition in scheduler cache
2022-01-12 09:48:38 -08:00
Kubernetes Prow Robot
46c072d9d9
Merge pull request #106978 from pohly/log-message-verbosity
...
log message verbosity
2022-01-12 07:24:36 -08:00
Kubernetes Prow Robot
5bfc4286ee
Merge pull request #106943 from wojtek-t/graduate_watch_resumption_to_ga
...
Graduate EfficientWatchResumption feature to GA
2022-01-12 06:06:36 -08:00
BinacsLee
ccbd881b36
cleanup: remove switch for binary condition in scheduler cache
2022-01-12 21:08:16 +08:00
Patrick Ohly
9eaa2dc554
avoid klog Info calls without verbosity
...
In the following code pattern, the log message will get logged with v=0 in JSON
output although conceptually it has a higher verbosity:
if klog.V(5).Enabled() {
klog.Info("hello world")
}
Having the actual verbosity in the JSON output is relevant, for example for
filtering out only the important info messages. The solution is to use
klog.V(5).Info or something similar.
Whether the outer if is necessary at all depends on how complex the parameters
are. The return value of klog.V can be captured in a variable and be used
multiple times to avoid the overhead for that function call and to avoid
repeating the verbosity level.
2022-01-12 07:48:36 +01:00
Kubernetes Prow Robot
935052185c
Merge pull request #107450 from atiratree/local-up-cleanup
...
remove iptables cleanup from local-up-cluster.sh
2022-01-11 21:52:36 -08:00
Kubernetes Prow Robot
b5103f6117
Merge pull request #107426 from yanghesong/remove_validate_runtime
...
Remove runtime in validate
2022-01-11 20:50:36 -08:00
Kubernetes Prow Robot
68e64ba52e
Merge pull request #106453 from davidleitw/master
...
Fix typo
2022-01-11 17:13:23 -08:00
Philip Hamer
ea2dff12e6
add test case for issue 106277 (PR 106268) ( #106532 )
...
* add test case for issue 106277 - fix edit of non-registered custom API types
* remove unneeded struct, as suggested
2022-01-11 15:53:23 -08:00
Kubernetes Prow Robot
1f382b171e
Merge pull request #107080 from sivchari/fix-misspell
...
fix curent to current
2022-01-11 13:56:53 -08:00
Kubernetes Prow Robot
57d66b9aad
Merge pull request #106400 from mahendrabishnoi2/master
...
fix grammar
2022-01-11 13:56:41 -08:00
Kubernetes Prow Robot
f8bb35d76e
Merge pull request #107448 from saschagrunert/apparmor-e2e
...
Fix AppArmor unloaded profile e2e test
2022-01-11 12:23:15 -08:00
Kubernetes Prow Robot
9cb26b7a07
Merge pull request #107472 from alculquicondor/patch-3
...
Remove skip Multi-AZ test based on provider
2022-01-11 10:49:09 -08:00
Kubernetes Prow Robot
cadbe8dfb5
Merge pull request #107250 from cndoit18/use-errors
...
cleanup(kubelet): use errors.Is(err, os.ErrProcessDone)
2022-01-11 10:49:01 -08:00
Kubernetes Prow Robot
7082bb90ad
Merge pull request #107192 from SergeyKanzhelev/cri-api-readme
...
synced up v1 and v1alpha2 CRI API comments and updated the readme
2022-01-11 10:48:54 -08:00
Kubernetes Prow Robot
19069665f9
Merge pull request #107094 from adisky/d-container-runtime
...
Mark container-runtime kubelet flag as deprecated
2022-01-11 10:48:46 -08:00
Kubernetes Prow Robot
7eb5046064
Merge pull request #106470 from qmloong/qmloong/fix
...
fix: some typos and syncPod outdated workflow annotation
2022-01-11 10:48:38 -08:00
Kubernetes Prow Robot
5f4914604d
Merge pull request #106353 from gjkim42/remove-false-pleg-errors
...
kubelet: Remove false PLEG errors
2022-01-11 10:48:26 -08:00
Kubernetes Prow Robot
9c468ecf30
Merge pull request #107467 from SataQiu/kubeadm-cleanup-20220111
...
kubeadm: print warnings to stderr
2022-01-11 09:46:57 -08:00
Kubernetes Prow Robot
fa52d44037
Merge pull request #107466 from humblec/new-field
...
correct struct fields in various core storage structs
2022-01-11 09:46:49 -08:00
Kubernetes Prow Robot
8f453c9d79
Merge pull request #107044 from pohly/cli-invalid-command
...
cli: avoid logging command line errors in more cases
2022-01-11 09:46:37 -08:00
Kubernetes Prow Robot
8d8d3f03c0
Merge pull request #106766 from kerthcet/feature/add-test-to-multipoint
...
add test to cover multipoint with scoring extension
2022-01-11 09:46:25 -08:00
Kubernetes Prow Robot
d05e5c0e41
Merge pull request #107408 from awels/allow_greater_or_equal_capacity_in_provisioning_check
...
Allow greater or equal in storage provisioning check
2022-01-11 08:33:28 -08:00
Kubernetes Prow Robot
39136784a4
Merge pull request #107009 from kerthcet/feature/fix-wrong-calculate-in-podTopologySpread
...
nodeAffinity filtered nodes should be excluded when calculating skew …
2022-01-11 08:33:16 -08:00
Aldo Culquicondor
3f0de6b80e
Remove skip Multi-AZ test based on provider
...
The test only cares if there are multiple zones and that is independent of the provider
2022-01-11 10:38:41 -05:00
SataQiu
218b4dea9f
kubeadm: print warnings to stderr
2022-01-11 23:08:59 +08:00
Humble Chirammal
1cb0dd028f
correct struct fields in various core storage structs
...
The field names in godoc for various core storage structs have been
corrected with this commit.
Additional Ref# #105963 (comment)
Signed-off-by: Humble Chirammal <hchiramm@redhat.com>
2022-01-11 20:35:04 +05:30