diff options
author | Fabiano Fidêncio <fidencio@redhat.com> | 2021-07-01 22:43:17 +0200 |
---|---|---|
committer | Jake Hunsaker <jhunsake@redhat.com> | 2021-07-12 09:51:52 -0400 |
commit | 9ff3ce48f668781916b1926362812d6eab43b15c (patch) | |
tree | c89b5ce8390b3760175c737b25d27630ca462271 | |
parent | 00d12ad3cf24dcc6c73e9bcf63db1d3f17e58bb1 (diff) | |
download | sos-9ff3ce48f668781916b1926362812d6eab43b15c.tar.gz |
kata_containers: Update to the 2.x release
Kata Containers 1.x, which is the base for this plugin, has reached its
EOL on May 12th 2021*.
Based on that, let's update the sos plugin to match the current Fedora
RPM (kata-containers, instead of kata-runtime).
Currently, kata-containers can only be used in the kubernetes world and
it'll always be spawn either by CRI-O or containerd, and then it'll log
to the journal using their identifier, and the responsibility of
collecting the CRI runtime journal is left for the CRI runtimes.
*: https://medium.com/kata-containers/about-kata-containers-releases-8b3d91d1166e
Signed-off-by: Fabiano Fidêncio <fidencio@redhat.com>
-rw-r--r-- | sos/report/plugins/kata_containers.py | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/sos/report/plugins/kata_containers.py b/sos/report/plugins/kata_containers.py index f7beaa97..21b254f4 100644 --- a/sos/report/plugins/kata_containers.py +++ b/sos/report/plugins/kata_containers.py @@ -15,7 +15,7 @@ class KataContainers(Plugin, IndependentPlugin): plugin_name = 'kata_containers' profiles = ('system', 'virt', 'container') - packages = ('kata-runtime',) + packages = ('kata-containers',) def setup(self): self.limit = self.get_option('log_size') @@ -43,9 +43,4 @@ class KataContainers(Plugin, IndependentPlugin): self.add_copy_spec(config_files) - self.add_journal(identifier='kata-proxy') - self.add_journal(identifier='kata-shim') - self.add_journal(identifier='kata-runtime') - self.add_journal(units='kata-ksm-throttler') - # vim: set et ts=4 sw=4 : |