issue_owner_repo
listlengths
2
2
issue_body
stringlengths
0
261k
issue_title
stringlengths
1
925
issue_comments_url
stringlengths
56
81
issue_comments_count
int64
0
2.5k
issue_created_at
stringlengths
20
20
issue_updated_at
stringlengths
20
20
issue_html_url
stringlengths
37
62
issue_github_id
int64
387k
2.91B
issue_number
int64
1
131k
[ "kubernetes", "kubernetes" ]
**What happened**: updating controller and using API docs shows corev1.LimitRangeItem as not requiring `Type`, this is not the case. **What you expected to happen**: API Docs should show that Type is required **How to reproduce it (as minimally and precisely as possible)**: Per API Docs https://github.com/ku...
API Docs for corev1.LimitRangeItem show type as +optional and omitempty
https://api.github.com/repos/kubernetes/kubernetes/issues/87683/comments
7
2020-01-30T03:20:59Z
2020-02-14T05:10:32Z
https://github.com/kubernetes/kubernetes/issues/87683
557,243,168
87,683
[ "kubernetes", "kubernetes" ]
<!-- Please use this template while reporting a bug and provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner. Thanks! If the matter is security related, please disclose it privately via https://kubernetes.io/security/ --> **What happened**: There are som...
Fix non-ascii characters which are written accidentally
https://api.github.com/repos/kubernetes/kubernetes/issues/87679/comments
3
2020-01-30T01:02:05Z
2020-01-30T19:28:14Z
https://github.com/kubernetes/kubernetes/issues/87679
557,207,472
87,679
[ "kubernetes", "kubernetes" ]
Part of #87662. In alpha phase, pod topology spread only works in defaultProvider, to promote it in beta, we should implement the slow-path preState calculation when it's not set: https://github.com/kubernetes/kubernetes/blob/cad44602e1188a1feff0bc085dc8286c6c5d3640/pkg/scheduler/framework/plugins/podtopologyspre...
Calculate "preFilterState" for PodTopologySpread if it's not pre-calculated in preFilter plugin
https://api.github.com/repos/kubernetes/kubernetes/issues/87678/comments
1
2020-01-30T01:01:03Z
2020-02-06T17:22:04Z
https://github.com/kubernetes/kubernetes/issues/87678
557,207,192
87,678
[ "kubernetes", "kubernetes" ]
**What happened**: When converting JSON representations of v1beta1 CustomResourceDefintions with `Spec.Validation.OpenAPIV3Schema.Properties.(Minimum|Maximum|multipleOf)` fields set to a whole number, the `runtime.DefaultUnstructuredConverter.FromUnstructured` function returns 'cannot convert int64 to float64'. M...
'cannot convert int64 to float64' with runtime.DefaultUnstructuredConverter.FromUnstructured on CustomResourceDefinitions with integer minimum, maximum, and/or multipleOf values
https://api.github.com/repos/kubernetes/kubernetes/issues/87675/comments
11
2020-01-29T22:33:13Z
2020-08-30T00:44:23Z
https://github.com/kubernetes/kubernetes/issues/87675
557,157,377
87,675
[ "kubernetes", "kubernetes" ]
We currently fail with an error when generating the openapi if `listType` is missing on lists, and that's a good thing, but we can be even more useful and suggest `listType=map` along with `listMapKeys=...` if we can figure out a good key name. For example, if we detect that the list is a list of structs that have a...
Suggest `listType=map` if we can guess good key options
https://api.github.com/repos/kubernetes/kubernetes/issues/87674/comments
7
2020-01-29T22:17:41Z
2020-10-14T20:14:11Z
https://github.com/kubernetes/kubernetes/issues/87674
557,150,368
87,674
[ "kubernetes", "kubernetes" ]
**What happened**: Currently, the mutating admission happens before updating managedFields in create requests, but in the update and patch handlers, mutating admission happens after updating managedFields. This causes the ownership of fields modified by mutating webhooks to be inconsistent based on the request verb. ...
Mutating admission should happen after updating managedFields for create requests
https://api.github.com/repos/kubernetes/kubernetes/issues/87672/comments
2
2020-01-29T21:39:44Z
2020-01-31T02:46:33Z
https://github.com/kubernetes/kubernetes/issues/87672
557,131,527
87,672
[ "kubernetes", "kubernetes" ]
**Which jobs are flaking**: pull-kubernetes-e2e-gce **Which test(s) are flaking**: - [sig-api-machinery] Garbage collector should not be blocked by dependency circle [Conformance] - [sig-api-machinery] Garbage collector should orphan RS created by deployment when deleteOptions.PropagationPolicy is Orphan [Confo...
[flaky test] Garbage collector timeout tests
https://api.github.com/repos/kubernetes/kubernetes/issues/87668/comments
13
2020-01-29T20:53:52Z
2020-02-22T08:08:48Z
https://github.com/kubernetes/kubernetes/issues/87668
557,109,391
87,668
[ "kubernetes", "kubernetes" ]
**What happened**: I noticed that in both the update and patch handler, the apiserver calls admission webhooks from within the asynchronous [finishRequest](https://github.com/kubernetes/kubernetes/blob/e1dd9af8948f983d48dfc0dd81dc31b7d6c1672f/staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest.go#L210-L212) funct...
Mutating admission should be handled asynchronously for create requests
https://api.github.com/repos/kubernetes/kubernetes/issues/87666/comments
3
2020-01-29T20:32:42Z
2020-01-31T02:46:33Z
https://github.com/kubernetes/kubernetes/issues/87666
557,099,628
87,666
[ "kubernetes", "kubernetes" ]
**NOTE:** We name the feature as "Even Pods Spread" before, however, the term "even" is ambiguous as the feature actually enables you to control how the pods are spread - either in an absolute "even" way, or skew in some degree. So, we're going to use the term "Pod Topology Spread" to better describe the feature, it's ...
[Umbrella] Promote Pod Topology Spread to Beta
https://api.github.com/repos/kubernetes/kubernetes/issues/87662/comments
1
2020-01-29T19:31:31Z
2020-03-17T19:30:55Z
https://github.com/kubernetes/kubernetes/issues/87662
557,069,787
87,662
[ "kubernetes", "kubernetes" ]
The logic for deriving IPs from Pods is now being standardized thanks to https://github.com/kubernetes/kubernetes/pull/87608. We should move the [helper functions used by EndpointSlice](https://github.com/kubernetes/kubernetes/blob/master/pkg/controller/endpointslice/utils.go#L130-L148) to `/pkg/controller/util/endpoin...
Refactor Endpoints and EndpointSlice controller to share Pod IP code
https://api.github.com/repos/kubernetes/kubernetes/issues/87659/comments
8
2020-01-29T18:01:16Z
2020-06-28T01:08:34Z
https://github.com/kubernetes/kubernetes/issues/87659
557,025,985
87,659
[ "kubernetes", "kubernetes" ]
Part of #87617, and a requirement for #85737 In `kubescheduler.config.k8s.io/v1alpha2` plugin-specific parameters should be in `.pluginConfig`. /sig scheduling /kind cleanup /assign
Move HardPodAffinitySymmetricWeight to PluginConfig
https://api.github.com/repos/kubernetes/kubernetes/issues/87657/comments
0
2020-01-29T16:54:19Z
2020-02-13T22:13:26Z
https://github.com/kubernetes/kubernetes/issues/87657
556,990,423
87,657
[ "kubernetes", "kubernetes" ]
**What would you like to be added**: Rename "taint" to something less vulgar. **Why is this needed**: In common English, a taint is an area in the nether regions of the human body. This makes discussing Kubernetes "taints" very difficult in a professional or public setting, especially if anyone who doesn't already...
Rename "taint" to something less vulgar
https://api.github.com/repos/kubernetes/kubernetes/issues/87655/comments
8
2020-01-29T16:42:45Z
2020-01-30T19:16:37Z
https://github.com/kubernetes/kubernetes/issues/87655
556,983,641
87,655
[ "kubernetes", "kubernetes" ]
Example from a recent [pull-kubernetes-e2e-gce job](https://storage.googleapis.com/kubernetes-jenkins/pr-logs/pull/87606/pull-kubernetes-e2e-gce/1222164302757105664/build-log.txt) ``` W0128 14:38:13.618] - The resource 'projects/cos-cloud/global/images/cos-77-12371-89-0' is deprecated. A suggested replacement is 'pr...
cos-77-12371-89-0 is deprecated
https://api.github.com/repos/kubernetes/kubernetes/issues/87651/comments
2
2020-01-29T16:15:46Z
2020-01-30T13:06:26Z
https://github.com/kubernetes/kubernetes/issues/87651
556,967,103
87,651
[ "kubernetes", "kubernetes" ]
I have a k8s cluster. I want to add some custom names after this VERSION. What do I need to do? ``` [root@yxzking-91101 ~]# kubectl get nodes -o wide NAME STATUS ROLES AGE VERSION INTERNAL-IP EXTERNAL-IP OS-IMAGE KERNE 192.168.0.172 Ready <none> 1...
v1.17 Can you customize the version information?
https://api.github.com/repos/kubernetes/kubernetes/issues/87649/comments
4
2020-01-29T16:00:40Z
2020-01-30T16:43:01Z
https://github.com/kubernetes/kubernetes/issues/87649
556,957,783
87,649
[ "kubernetes", "kubernetes" ]
**What happened**: I have a Highly Available Kubernetes cluster (v1.17.0) living in a private Cloud, and API server is configured to authenticate users with Azure Active Directory. Kubectl is installed on 3 computers with differents systems : macOS, Linux, and Windows. 1. After upgrading kubectl to 1.17.2 on m...
Getting invalid Azure Active Directory token after upgrading kubectl to 1.17.2
https://api.github.com/repos/kubernetes/kubernetes/issues/87643/comments
5
2020-01-29T10:19:10Z
2020-01-30T07:25:54Z
https://github.com/kubernetes/kubernetes/issues/87643
556,765,027
87,643
[ "kubernetes", "kubernetes" ]
## Background As you may have known, internally, the Kubernetes scheduler handles "unassignedPod" (nil `.spec.nodeName`) and "assignedPod" (non-nil `.spec.nodeName`) simultaneously. - one to be handled in the internal cache: https://github.com/kubernetes/kubernetes/blob/15c3f1b119ff4b4073c86df05c819a9672b80d...
Unexpected scheduling of replacement Pod upon Pod deletion
https://api.github.com/repos/kubernetes/kubernetes/issues/87621/comments
28
2020-01-28T20:11:18Z
2022-08-31T02:55:55Z
https://github.com/kubernetes/kubernetes/issues/87621
556,441,416
87,621
[ "kubernetes", "kubernetes" ]
This is a tracking issue for the changes we plan to have in `kubescheduler.config.k8s.io/v1alpha2` - [x] Blocking: new `pkg/scheduler/apis/config/v1alpha2` folder - [x] Deprecate AlgorithmSource #87526 - [x] Move HardPodAffinitySymmetricWeight to PluginConfig #87657 - [x] Multi Scheduling Profiles #85737 - [x] R...
Scheduler Component Config v1alpha2
https://api.github.com/repos/kubernetes/kubernetes/issues/87617/comments
15
2020-01-28T19:04:16Z
2020-03-16T17:19:54Z
https://github.com/kubernetes/kubernetes/issues/87617
556,406,505
87,617
[ "kubernetes", "kubernetes" ]
<!-- STOP -- PLEASE READ! GitHub is not the right place for support requests. If you're looking for help, check [Stack Overflow](https://stackoverflow.com/questions/tagged/kubernetes) and the [troubleshooting guide](https://kubernetes.io/docs/tasks/debug-application-cluster/troubleshooting/). You can also pos...
(1.17) Kubelet won't reconnect to Apiserver after NIC failure (use of closed network connection)
https://api.github.com/repos/kubernetes/kubernetes/issues/87615/comments
163
2020-01-28T18:20:31Z
2023-07-17T10:34:13Z
https://github.com/kubernetes/kubernetes/issues/87615
556,384,979
87,615
[ "kubernetes", "kubernetes" ]
**What would you like to be added**: From looking at our gomod deps we seem to have drifted out of date again and we should update - https://github.com/etcd-io/etcd/releases/tag/v3.4.3 **Why is this needed**: Bug fixes, feature adds, validation. /cc @jpbetz @kubernetes/sig-api-machinery-misc @dlipovetsky
Update etcd server + client libraries to latest etcd 3.4 release.
https://api.github.com/repos/kubernetes/kubernetes/issues/87613/comments
6
2020-01-28T18:08:54Z
2020-01-28T22:09:46Z
https://github.com/kubernetes/kubernetes/issues/87613
556,379,368
87,613
[ "kubernetes", "kubernetes" ]
<!-- Please use this template while reporting a bug and provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner. Thanks! If the matter is security related, please disclose it privately via https://kubernetes.io/security/ --> **What happened**: I have an run...
Nodeport issues with ipv6-only Cluster
https://api.github.com/repos/kubernetes/kubernetes/issues/87604/comments
10
2020-01-28T09:32:38Z
2020-02-07T01:46:01Z
https://github.com/kubernetes/kubernetes/issues/87604
556,084,934
87,604
[ "kubernetes", "kubernetes" ]
<!-- Please use this template while reporting a bug and provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner. Thanks! If the matter is security related, please disclose it privately via https://kubernetes.io/security/ --> **What happened**: * Created a...
service IPs and ports are not released when deleting a service via a finalizer-removing update
https://api.github.com/repos/kubernetes/kubernetes/issues/87603/comments
27
2020-01-28T08:30:32Z
2021-09-11T19:40:06Z
https://github.com/kubernetes/kubernetes/issues/87603
556,055,121
87,603
[ "kubernetes", "kubernetes" ]
<!-- Please use this template while reporting a bug and provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner. Thanks! If the matter is security related, please disclose it privately via https://kubernetes.io/security/ --> **What happened**: `kubectl di...
`kubectl diff --server-side` fails
https://api.github.com/repos/kubernetes/kubernetes/issues/87600/comments
11
2020-01-28T06:15:22Z
2020-03-10T01:57:36Z
https://github.com/kubernetes/kubernetes/issues/87600
556,005,505
87,600
[ "kubernetes", "kubernetes" ]
In the kind `flowcontrol.apiserver.k8s.io/v1alpha1.FlowSchema`, the fields [`.spec.rules`](https://github.com/kubernetes/kubernetes/blob/ec5321c6a9f23e5ad26cf88a41fda9dba0c5ce89/staging/src/k8s.io/api/flowcontrol/v1alpha1/types.go#L110), [`.spec.rules[].subjects`](https://github.com/kubernetes/kubernetes/blob/ec5321c6a...
Invalid listTypes in FlowSchema cause errors in apiserver logs
https://api.github.com/repos/kubernetes/kubernetes/issues/87594/comments
26
2020-01-27T23:58:34Z
2020-01-31T01:00:11Z
https://github.com/kubernetes/kubernetes/issues/87594
555,905,366
87,594
[ "kubernetes", "kubernetes" ]
<!-- Please only use this template for submitting enhancement requests --> **What would you like to be added**: Enable service principal (with password credential) in kubectl to authenticate with AzureAD **Why is this needed**: Current implementation always uses device code flow which requires user interaction....
support non-interactive (service principal) authentication with AzureAD in kubectl
https://api.github.com/repos/kubernetes/kubernetes/issues/87587/comments
8
2020-01-27T23:17:19Z
2020-07-18T03:58:29Z
https://github.com/kubernetes/kubernetes/issues/87587
555,891,340
87,587
[ "kubernetes", "kubernetes" ]
<!-- Please use this template while reporting a bug and provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner. Thanks! If the matter is security related, please disclose it privately via https://kubernetes.io/security/ --> **What happened**: Due to the ad...
Azure Cloud Provider should stop using AAD endpoint with apiVersion specified
https://api.github.com/repos/kubernetes/kubernetes/issues/87586/comments
2
2020-01-27T23:12:52Z
2020-02-13T13:16:36Z
https://github.com/kubernetes/kubernetes/issues/87586
555,889,519
87,586
[ "kubernetes", "kubernetes" ]
**What happened**: I tried to apply the same statefulset twice and on the second apply, the api reported a validation error. **What you expected to happen**: I would expect that the same statefulset should apply successfully or fail consistently any number of times. **How to reproduce it (as minimally and preci...
unable to reapply statefulset with volumeClaimTemplate/apiVersion
https://api.github.com/repos/kubernetes/kubernetes/issues/87583/comments
11
2020-01-27T21:47:49Z
2020-02-01T04:08:17Z
https://github.com/kubernetes/kubernetes/issues/87583
555,853,511
87,583
[ "kubernetes", "kubernetes" ]
<!-- Please use this template while reporting a bug and provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner. Thanks! If the matter is security related, please disclose it privately via https://kubernetes.io/security/ --> **What happened**: Using the Man...
[Azure] UseManagedIdentityExtension is broken for Auth with Azure container registry
https://api.github.com/repos/kubernetes/kubernetes/issues/87579/comments
8
2020-01-27T20:00:39Z
2020-01-29T04:22:35Z
https://github.com/kubernetes/kubernetes/issues/87579
555,799,943
87,579
[ "kubernetes", "kubernetes" ]
<!-- Please only use this template for submitting enhancement requests --> **What would you like to be added**: The E2E tests evaluate Pod Phases adjectives, describing the state of a pod, i.e. Succeeded, Failed, and so on. But, they log nouns (success or failure). ``` Waiting up to 5m0s for pod "client-c...
Replace "success/failure" nouns with the actual pod adjective phases (succeeded or failed).
https://api.github.com/repos/kubernetes/kubernetes/issues/87574/comments
17
2020-01-27T16:35:03Z
2020-02-25T14:31:19Z
https://github.com/kubernetes/kubernetes/issues/87574
555,692,405
87,574
[ "kubernetes", "kubernetes" ]
Hello they commissioned me to do this test: 1)installing docker-desktop and enabling kubernetes 2)Deployment of a minimal nginx in the kubernetes environment created 3)deployment of prometheus-graphana-node-exporter in the kube environment created 4) Access to graphana and create a simple dashboard that monitors t...
Help me
https://api.github.com/repos/kubernetes/kubernetes/issues/87573/comments
4
2020-01-27T16:01:38Z
2020-04-12T21:33:54Z
https://github.com/kubernetes/kubernetes/issues/87573
555,671,786
87,573
[ "kubernetes", "kubernetes" ]
is it possible to setup a job to only pull image? We have a use case that our image is so large that it takes 30+min to pull. this causes the deployment time unmanageable as the pull may even fail. Can we have a job to only pull the image then we can do deployment at a later stage? Thanks!
a job to pull image
https://api.github.com/repos/kubernetes/kubernetes/issues/87570/comments
2
2020-01-27T14:28:52Z
2020-01-27T14:42:10Z
https://github.com/kubernetes/kubernetes/issues/87570
555,611,455
87,570
[ "kubernetes", "kubernetes" ]
**What happened**: Container can't append search names from resolv.conf file for looked service in high load.Instead it sends the naked hostname as a questions to core-dns. **What you expected to happen**: For example , if I want to look for 'ms-hostname' service, I want it to send question like 'ms-hostname...
In high load Kubernetes containers doesn't use /etc/resolv.conf file.
https://api.github.com/repos/kubernetes/kubernetes/issues/87560/comments
6
2020-01-27T08:03:57Z
2020-02-06T23:36:07Z
https://github.com/kubernetes/kubernetes/issues/87560
555,414,411
87,560
[ "kubernetes", "kubernetes" ]
<!-- Please use this template while reporting a bug and provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner. Thanks! If the matter is security related, please disclose it privately via https://kubernetes.io/security/ --> **What happened**: Goal: To run ...
Standalone kubelet demands pki/kubelet.key
https://api.github.com/repos/kubernetes/kubernetes/issues/87558/comments
7
2020-01-26T22:47:26Z
2020-06-25T01:59:25Z
https://github.com/kubernetes/kubernetes/issues/87558
555,299,640
87,558
[ "kubernetes", "kubernetes" ]
**Which jobs are flaking**: ci-kubernetes-e2e-gce-master-new-gci-kubectl-skew **Which test(s) are flaking**: Overall SkewTest [sig-cli] Kubectl client Kubectl apply should apply a new configuration to an existing RC **Testgrid link**: https://testgrid.k8s.io/sig-release-master-blocking#skew-cluster-latest-ku...
Flaking test: "[sig-cli] Kubectl client Kubectl apply should apply a new configuration to an existing RC"
https://api.github.com/repos/kubernetes/kubernetes/issues/87556/comments
4
2020-01-26T14:18:17Z
2020-03-19T16:09:19Z
https://github.com/kubernetes/kubernetes/issues/87556
555,234,764
87,556
[ "kubernetes", "kubernetes" ]
original issue kubernetes/client-go#735 **What happened**: I am loading my local kubeconfig which contains multiple clusters and contexts. The default context is "prod" and one of the config values I want to override is the `CurrentContext` ```golang clientConfig := clientcmd.NewNonInteractiveDeferredLoadingC...
[client-go] Can't override config values
https://api.github.com/repos/kubernetes/kubernetes/issues/87554/comments
11
2020-01-26T13:26:42Z
2020-10-02T17:48:59Z
https://github.com/kubernetes/kubernetes/issues/87554
555,228,221
87,554
[ "kubernetes", "kubernetes" ]
<!-- Please use this template while reporting a bug and provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner. Thanks! If the matter is security related, please disclose it privately via https://kubernetes.io/security/ --> **What happened**: While studyin...
The AddEventHandlerWithResyncPeriod of SharedInformer has an error condition but can not report it
https://api.github.com/repos/kubernetes/kubernetes/issues/87552/comments
11
2020-01-26T07:21:53Z
2020-06-27T11:55:36Z
https://github.com/kubernetes/kubernetes/issues/87552
555,188,577
87,552
[ "kubernetes", "kubernetes" ]
Haha
Cool
https://api.github.com/repos/kubernetes/kubernetes/issues/87547/comments
3
2020-01-25T05:27:40Z
2020-01-25T15:46:35Z
https://github.com/kubernetes/kubernetes/issues/87547
555,045,458
87,547
[ "kubernetes", "kubernetes" ]
~/vimrc set tabstop=2 shiftwidth=2 expandtab
vim cheat
https://api.github.com/repos/kubernetes/kubernetes/issues/87546/comments
10
2020-01-25T03:51:55Z
2022-02-20T22:29:53Z
https://github.com/kubernetes/kubernetes/issues/87546
555,038,465
87,546
[ "kubernetes", "kubernetes" ]
Cool
I'm back at the house now and I have
https://api.github.com/repos/kubernetes/kubernetes/issues/87545/comments
3
2020-01-25T03:37:12Z
2020-01-25T15:46:46Z
https://github.com/kubernetes/kubernetes/issues/87545
555,037,308
87,545
[ "kubernetes", "kubernetes" ]
<!-- Please only use this template for submitting enhancement requests --> **What would you like to be added**: kubectl's azure auth module would obtain an AAD token whose `audience` claim has undesired `spn:` prefix. This claim is used in kube-apiserver for oidc client ID verification. To support migration of kube...
Enable multiple oidc-client support in api-server to support kubectl migration
https://api.github.com/repos/kubernetes/kubernetes/issues/87542/comments
2
2020-01-25T01:03:41Z
2020-02-05T19:47:11Z
https://github.com/kubernetes/kubernetes/issues/87542
555,020,889
87,542
[ "kubernetes", "kubernetes" ]
<!-- Please only use this template for submitting enhancement requests --> **What would you like to be added**: add a flag in Azure auth module in kubectl to get AAD token with audience claim in proper (most commonly accepted) format. **Why is this needed**: The original issue is explained very well in #86410. ...
Update Azure auth module in kubectl to obtain proper audience claim in AAD token
https://api.github.com/repos/kubernetes/kubernetes/issues/87541/comments
3
2020-01-25T00:50:06Z
2020-02-07T13:56:29Z
https://github.com/kubernetes/kubernetes/issues/87541
555,018,539
87,541
[ "kubernetes", "kubernetes" ]
**What happened**: When running external CSI Driver tests with the Kubernetes E2E: https://prow.k8s.io/view/gcs/kubernetes-jenkins/pr-logs/pull/sigs.k8s.io_gcp-compute-persistent-disk-csi-driver/458/pull-gcp-compute-persistent-disk-csi-driver-kubernetes-integration/1220789322400141312/ We seem to be getting the...
Test panic in "AfterEach" for skipped tests during "AllNodesReady"
https://api.github.com/repos/kubernetes/kubernetes/issues/87536/comments
2
2020-01-24T23:07:58Z
2020-01-26T19:13:03Z
https://github.com/kubernetes/kubernetes/issues/87536
554,996,389
87,536
[ "kubernetes", "kubernetes" ]
**What would you like to be added**: Services names are restricted to DNS-1035 labels (no leading digit). Most other API Objects have names that are DNS-1123 labels (allowed leading digit). Can we change service names to DNS-1123 labels ? If we do this, we will need to handle leading digits in env-vars. Maybe a...
Consider allowing DNS-1123 labels for service names
https://api.github.com/repos/kubernetes/kubernetes/issues/87530/comments
6
2020-01-24T17:35:45Z
2020-02-06T23:31:53Z
https://github.com/kubernetes/kubernetes/issues/87530
554,865,539
87,530
[ "kubernetes", "kubernetes" ]
AlgorithmSource was meant to be a bridge to allow specifying a Policy file in ComponentConfig. Now that all Policy configuration is available through ComponentConfig directly, AlgorithmSource is not needed. This is the first step towards deprecating scheduler Policy file. /assign @alculquicondor /cc @ravisantoshgu...
Deprecate AlgorithmSource from scheduler ComponentConfig
https://api.github.com/repos/kubernetes/kubernetes/issues/87526/comments
19
2020-01-24T15:59:30Z
2021-05-17T12:11:44Z
https://github.com/kubernetes/kubernetes/issues/87526
554,817,788
87,526
[ "kubernetes", "kubernetes" ]
This helps debugging scheduler's behavior, currently we don't have logs that indicate when the scheduler first saw a pod or a node. The log level should be v=3. /sig scheduling /cc @Huang-Wei @alculquicondor
Add logging to scheduler's event handlers
https://api.github.com/repos/kubernetes/kubernetes/issues/87524/comments
5
2020-01-24T15:20:10Z
2020-01-27T14:31:03Z
https://github.com/kubernetes/kubernetes/issues/87524
554,795,867
87,524
[ "kubernetes", "kubernetes" ]
Our current plugins use the `PostFilter` score to do pre-processing for `Score`. It makes more sense for the endpoint to be renamed to `PreScore`. We can do so as we move to `v1alpha2` for the Component Config API (#85737). `PreScore` would no longer need to accept `NodeToStatusMap`. This opens the possibility of mo...
Scheduler Framework: Rename `PostFilter` to `PreScore`
https://api.github.com/repos/kubernetes/kubernetes/issues/87523/comments
36
2020-01-24T15:07:40Z
2020-02-15T21:29:29Z
https://github.com/kubernetes/kubernetes/issues/87523
554,788,934
87,523
[ "kubernetes", "kubernetes" ]
Currently the scheduler by default spreads the pods of a deployment based on a hard-coded [criteria](https://github.com/kubernetes/kubernetes/blob/90da466221c14e76b4509ddc310e7a7bd4e0039c/pkg/scheduler/framework/plugins/defaultpodtopologyspread/default_pod_topology_spread.go#L73). We recently added a pod object api...
Skip default spreading scoring plugin for pods that define TopologySpreadConstraints
https://api.github.com/repos/kubernetes/kubernetes/issues/87521/comments
4
2020-01-24T14:33:24Z
2020-01-29T15:32:55Z
https://github.com/kubernetes/kubernetes/issues/87521
554,770,078
87,521
[ "kubernetes", "kubernetes" ]
/kind bug https://github.com/kubernetes/kubernetes/pull/75368#issuecomment-577953647 changed behavior of client-go on connection refused errors, which changed a short wait and an "invalid host/port" error into a long retry wait and a confusing "internal server" error /assign @deads2k @mfojtik _Originally poste...
connection refused errors retry slowly and ultimately return incorrect error
https://api.github.com/repos/kubernetes/kubernetes/issues/87510/comments
6
2020-01-24T01:26:02Z
2020-02-18T23:32:53Z
https://github.com/kubernetes/kubernetes/issues/87510
554,499,429
87,510
[ "kubernetes", "kubernetes" ]
<!-- Please use this template while reporting a bug and provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner. Thanks! If the matter is security related, please disclose it privately via https://kubernetes.io/security/ --> **What happened**: I'm attempt...
node Event missing apiVersion in the involvedObject
https://api.github.com/repos/kubernetes/kubernetes/issues/87506/comments
4
2020-01-24T00:39:33Z
2020-03-04T10:31:48Z
https://github.com/kubernetes/kubernetes/issues/87506
554,487,402
87,506
[ "kubernetes", "kubernetes" ]
Job kind-ipv6-master-parallel (ci-kubernetes-kind-ipv6-e2e-parallel) stuck in progress since the 6th of Jan 2020. **Testgrid link**: https://testgrid.k8s.io/sig-release-master-blocking#kind-ipv6-master-parallel **Prow link**: https://prow.k8s.io/?job=ci-kubernetes-kind-ipv6-e2e-parallel **Anything else we ne...
[Stale Job] kind-ipv6-master-parallel (ci-kubernetes-kind-ipv6-e2e-parallel)
https://api.github.com/repos/kubernetes/kubernetes/issues/87497/comments
4
2020-01-23T16:57:21Z
2020-01-23T19:10:45Z
https://github.com/kubernetes/kubernetes/issues/87497
554,283,600
87,497
[ "kubernetes", "kubernetes" ]
<!-- Please only use this template for submitting reports about flaky tests or jobs (pass or fail with no underlying change in code) in Kubernetes CI --> **Which jobs are flaking**: `kubeadm-kinder-master (ci-kubernetes-e2e-kubeadm-kinder-master)` **Which test(s) are flaking**: `task-02-create-cluster` *...
[Flaky Test] kubeadm-kinder-master (ci-kubernetes-e2e-kubeadm-kinder-master)
https://api.github.com/repos/kubernetes/kubernetes/issues/87496/comments
6
2020-01-23T16:34:13Z
2020-01-24T07:41:20Z
https://github.com/kubernetes/kubernetes/issues/87496
554,269,959
87,496
[ "kubernetes", "kubernetes" ]
We're experiencing recurring problems with cephfs mounts on cronjobs. A lot of them result in the following kind of errors: ``` State: Terminated Reason: ContainerCannotRun Message: error while creating mount source path '/var/lib/kubelet/pods/22f40f9a-8588-4fd7-9ef3-7fec25b48f12...
CEPHFS: File exists
https://api.github.com/repos/kubernetes/kubernetes/issues/87491/comments
40
2020-01-23T12:24:45Z
2022-07-13T13:30:09Z
https://github.com/kubernetes/kubernetes/issues/87491
554,125,377
87,491
[ "kubernetes", "kubernetes" ]
Do we have any option for adding egress rules in security group for the AWS Load Balancer (like classic load balancer)? We have "loadBalancerSourceRanges" for the ingress rules and do we have any other option to add the egress rules for the security group? <!-- STOP -- PLEASE READ! GitHub is not the right pla...
Do we have any option for adding egress rules in security group for the AWS Load Balancer?
https://api.github.com/repos/kubernetes/kubernetes/issues/87490/comments
6
2020-01-23T10:59:57Z
2020-06-22T08:21:52Z
https://github.com/kubernetes/kubernetes/issues/87490
554,085,462
87,490
[ "kubernetes", "kubernetes" ]
**What happened**: Creation of `CronJob` resource failed **What you expected to happen**: Creation of `CronJob` to succeed. **How to reproduce it (as minimally and precisely as possible)**: Try to apply the following resource (the AWS credentials have been scrambled of course, but I think it is the pr...
CronJob creation fails when using AWS Secret Access key as config key
https://api.github.com/repos/kubernetes/kubernetes/issues/87486/comments
4
2020-01-23T08:03:45Z
2020-01-23T13:25:16Z
https://github.com/kubernetes/kubernetes/issues/87486
554,000,643
87,486
[ "kubernetes", "kubernetes" ]
<!-- Please use this template while reporting a bug and provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner. Thanks! If the matter is security related, please disclose it privately via https://kubernetes.io/security/ --> **What happened**: `E0122 19:5...
Port Forwarding Does Not Work If App is Bound to Pod IP Address
https://api.github.com/repos/kubernetes/kubernetes/issues/87484/comments
8
2020-01-23T02:06:11Z
2020-07-06T00:15:51Z
https://github.com/kubernetes/kubernetes/issues/87484
553,897,923
87,484
[ "kubernetes", "kubernetes" ]
**What happened**: Pick an OS image where python is python3 and the cluster will not come up. **What you expected to happen**: Cluster should come up. **How to reproduce it (as minimally and precisely as possible)**: Switch the default OS image to use an OS which has python3 as the default python. Run cluster...
gce cluster-up does not work with OS images which default to Python3
https://api.github.com/repos/kubernetes/kubernetes/issues/87482/comments
2
2020-01-23T01:51:16Z
2020-01-24T11:03:21Z
https://github.com/kubernetes/kubernetes/issues/87482
553,894,462
87,482
[ "kubernetes", "kubernetes" ]
**What happened**: Used kube-up.sh to bring up a GCE cluster and then logged on to the master. Run kubectl on the master, is hangs for a while (30 seconds) and then returns an error. $ kubectl get nodes Error from server (InternalError): an error on the server ("") has prevented the request from succeeding **W...
Kubectl not working on GCE master
https://api.github.com/repos/kubernetes/kubernetes/issues/87481/comments
12
2020-01-23T01:27:45Z
2020-05-08T12:23:43Z
https://github.com/kubernetes/kubernetes/issues/87481
553,888,819
87,481
[ "kubernetes", "kubernetes" ]
<!-- Please use this template while reporting a bug and provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner. Thanks! If the matter is security related, please disclose it privately via https://kubernetes.io/security/ --> **What happened**: While worki...
k8s.io/apimachinery/pkg/util/yaml/#YAMLDecoder.Read behaves inconsistently when parsing empty documents
https://api.github.com/repos/kubernetes/kubernetes/issues/87477/comments
7
2020-01-22T22:49:45Z
2020-06-21T23:47:35Z
https://github.com/kubernetes/kubernetes/issues/87477
553,840,378
87,477
[ "kubernetes", "kubernetes" ]
<!-- Please only use this template for submitting enhancement requests --> **What would you like to be added**: Similarly to how we set requests and limits of CPU, memory, and storage per container, it would be nice if we could set not only a storage 'request' but also a 'limit' for a PVC. This would enable s...
dynamic resizing of persistent volume claim storage request based on predefined conditions
https://api.github.com/repos/kubernetes/kubernetes/issues/87476/comments
4
2020-01-22T22:48:16Z
2020-06-21T00:24:28Z
https://github.com/kubernetes/kubernetes/issues/87476
553,839,806
87,476
[ "kubernetes", "kubernetes" ]
/sig scheduling /kind feature Now that framework migration phase 2 is done and Plugins are first class citizens of kube-scheduler, I think we should honor PluginConfig for the default plugins (today just InterPodAffinity). We have most of the machinery to do so, but since we have `KubeSchedulerConfiguration.Hard...
PluginConfig for InterPodAffinity not respected
https://api.github.com/repos/kubernetes/kubernetes/issues/87474/comments
7
2020-01-22T22:32:16Z
2020-02-20T15:18:15Z
https://github.com/kubernetes/kubernetes/issues/87474
553,833,358
87,474
[ "kubernetes", "kubernetes" ]
This is near the top of the flakiness list: https://testgrid.k8s.io/presubmits-kubernetes-blocking#pull-kubernetes-e2e-gce&sort-by-flakiness= I looked at the most recent flake, it looks like the GC legit just did not delete the expected thing at all. 60 seconds seems plenty generous. https://prow.k8s.io/view/gcs/...
E2E: [sig-api-machinery] Garbage collector should support cascading deletion of custom resources
https://api.github.com/repos/kubernetes/kubernetes/issues/87473/comments
16
2020-01-22T22:31:40Z
2020-03-19T16:14:08Z
https://github.com/kubernetes/kubernetes/issues/87473
553,833,120
87,473
[ "kubernetes", "kubernetes" ]
I have been running into testing inconsistencies when using informers. With a high enough test count, the informer is presumably not called since the channel hangs to receive forever. To reproduce, try running the code below with `go test -v --count=1000000 <pkg>`: ```go package tester import ( "testing" "ti...
Fake client watch + informer dropping events
https://api.github.com/repos/kubernetes/kubernetes/issues/87472/comments
9
2020-01-22T22:08:08Z
2023-07-28T07:37:28Z
https://github.com/kubernetes/kubernetes/issues/87472
553,822,782
87,472
[ "kubernetes", "kubernetes" ]
<!-- Please use this template while reporting a bug and provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner. Thanks! If the matter is security related, please disclose it privately via https://kubernetes.io/security/ --> **What happened**: Cannot remove...
ContainerCannotRun pod cannot be deleted.
https://api.github.com/repos/kubernetes/kubernetes/issues/87470/comments
8
2020-01-22T20:47:47Z
2020-09-05T14:13:46Z
https://github.com/kubernetes/kubernetes/issues/87470
553,784,374
87,470
[ "kubernetes", "kubernetes" ]
**What happened**: ``` invalid label value: "prod-redacted-queue": must be no more than 63 characters ``` **What you expected to happen**: Autoscaling to work effectively if it had had a shorter length. **How to reproduce it (as minimally and precisely as possible)**: Create a match on your external metric ...
Length restrictions on HPA External Metrics
https://api.github.com/repos/kubernetes/kubernetes/issues/87469/comments
5
2020-01-22T20:33:13Z
2020-06-20T23:23:25Z
https://github.com/kubernetes/kubernetes/issues/87469
553,777,333
87,469
[ "kubernetes", "kubernetes" ]
### Flaky Job: pr:pull-kubernetes-e2e-gce-100-performance Flakes in the past week: **32** Consistency: **92.30%** #### Flakiest tests by flake count: | Test | Flake Count | | --- | --- | | Stage | 16 | | ClusterLoaderV2 | 11 | | Timeout | 10 | | testing/density/config.yaml | 9 | #### Previously closed issues for th...
pr:pull-kubernetes-e2e-gce-100-performance flaked 32 times in the past week
https://api.github.com/repos/kubernetes/kubernetes/issues/87468/comments
8
2020-01-22T20:04:26Z
2020-07-28T10:05:13Z
https://github.com/kubernetes/kubernetes/issues/87468
553,763,835
87,468
[ "kubernetes", "kubernetes" ]
This issue is to make sure we bump the structured merge diff dependency to non pre-release version of v3.0.0 prior to release of 1.18, as a follow up to https://github.com/kubernetes/kubernetes/pull/87442 /wg apply /sig api-machinery /milestone 1.18 /assign /cc @liggitt @apelisse
Bump structured merge diff dependency to v3.0.0
https://api.github.com/repos/kubernetes/kubernetes/issues/87466/comments
6
2020-01-22T19:15:40Z
2020-03-05T21:03:29Z
https://github.com/kubernetes/kubernetes/issues/87466
553,739,340
87,466
[ "kubernetes", "kubernetes" ]
I am following the examples in Kubernetes in Action. I am currently trying to create the following pod: ``` apiVersion: v1 kind: Pod metadata: name: gitrepo-volume-pod spec: containers: - image: nginx:alpine name: web-server ...
Pod fails to connect to volume github due to proxy
https://api.github.com/repos/kubernetes/kubernetes/issues/87465/comments
2
2020-01-22T18:59:48Z
2020-03-19T17:00:40Z
https://github.com/kubernetes/kubernetes/issues/87465
553,731,622
87,465
[ "kubernetes", "kubernetes" ]
<!-- Please use this template while reporting a bug and provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner. Thanks! If the matter is security related, please disclose it privately via https://kubernetes.io/security/ --> **What happened**: Kubernetes 1.17...
Azure AD: Migration path from 1.17.0 to 1.17.1
https://api.github.com/repos/kubernetes/kubernetes/issues/87464/comments
21
2020-01-22T18:59:20Z
2020-04-08T15:32:23Z
https://github.com/kubernetes/kubernetes/issues/87464
553,731,356
87,464
[ "kubernetes", "kubernetes" ]
**What happened**: Went to check API docs for 1.16, but saw it was for 1.17 **What you expected to happen**: Read API docs for 1.16 **How to reproduce it (as minimally and precisely as possible)**: Go to https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.16/ **Anything else we need to know?**:...
Wrong API documentation references: 1.16 shows 1.17
https://api.github.com/repos/kubernetes/kubernetes/issues/87454/comments
3
2020-01-22T09:58:09Z
2020-01-23T20:10:31Z
https://github.com/kubernetes/kubernetes/issues/87454
553,429,224
87,454
[ "kubernetes", "kubernetes" ]
PR #87217 added service patch methods to k8s.io/cloud-provider. Once there is a release with that PR included, the code in service-controller and legacy-cloud-providers/gce can be updated to use those. /area platform/gce /assign
Use service patch methods from cloud-provider repo
https://api.github.com/repos/kubernetes/kubernetes/issues/87447/comments
5
2020-01-22T06:04:39Z
2020-02-27T03:39:46Z
https://github.com/kubernetes/kubernetes/issues/87447
553,329,215
87,447
[ "kubernetes", "kubernetes" ]
<!-- STOP -- PLEASE READ! GitHub is not the right place for support requests. If you're looking for help, check [Stack Overflow](https://stackoverflow.com/questions/tagged/kubernetes) and the [troubleshooting guide](https://kubernetes.io/docs/tasks/debug-application-cluster/troubleshooting/). You can also pos...
REQUEST: New membership for YuikoTakada
https://api.github.com/repos/kubernetes/kubernetes/issues/87445/comments
3
2020-01-22T03:08:59Z
2020-01-22T03:19:00Z
https://github.com/kubernetes/kubernetes/issues/87445
553,280,570
87,445
[ "kubernetes", "kubernetes" ]
<!-- Please only use this template for submitting enhancement requests --> **What would you like to be added**: Display the reason of ReadinessGate fail when use `kubectl get pods -o wide` **Why is this needed**: Now we can only get how many ReadinessGate fails, and pods's status will keep in Running. I think ...
Show ReadinessGate Status in kubectl.
https://api.github.com/repos/kubernetes/kubernetes/issues/87444/comments
7
2020-01-22T02:39:43Z
2020-06-21T22:46:23Z
https://github.com/kubernetes/kubernetes/issues/87444
553,273,263
87,444
[ "kubernetes", "kubernetes" ]
**Which jobs are flaking**: pull-kubernetes-e2e-gce pull-kubernetes-e2e-gce-rbe **Which test(s) are flaking**: Stage **Testgrid link**: https://testgrid.k8s.io/presubmits-kubernetes-nonblocking#pull-kubernetes-e2e-gce-rbe&include-filter-by-regex=Overall%7CBuild%7CStage https://testgrid.k8s.io/presubmits-kube...
[Flaky Test] Stage
https://api.github.com/repos/kubernetes/kubernetes/issues/87441/comments
17
2020-01-21T22:41:52Z
2020-02-10T16:56:24Z
https://github.com/kubernetes/kubernetes/issues/87441
553,186,704
87,441
[ "kubernetes", "kubernetes" ]
<!-- Please use this template while reporting a bug and provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner. Thanks! If the matter is security related, please disclose it privately via https://kubernetes.io/security/ --> **What happened**: I'm attempt...
bad/missing data in Event involvedObject
https://api.github.com/repos/kubernetes/kubernetes/issues/87434/comments
12
2020-01-21T20:13:09Z
2020-01-22T16:01:40Z
https://github.com/kubernetes/kubernetes/issues/87434
553,103,044
87,434
[ "kubernetes", "kubernetes" ]
**What would you like to be added**: An optional expiration date for role bindings **Why is this needed**: To help administrators manage temporary work situations in a more automated, reliant fashion.
Expiration field for role bindings
https://api.github.com/repos/kubernetes/kubernetes/issues/87433/comments
4
2020-01-21T19:19:52Z
2020-02-05T21:21:37Z
https://github.com/kubernetes/kubernetes/issues/87433
553,076,348
87,433
[ "kubernetes", "kubernetes" ]
As part of promoting TaintBasedEvictions to GA (https://github.com/kubernetes/kubernetes/issues/87161), the docs around it will need to be updated to reflect the new status. /kind cleanup /sig scheduling
[TaintBasedEvictions] Update docs to reflect GA status
https://api.github.com/repos/kubernetes/kubernetes/issues/87429/comments
6
2020-01-21T17:06:18Z
2020-05-20T20:40:44Z
https://github.com/kubernetes/kubernetes/issues/87429
553,010,920
87,429
[ "kubernetes", "kubernetes" ]
As part of moving TaintBasedEvictions to GA in 1.18 (https://github.com/kubernetes/kubernetes/issues/87161), we need to clean up the logic around featuregating for this feature. Since it will be GA, it should not require a featuregate anymore. /kind cleanup /sig scheduling
[TaintBasedEvictions] Clean up featuregate logic
https://api.github.com/repos/kubernetes/kubernetes/issues/87428/comments
5
2020-01-21T17:04:49Z
2020-03-09T16:03:46Z
https://github.com/kubernetes/kubernetes/issues/87428
553,009,984
87,428
[ "kubernetes", "kubernetes" ]
As part of promoting TaintBasedEvictions to GA in 1.18 (https://github.com/kubernetes/kubernetes/issues/87161), we need to make sure that the test coverage is sufficient. There are some tests mentioned in the KEP, and as mentioned in https://github.com/kubernetes/enhancements/pull/1450#discussion_r366899543, those that...
[TaintBasedEvictions] Ensure test coverage is complete and up-to-date
https://api.github.com/repos/kubernetes/kubernetes/issues/87427/comments
16
2020-01-21T17:02:54Z
2020-03-06T04:03:44Z
https://github.com/kubernetes/kubernetes/issues/87427
553,008,934
87,427
[ "kubernetes", "kubernetes" ]
**What happened**: Establishing TCP/UDP traffic to a ClusterIP fails when connection is load balanced via iptables to a pod on the same host. **What you expected to happen**: `conntrack` shows that the udp datagram is DNATted to `10.200.1.37` from `10.200.1.36` (the host has `podCIDR: "10.200.1.0/24"`). ``` ...
Pod service endpoint unreachable from same host
https://api.github.com/repos/kubernetes/kubernetes/issues/87426/comments
27
2020-01-21T16:29:42Z
2022-04-14T11:36:57Z
https://github.com/kubernetes/kubernetes/issues/87426
552,988,423
87,426
[ "kubernetes", "kubernetes" ]
**What happened**: I've installed a cluster using Kubespray and chose to deploy Kubernetes 1.16.5. But after the install with success I got a running 1.16.6-beta.0 cluster. > NAME STATUS ROLES AGE VERSION > fru000850 Ready master 110m...
Kubernetes 1.16.5 image wrongly package with 1.16.6-beta.0
https://api.github.com/repos/kubernetes/kubernetes/issues/87424/comments
4
2020-01-21T13:38:44Z
2020-01-21T22:28:25Z
https://github.com/kubernetes/kubernetes/issues/87424
552,882,691
87,424
[ "kubernetes", "kubernetes" ]
**What would you like to be added**: I would like to be able to use a gRPC client to talk to the Kubernetes API. **Why is this needed**: The OpenAPI definition is great, and the existing language clients help, but JSON/HTTP is not perfect, and there are better alternatives. gRPC is becoming more popular every ...
Expose gRPC client API
https://api.github.com/repos/kubernetes/kubernetes/issues/87421/comments
8
2020-01-21T12:06:51Z
2020-01-22T08:17:43Z
https://github.com/kubernetes/kubernetes/issues/87421
552,836,062
87,421
[ "kubernetes", "kubernetes" ]
Please see: - https://github.com/microsoft/hcsshim/blob/master/go.mod#L42 - https://github.com/kubernetes/kubernetes/blob/master/go.mod#L190 Leads to weird stuff: - https://github.com/microsoft/hcsshim/pull/700 - https://github.com/microsoft/hcsshim/issues/642 Please break the loop. We can't have it both ways...
hcsshim has recursive dependency on kubernetes
https://api.github.com/repos/kubernetes/kubernetes/issues/87420/comments
29
2020-01-21T11:57:48Z
2020-05-28T23:37:30Z
https://github.com/kubernetes/kubernetes/issues/87420
552,831,768
87,420
[ "kubernetes", "kubernetes" ]
<!-- Please only use this template for submitting reports about continuously failing tests or jobs in Kubernetes CI --> **Which jobs are failing**: kubemark-1.16-500 kubemark-1.17-500 kubemark-100 **Which test(s) are failing**: Kubemark Up **Since when has it been failing**: **Testgrid link**: https://...
[Failing Test] kubemark-{master, 1.1.6, 1.17) fail to start
https://api.github.com/repos/kubernetes/kubernetes/issues/87416/comments
5
2020-01-21T10:06:30Z
2020-01-22T09:58:22Z
https://github.com/kubernetes/kubernetes/issues/87416
552,772,451
87,416
[ "kubernetes", "kubernetes" ]
<!-- Please only use this template for submitting enhancement requests --> **What would you like to be added**: Add well-known label at endpoint/endpointslice controller to delegate endpoint/endpointslice control to custom endpoint/endpointslice controllers. **Why is this needed**: kube-proxy has well-known...
Add well-known label for custom endpoint controller as well as "service.kubernetes.io/service-proxy-name"
https://api.github.com/repos/kubernetes/kubernetes/issues/87412/comments
17
2020-01-21T07:26:06Z
2021-10-08T05:02:58Z
https://github.com/kubernetes/kubernetes/issues/87412
552,671,693
87,412
[ "kubernetes", "kubernetes" ]
<!-- Please only use this template for submitting reports about continuously failing tests or jobs in Kubernetes CI --> **Which jobs are failing**: bazel-test **Which test(s) are failing**: ```--- FAIL: TestPlugin (0.00s) rbd_test.go:286: rbd: failed to mount device /dev/rbd1 at /tmp/rbd_test419475751/plug...
Latest k8s.io/utils/mount breaks pkg/volume/rbd tests
https://api.github.com/repos/kubernetes/kubernetes/issues/87408/comments
12
2020-01-21T05:16:39Z
2020-02-11T15:40:33Z
https://github.com/kubernetes/kubernetes/issues/87408
552,629,965
87,408
[ "kubernetes", "kubernetes" ]
The documentation goes over how to create an etcd cluster, which runs in containers managed by kubelet on three external nodes in a cluster. After it is created, there is no documentation that follows the setup. There are tons of blogs about how to operate them using etcdctl, but this is not possible (or easily transla...
kubeadm created etcd ha external cluster
https://api.github.com/repos/kubernetes/kubernetes/issues/87402/comments
11
2020-01-21T01:54:28Z
2020-02-07T15:26:54Z
https://github.com/kubernetes/kubernetes/issues/87402
552,582,295
87,402
[ "kubernetes", "kubernetes" ]
**What happened**: Running `kubectl expose pod mypod --port 80 --type ExternalName` returns the error: > The Service "mypod" is invalid: spec.externalName: Required value Running `kubectl expose pod mypod --port 80 --type ExternalName="xxx"` returns the error: > The Service "mypod" is invalid: spec.type: Unsuppor...
Kubectl Expose --type ExternalName
https://api.github.com/repos/kubernetes/kubernetes/issues/87398/comments
8
2020-01-20T21:18:29Z
2020-06-19T09:46:50Z
https://github.com/kubernetes/kubernetes/issues/87398
552,512,723
87,398
[ "kubernetes", "kubernetes" ]
```scheduler/algorithm``` is deprecated, and ```SchedulerExtender``` must move somewhere else, and the best place is in ```core/extenders.go```. /sig scheduling /help /good-first-issue
Move scheduler's SchedulerExtender interface to core/extenders.go
https://api.github.com/repos/kubernetes/kubernetes/issues/87396/comments
5
2020-01-20T18:19:03Z
2020-01-21T17:21:51Z
https://github.com/kubernetes/kubernetes/issues/87396
552,448,921
87,396
[ "kubernetes", "kubernetes" ]
The only parameter that is used is the ```VolumeBinder```, which is now available in the FrameworkHandler. So we can delete [RegistryArgs](https://github.com/kubernetes/kubernetes/blob/master/pkg/scheduler/framework/plugins/registry.go#L44-L46) and update and change ```NewFromVolumeBinder``` to be like all other...
Deprecate scheduler's framework.plugins.RegistryArgs
https://api.github.com/repos/kubernetes/kubernetes/issues/87395/comments
2
2020-01-20T18:11:46Z
2020-01-22T00:27:00Z
https://github.com/kubernetes/kubernetes/issues/87395
552,446,106
87,395
[ "kubernetes", "kubernetes" ]
``` $ kubectl get node NAME STATUS ROLES AGE VERSION k8s-worker1 Ready worker 5h43m v1.15.9-beta.0 k8s-worker2 Ready worker 5h44m v1.15.9-beta.0 k8s-worker2 Ready worker 5h43m v1.15.9-beta.0 k8s-mas...
K8s 1.15.8 shows different version in node status
https://api.github.com/repos/kubernetes/kubernetes/issues/87391/comments
2
2020-01-20T15:38:53Z
2020-01-20T20:13:40Z
https://github.com/kubernetes/kubernetes/issues/87391
552,374,605
87,391
[ "kubernetes", "kubernetes" ]
**Which jobs are failing**: `gce-windows-1.17 (ci-kubernetes-e2e-windows-gce-1-17)` **Which test(s) are failing**: ``` [k8s.io] Probing container should have monotonically increasing restart count [NodeConformance] [Conformance] ``` ``` [sig-apps] StatefulSet [k8s.io] Basic StatefulSet functionality [StatefulS...
[Failing Test] gce-windows-1.17 (ci-kubernetes-e2e-windows-gce-1-17)
https://api.github.com/repos/kubernetes/kubernetes/issues/87389/comments
21
2020-01-20T14:33:52Z
2020-07-22T22:35:39Z
https://github.com/kubernetes/kubernetes/issues/87389
552,337,399
87,389
[ "kubernetes", "kubernetes" ]
**Which jobs are failing**: `aks-engine-azure-1-17-windows (ci-kubernetes-e2e-aks-engine-azure-1-17-windows)` **Which test(s) are failing**: `[k8s.io] Pods should be updated [NodeConformance] [Conformance]` **Since when has it been failing**: `19th Jan 23:47 PST ` **Testgrid link**: https://testgrid.k8s.i...
[Failing Test] aks-engine-azure-1-17-windows (ci-kubernetes-e2e-aks-engine-azure-1-17-windows)
https://api.github.com/repos/kubernetes/kubernetes/issues/87388/comments
5
2020-01-20T14:30:19Z
2020-06-18T16:30:21Z
https://github.com/kubernetes/kubernetes/issues/87388
552,335,416
87,388
[ "kubernetes", "kubernetes" ]
**Which jobs are failing**: `gce-cos-master-serial (ci-kubernetes-e2e-gci-gce-serial)` **Which test(s) are failing**: ``` [sig-storage] In-tree Volumes [Driver: gcepd] [Testpattern: Dynamic PV (block volmode)] disruptive[Disruptive] Should test that pv used in a pod that is deleted while the kubelet is down clean...
[Failing Test] gce-cos-master-serial (ci-kubernetes-e2e-gci-gce-serial)
https://api.github.com/repos/kubernetes/kubernetes/issues/87387/comments
9
2020-01-20T14:22:22Z
2020-02-23T20:11:50Z
https://github.com/kubernetes/kubernetes/issues/87387
552,330,711
87,387
[ "kubernetes", "kubernetes" ]
<!-- Please only use this template for submitting enhancement requests --> **What would you like to be added**: There is the Agnhost image used for e2e test purposes. It supports webhook that can mutate pods adding init container. It would be useful to have functionality for adding containers. **Why is this need...
Agnhost webhook being able to inject sidecar
https://api.github.com/repos/kubernetes/kubernetes/issues/87383/comments
1
2020-01-20T10:16:28Z
2020-01-31T00:59:04Z
https://github.com/kubernetes/kubernetes/issues/87383
552,201,950
87,383
[ "kubernetes", "kubernetes" ]
<!-- Please use this template while reporting a bug and provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner. Thanks! If the matter is security related, please disclose it privately via https://kubernetes.io/security/ --> **What happened**: I wrote some ...
string instead of XXXConditionType for constants in API Priority and Fairness API
https://api.github.com/repos/kubernetes/kubernetes/issues/87378/comments
4
2020-01-20T06:37:06Z
2020-01-20T06:40:37Z
https://github.com/kubernetes/kubernetes/issues/87378
552,097,016
87,378
[ "kubernetes", "kubernetes" ]
**Which jobs are failing**: Testgrid Dashboard `sig-release-generated` ```console ubuntu1-k8sbeta-gkespec ubuntu1-k8sbeta-serial ubuntu1-k8sstable1-gkespec ubuntu1-k8sstable1-serial ubuntu1-k8sstable2-gkespec ubuntu1-k8sstable2-serial ubuntu1-k8sstable3-gkespec ubuntu1-k8sstable3-serial ubuntu2-k8sbeta-gke...
[Failing Test] Failing Generated Jobs (sig-release-generated)
https://api.github.com/repos/kubernetes/kubernetes/issues/87376/comments
8
2020-01-20T05:53:30Z
2020-07-08T15:23:47Z
https://github.com/kubernetes/kubernetes/issues/87376
552,083,298
87,376
[ "kubernetes", "kubernetes" ]
Hi Experts: We're doing cinder volume attach/detach performance test with the in-tree cloud provider. The volumes attach/detach to a node in every 10 minutes. After dozens of success, one one the volume failed with mount. A pod stuck in ContainerCreating status with: Warning FailedMount 3m15s (x2143 over...
A volume doesn't add in volumesAttached while the volume is attached to the node.
https://api.github.com/repos/kubernetes/kubernetes/issues/87374/comments
9
2020-01-20T02:55:33Z
2023-06-14T06:40:30Z
https://github.com/kubernetes/kubernetes/issues/87374
552,038,655
87,374
[ "kubernetes", "kubernetes" ]
<!-- Please use this template while reporting a bug and provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner. Thanks! If the matter is security related, please disclose it privately via https://kubernetes.io/security/ --> **What happened**: With the exec...
kubecetl client-go exec credentials plugin should use new valid token as soon as stored rather than old expired
https://api.github.com/repos/kubernetes/kubernetes/issues/87369/comments
10
2020-01-19T13:44:59Z
2020-07-09T16:07:02Z
https://github.com/kubernetes/kubernetes/issues/87369
551,924,331
87,369
[ "kubernetes", "kubernetes" ]
**What happened**: https://github.com/kubernetes/apimachinery/blob/b615468efe0478fcdf43e7ce5ae63d76d205ef50/pkg/apis/meta/v1/unstructured/unstructured.go#L62-L66 ``` func (obj *Unstructured) ToList() (*UnstructuredList, error) { if !obj.IsList() { // return an empty list back return &UnstructuredList{Objec...
Is Unstructured.ToList() correct?
https://api.github.com/repos/kubernetes/kubernetes/issues/87367/comments
7
2020-01-19T11:34:36Z
2020-06-20T09:09:25Z
https://github.com/kubernetes/kubernetes/issues/87367
551,909,416
87,367
[ "kubernetes", "kubernetes" ]
<!-- Please only use this template for submitting enhancement requests --> **What would you like to be added**: Environment variables for services in all namespaces within the cluster should be available within a container. This can be achieved by adding the namespace to the environment variables: MYAPP_KUBE-SYST...
Service discovery via environment variables should be available for all namespaces
https://api.github.com/repos/kubernetes/kubernetes/issues/87366/comments
9
2020-01-19T10:24:36Z
2020-02-11T08:45:33Z
https://github.com/kubernetes/kubernetes/issues/87366
551,900,327
87,366
[ "kubernetes", "kubernetes" ]
**What would you like to be added**: Resource configuration is container level so far. for example,'spec.containers[].resources.limits.memory'. but what i want is pod level limits,i.e.'spec.resources.limits.memory'. **Why is this needed**: for some test cases,we want to limit resources in one pod with a group of...
Resource 'Request & Limit' support in individual Pod
https://api.github.com/repos/kubernetes/kubernetes/issues/87365/comments
5
2020-01-19T09:32:38Z
2020-06-15T09:43:09Z
https://github.com/kubernetes/kubernetes/issues/87365
551,893,521
87,365