-
Notifications
You must be signed in to change notification settings - Fork 40.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add note: kubelet manages only k8s containers. #30435
Add note: kubelet manages only k8s containers. #30435
Conversation
/cc @kubernetes/rh-cluster-infra @ingvagabund |
@johndmulhausen, do we need to open PR for docs or does https://github.com/kubernetes/kubernetes.github.io/blob/master/docs/admin/kubelet.md gets re-generated automatically? |
@@ -101,7 +101,7 @@ func NewKubeletCommand() *cobra.Command { | |||
node. The kubelet works in terms of a PodSpec. A PodSpec is a YAML or JSON object | |||
that describes a pod. The kubelet takes a set of PodSpecs that are provided through | |||
various mechanisms (primarily through the apiserver) and ensures that the containers | |||
described in those PodSpecs are running and healthy. | |||
described in those PodSpecs are running and healthy. The kubelet doesn't manage containers which were not created by Kubernetes. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you wrap this line to match the others?
bug 1328441 Bugzilla link https://bugzilla.redhat.com/show_bug.cgi?id=1328441
f603c99
to
08945a9
Compare
GCE e2e build/test passed for commit 08945a9. |
LGTM |
Automatic merge from submit-queue |
…ainers Automatic merge from submit-queue Add note: kubelet manages only k8s containers. Kubelet wrote log when accesing container which was not created in k8s, what could confuse users. That's why we added note about it in documentation and lowered log level of the message to 5. Here is example of the message: ``` > Apr 19 11:50:32 openshift-114.lab.sjc.redhat.com atomic-openshift-node[9551]: I0419 11:50:32.194020 9600 docker.go:363] Docker Container: /tiny_babbage is not managed by kubelet. ``` bug 1328441 Bugzilla link https://bugzilla.redhat.com/show_bug.cgi?id=1328441
Kubelet wrote log when accesing container which was not created in k8s, what could confuse users. That's why we added note about it in documentation and lowered log level of the message to 5.
Here is example of the message:
bug 1328441
Bugzilla link https://bugzilla.redhat.com/show_bug.cgi?id=1328441
This change is