Skip to content

Commit ab3d63c

Browse files
author
David Oppenheimer
committed
Add a known issues doc.
1 parent 220cc6a commit ab3d63c

File tree

3 files changed

+62
-0
lines changed

3 files changed

+62
-0
lines changed

docs/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ Documentation for other releases can be found at
5555
folder.
5656

5757
* If something went wrong, see the [troubleshooting](troubleshooting.md) document for how to debug.
58+
You should also check the [known issues](user-guide/known-issues.md) for the release you're using.
5859

5960

6061
<!-- BEGIN MUNGE: GENERATED_ANALYTICS -->

docs/troubleshooting.md

+2
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ Sometimes things go wrong. This guide is aimed at making them right. It has tw
3737
* [Troubleshooting your application](user-guide/application-troubleshooting.md) - Useful for users who are deploying code into Kubernetes and wondering why it is not working.
3838
* [Troubleshooting your cluster](admin/cluster-troubleshooting.md) - Useful for cluster administrators and people whose Kubernetes cluster is unhappy.
3939

40+
You should also check the [known issues](user-guide/known-issues.md) for the release you're using.
41+
4042
# Getting help
4143

4244
If your problem isn't answered by any of the guides above, there are variety of ways for you to get help from the Kubernetes team.

docs/user-guide/known-issues.md

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
<!-- BEGIN MUNGE: UNVERSIONED_WARNING -->
2+
3+
<!-- BEGIN STRIP_FOR_RELEASE -->
4+
5+
<img src="http://kubernetes.io/img/warning.png" alt="WARNING"
6+
width="25" height="25">
7+
<img src="http://kubernetes.io/img/warning.png" alt="WARNING"
8+
width="25" height="25">
9+
<img src="http://kubernetes.io/img/warning.png" alt="WARNING"
10+
width="25" height="25">
11+
<img src="http://kubernetes.io/img/warning.png" alt="WARNING"
12+
width="25" height="25">
13+
<img src="http://kubernetes.io/img/warning.png" alt="WARNING"
14+
width="25" height="25">
15+
16+
<h2>PLEASE NOTE: This document applies to the HEAD of the source tree</h2>
17+
18+
If you are using a released version of Kubernetes, you should
19+
refer to the docs that go with that version.
20+
21+
<strong>
22+
The latest 1.0.x release of this document can be found
23+
[here](http://releases.k8s.io/release-1.0/docs/user-guide/known-issues.md).
24+
25+
Documentation for other releases can be found at
26+
[releases.k8s.io](http://releases.k8s.io).
27+
</strong>
28+
--
29+
30+
<!-- END STRIP_FOR_RELEASE -->
31+
32+
<!-- END MUNGE: UNVERSIONED_WARNING -->
33+
34+
## Known Issues
35+
36+
This document summarizes known issues with existing Kubernetes releases.
37+
38+
Please consult this document before filing new bugs.
39+
40+
### Release 1.0.1
41+
42+
* `exec` liveness/readiness probes leak resources due to Docker exec leaking resources (#10659)
43+
* `docker load` sometimes hangs which causes the `kube-apiserver` not to start. Restarting the Docker daemon should fix the issue (#10868)
44+
* The kubelet on the master node doesn't register with the `kube-apiserver` so statistics aren't collected for master daemons (#10891)
45+
* Heapster and InfluxDB both leak memory (#10653)
46+
* Wrong node cpu/memory limit metrics from Heapster (https://github.com/GoogleCloudPlatform/heapster/issues/399)
47+
* Services that set `type=LoadBalancer` can not use port `10250` because of Google Compute Engine firewall limitations
48+
* Add-on services can not be created or deleted via `kubectl` or the Kubernetes API (#11435)
49+
* If a pod with a GCE PD is created and deleted in rapid succession, it may fail to attach/mount correctly leaving PD data inaccessible (or corrupted in the worst case). (https://github.com/GoogleCloudPlatform/kubernetes/issues/11231#issuecomment-122049113)
50+
* Suggested temporary work around: introduce a 1-2 minute delay between deleting and recreating a pod with a PD on the same node.
51+
* Explicit errors while detaching GCE PD could prevent PD from ever being detached (#11321)
52+
* GCE PDs may sometimes fail to attach (#11302)
53+
* If multiple Pods use the same RBD volume in read-write mode, it is possible data on the RBD volume could get corrupted. This problem has been found in environments where both apiserver and etcd rebooted and Pods were redistributed.
54+
* A workaround is to ensure there is no other Ceph client using the RBD volume before mapping RBD image in read-write mode. For example, `rados -p poolname listwatchers image_name.rbd` can list RBD clients that are mapping the image.
55+
56+
57+
<!-- BEGIN MUNGE: GENERATED_ANALYTICS -->
58+
[![Analytics](https://kubernetes-site.appspot.com/UA-36037335-10/GitHub/docs/user-guide/known-issues.md?pixel)]()
59+
<!-- END MUNGE: GENERATED_ANALYTICS -->

0 commit comments

Comments
 (0)