Antonio Ojea
c421e22e2c
slice mirroring controller mirror annotations
...
Add support to the endpoint slice mirroring controller to mirror
annotations, in addition to labels, but don´t mirror endpoint
triggertime annotation.
Also, fix a bug in the endpointslice mirroring controller, that
wasn't updating the mirrored slice with the new labels, in case
that only the endpoint labels were modified.
2021-03-08 23:20:08 +01:00
yoyinzyc
587cadf726
add context to serviceaccount authenticator metrics
2021-03-08 14:16:48 -08:00
Jiawei Wang
1e16615fb0
Relax csiNodeIDMaxLength to longer limit
...
Update csiNodeIDMaxLength to 192 bytes
2021-03-08 13:52:43 -08:00
Kubernetes Prow Robot
7c702138f9
Merge pull request #98538 from dims/mark-openstack/cinder-csi-migration-as-ga
...
Mark openstack/cinder csi migrations as GA
2021-03-08 13:39:12 -08:00
Kubernetes Prow Robot
1c06a72c97
Merge pull request #98067 from verb/1.21-test-ec-disabled
...
Add integration test for disabled ephemeral containers
2021-03-08 13:39:00 -08:00
David Eads
80ff06fe84
Enable, rate limit, and test APF controller fights
...
Using real time.
2021-03-08 16:24:39 -05:00
tewei.luo
068bdcfcef
Use the correct volum handle format for GCE regional PD.
2021-03-08 20:55:02 +00:00
Riaan Kleinhans
c3fb2c002a
Promote ReplicaSet e2e test to Conformance
2021-03-09 09:54:04 +13:00
James Sturtevant
c9eff4e906
Get filesystem stats for files on Windows
2021-03-08 12:50:23 -08:00
Amim Knabben
0341e4c2f3
Enabling runtime config on E2E node tests
2021-03-08 15:45:06 -05:00
Yu Yi
77950ba79b
metrics: promote apiserver_storage_object_counts to stable
...
- rename etcd_object_counts to apiserver_storage_object_counts
CONTEXT https://github.com/kubernetes/kubernetes/issues/98270
FIXES https://github.com/kubernetes/kubernetes/issues/98270
2021-03-08 20:28:55 +00:00
Rob Scott
fe43948d44
Adding TopologyAwareHints feature gate
2021-03-08 12:18:05 -08:00
Adhityaa Chandrasekar
a0844da8f7
batch: add suspended job
...
Signed-off-by: Adhityaa Chandrasekar <adtac@google.com>
2021-03-08 20:08:21 +00:00
Kubernetes Prow Robot
97cd5bb7e2
Merge pull request #99858 from freehan/firewall-fix
...
Revert "Revert "fix a bug where only service with less than 100 ports can have GCE lo…
2021-03-08 12:07:37 -08:00
Kubernetes Prow Robot
2d3acce39b
Merge pull request #99752 from pacoxu/coredns/promote
...
update cluster/dns/coredns to 1.8.0 as kubeadm
2021-03-08 12:07:28 -08:00
Kubernetes Prow Robot
eb4dafb7f1
Merge pull request #99651 from umohnani8/cri
...
Move CRIContainerLogRotation to GA
2021-03-08 12:07:20 -08:00
Kubernetes Prow Robot
2b3f97b08f
Merge pull request #99389 from tanjing2020/change-log
...
Use %w instead of %v to format errors
2021-03-08 12:07:12 -08:00
Heng WU
b7613c4315
Wrong command (kubectl top) description ( #99060 )
...
* Update top.go
* Update top_pod.go
* Update top_node.go
2021-03-08 12:07:00 -08:00
Patrick Ohly
4c7e4c6316
CSIStorageCapacity: enable E2E tests by default
...
With the feature now in beta, tests should run in the normal jobs.
2021-03-08 20:59:52 +01:00
Patrick Ohly
39103c188f
CSIStorageCapacity: add +featureGate=CSIStorageCapacity
...
The tag is currently mostly ignored by the tooling, but its usage is
encouraged (https://github.com/kubernetes/kubernetes/pull/99641#discussion_r588078444 ).
2021-03-08 20:59:52 +01:00
Patrick Ohly
2b062a6281
CSIStorageCapacity: generated files for beta
2021-03-08 20:59:52 +01:00
Patrick Ohly
3fa43540b6
CSIStorageCapacity: check MaximumVolumeSize during scheduling
...
If available, then the MaximumVolumeSize is a better indicator whether
creating a volume has a chance to succeed than the total (?) Capacity,
which is potentially larger and less well-defined.
2021-03-08 20:52:51 +01:00
Patrick Ohly
a2972eba07
CSIStorageCapacity: add MaximumVolumeSize to v1beta1 API
2021-03-08 20:52:50 +01:00
Patrick Ohly
9e7748c6a5
CSIStorageCapacity: mark v1alpha1 as deprecated
...
We still need the alpha API for testing with current
external-provisioner, but then should remove it shortly after the 1.21
release once the external-provisioner is updated to use the beta API.
That VolumeAttachment is still defined in the alpha API looks like an
oversight. To minimize changes during the beta graduation of
CSIStorageCapacity it is left in place with a deprecation notification
in 1.21.
2021-03-08 20:52:50 +01:00
Patrick Ohly
85bfd26c17
CSIStorageCapacity: update rbac test data
...
This is the result of
UPDATE_BOOTSTRAP_POLICY_FIXTURE_DATA=true go test k8s.io/kubernetes/plugin/pkg/auth/authorizer/rbac/bootstrappolicy
after enabling the CSIStorageCapacity feature. This enables
additional RBAC entries for reading CSIDriver and
CSIStorageCapacity.
2021-03-08 20:52:50 +01:00
Patrick Ohly
5ca0814165
CSIStorageCapacity: use beta API
2021-03-08 20:52:50 +01:00
Patrick Ohly
e565951063
CSIStorageCapacity: register types unconditionally
...
That the object was registered depending on the feature gate was
called out as unusual during the 1.21 review. Previously, all beta
storage APIs were unders such feature gate checks, but its better to
drop that to be consistent with the rest of Kubernetes.
2021-03-08 20:52:50 +01:00
Patrick Ohly
a94c141060
CSIStorageCapacity: promote API to beta
...
The v1alpha1 API is left in place for now to ease the migration.
2021-03-08 20:52:50 +01:00
Patrick Ohly
504f105a9e
CSIStorageCapacity: prepare tests for enabling the feature by default
...
Defaults and validation are such that the field has to be set when
the feature is enabled, just as for the other boolean fields. This
was missing in some tests, which was okay as long as they ran
with the feature disabled. Once it gets enabled, validation will
flag the missing field as error.
Other tests didn't run at all.
2021-03-08 20:52:50 +01:00
Kubernetes Prow Robot
72d92159bc
Merge pull request #99925 from logicalhan/stable-latencies
...
promote apiserver_request_duration_seconds to STABLE
2021-03-08 11:04:46 -08:00
Kubernetes Prow Robot
8e6c7b5825
Merge pull request #99204 from pohly/podlog-after-termination
...
test: err more towards ignoring logs from terminated pods
2021-03-08 11:04:38 -08:00
Kubernetes Prow Robot
ab7d68a58a
Merge pull request #98653 from mandelsoft/stream
...
fix race condition problem in streamwatcher
2021-03-08 11:04:25 -08:00
Kubernetes Prow Robot
2783f2f76e
Merge pull request #96600 from maplain/internal-traffic-policy
...
Service Internal Traffic Policy
2021-03-08 11:04:12 -08:00
David Eads
b8194cf77c
switch most e2e tests to storage/v1 over v1beta1
2021-03-08 13:04:24 -05:00
Davanum Srinivas
b74354a5e5
Mark openstack/cinder csi migrations as GA
...
Signed-off-by: Davanum Srinivas <davanum@gmail.com>
2021-03-08 13:02:57 -05:00
Swetha Repakula
17beeaf47a
Promote EndpointSlice E2E Tests to Conformance
2021-03-08 09:44:47 -08:00
Swetha Repakula
3ef94fbe3e
Update e2e tests to use EndpointSlice v1 API
2021-03-08 09:44:47 -08:00
Kubernetes Prow Robot
71764b1309
Merge pull request #99939 from aojea/agnhost2.29
...
update agnhost readme
2021-03-08 09:31:54 -08:00
Kubernetes Prow Robot
027d9e6c25
Merge pull request #99835 from chendave/args
...
Move VolumeBinding plugin args validation to apis/config/validation
2021-03-08 09:31:42 -08:00
Fangyuan Li
62804c1ae8
Update generated files
...
1. `git clean -fxd`
2. `make update`
2021-03-08 08:42:54 -08:00
Kubernetes Prow Robot
4fccba9e06
Merge pull request #99800 from deads2k/beta-more
...
remove more CRD v1beta1 client dependencies from test integration
2021-03-08 07:51:54 -08:00
Kubernetes Prow Robot
f25f071af1
Merge pull request #99658 from deads2k/proxy-skip
...
promote AllowInsecureBackendProxy to stable
2021-03-08 07:51:42 -08:00
David Eads
2a0ef026b6
deepcopy statefulsets
2021-03-08 10:03:26 -05:00
David Eads
eb264c05c5
full deepcopy on munged pod spec
2021-03-08 10:02:56 -05:00
David Eads
5130ea0da3
remove pod toleration toleration seconds mutation
2021-03-08 10:02:51 -05:00
David Eads
5570a81040
add markers for inspected validation mutation hits
2021-03-08 10:02:46 -05:00
David Eads
bd5b1e2d05
move secret mutation from validation to prepareforupdate
2021-03-08 10:02:41 -05:00
David Eads
555eba5651
remove unnecessary mutations in validation
...
These mutations are already done in the strategy
2021-03-08 10:02:29 -05:00
David Eads
d000f2c8c5
tweak validation to avoid mutation
2021-03-08 09:58:34 -05:00
Jan Safranek
219cbc818a
Refactor CSI migration plugin manager to get featureGates as a parameter
...
This allows caller to provide fake ones for testing of various corner cases
(migration on A/D controller disabled while enabled on kubelet).
2021-03-08 13:50:01 +01:00