k3s/pkg/kubelet/images
Clayton Coleman 49250c6efc
Make container create, start, and stop events consistent
The messages for container lifecycle events are subtly inconsistent
and should be unified.

First, the field format for containers is hard to parse for a human,
so include the container name directly in the message for create
and start, and for kill remove the container runtime prefix.

Second, the pulling image event has inconsistent capitalization, fix
that to be sentence without punctuation.

Third, the kill container event was unnecessarily wordy and inconsistent
with the create and start events. Make the following changes:

* Use 'Stopping' instead of 'Killing' since kill is usually reserved for
  when we decide to hard stop a container
* Send the event before we dispatch the prestop hook, since this is an
  "in-progress" style event vs a "already completed" type event
* Remove the 'cri-o://' / 'docker://' prefix by printing the container
  name instead of id (we already do that replacement at the lower level
  to prevent high cardinality events)
* Use 'message' instead of 'reason' as the argument name since this is a
  string for humans field, not a string for machines field
* Remove the hash values on the container spec changed event because no
  human will ever be able to do anything with the hash value
* Use 'Stopping container %s(, explanation)?' form without periods to
  follow event conventions

The end result is a more pleasant message for humans:

```
35m         Normal    Created                       Pod    Created container
35m         Normal    Started                       Pod    Started container
10m         Normal    Killing                       Pod    Killing container cri-o://installer:Need to kill Pod
10m         Normal    Pulling                       Pod    pulling image "registry.svc.ci.openshift.org/openshift/origin-v4.0-2019-02-10-172026@sha256:3da5303d4384d24691721c1cf2333584ba60e8f82c9e782f593623ce8f83ddc5"
```

becomes

```
35m         Normal    Created                       Pod    Created container installer
35m         Normal    Started                       Pod    Started container installer
10m         Normal    Killing                       Pod    Stopping container installer
10m         Normal    Pulling                       Pod    Pulling image "registry.svc.ci.openshift.org/openshift/origin-v4.0-2019-02-10-172026@sha256:3da5303d4384d24691721c1cf2333584ba60e8f82c9e782f593623ce8f83ddc5"
```
2019-02-10 16:39:42 -05:00
..
BUILD Pass PodSandboxConfig to PullImage method in CRI 2018-12-07 10:10:22 +08:00
doc.go
helpers.go Pass PodSandboxConfig to PullImage method in CRI 2018-12-07 10:10:22 +08:00
image_gc_manager.go Move from glog to klog 2018-11-10 07:50:31 -05:00
image_gc_manager_test.go Let image manager return a copy of image list. 2018-02-26 19:19:18 +00:00
image_manager.go Make container create, start, and stop events consistent 2019-02-10 16:39:42 -05:00
image_manager_test.go Pass PodSandboxConfig to PullImage method in CRI 2018-12-07 10:10:22 +08:00
puller.go Pass PodSandboxConfig to PullImage method in CRI 2018-12-07 10:10:22 +08:00
types.go Pass PodSandboxConfig to PullImage method in CRI 2018-12-07 10:10:22 +08:00