From 5400bdd75986b8ded114779af026436eb07debb5 Mon Sep 17 00:00:00 2001 From: Alberto Bravo Date: Fri, 25 Oct 2024 17:06:23 +0200 Subject: [PATCH 1/5] Updating Trento Checks This PR is to be reviewed but cannot be merged/published until the new version of Trento is out. --- trento/xml/article_sap_trento.xml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/trento/xml/article_sap_trento.xml b/trento/xml/article_sap_trento.xml index f49b9e39..3119e41d 100644 --- a/trento/xml/article_sap_trento.xml +++ b/trento/xml/article_sap_trento.xml @@ -2393,6 +2393,34 @@ In the Trento dashboard, go to the overview corresponding to the object for whic + + +
+ Updating Trento Checks + Configuration checks are an integral part of &t.server; and are delivered as a separate component of it. This allows customers + to update the checks catalog in their setup whenever updates to existing chekcs and/or new checks are released, without + having to wait to a full mew version release cycle. + The procedure to update the configuration checks depends on the &t.server; deployment type: &k8s;, systemd or containerized. + In a K8s; deployment, checks are delivered as a container image and you can + use Helm with the following options to pull the latest one available into your setup: + + helm ... \ + --set trento-wanda.checks.image.tag=latest \ + --set trento-wanda.checks.image.repository=registry.suse.com/trento/trento-checks \ + --set trento-wanda.checks.image.pullPolicy=Always \ + ... + + In a systemd deployment, checks are delivered as an rpm package and you can + use zypper to bring your checks catalog to the latest version avaialble: + &prompt.user;sudo zypper ref +&prompt.user;sudo zypper update trento-checks + In a containerized deployment, checks are also delivered as a container image and + you can user docker to pull the latest version available into the trento-checks volume that was + created during the installation process: + &prompt.user;docker run \ + -v trento-checks:/usr/share/trento/checks \ + registry.suse.com/trento/trento-checks:latest +
From 75fab64a02c273465c13ce6aecd035e50d6da886 Mon Sep 17 00:00:00 2001 From: Alberto Bravo Date: Thu, 31 Oct 2024 13:24:58 +0100 Subject: [PATCH 2/5] Update trento/xml/article_sap_trento.xml Co-authored-by: Dmitri Popov --- trento/xml/article_sap_trento.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/trento/xml/article_sap_trento.xml b/trento/xml/article_sap_trento.xml index 3119e41d..5055eaeb 100644 --- a/trento/xml/article_sap_trento.xml +++ b/trento/xml/article_sap_trento.xml @@ -2397,9 +2397,9 @@ In the Trento dashboard, go to the overview corresponding to the object for whic
Updating Trento Checks - Configuration checks are an integral part of &t.server; and are delivered as a separate component of it. This allows customers - to update the checks catalog in their setup whenever updates to existing chekcs and/or new checks are released, without - having to wait to a full mew version release cycle. + Configuration checks are an integral part of the &t.server;. The checks are delivered as a separate component of the &t.server;. This allows customers + to update the checks catalog in their setup whenever updates to existing checks and new checks are released, without + waiting for a new version release cycle. The procedure to update the configuration checks depends on the &t.server; deployment type: &k8s;, systemd or containerized. In a K8s; deployment, checks are delivered as a container image and you can use Helm with the following options to pull the latest one available into your setup: From 5d453faf80b06bba20f7fa7043b6d1f1cba3c7c7 Mon Sep 17 00:00:00 2001 From: Alberto Bravo Date: Thu, 31 Oct 2024 13:25:26 +0100 Subject: [PATCH 3/5] Update trento/xml/article_sap_trento.xml Co-authored-by: Dmitri Popov --- trento/xml/article_sap_trento.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/trento/xml/article_sap_trento.xml b/trento/xml/article_sap_trento.xml index 5055eaeb..7986a684 100644 --- a/trento/xml/article_sap_trento.xml +++ b/trento/xml/article_sap_trento.xml @@ -2400,8 +2400,8 @@ In the Trento dashboard, go to the overview corresponding to the object for whic Configuration checks are an integral part of the &t.server;. The checks are delivered as a separate component of the &t.server;. This allows customers to update the checks catalog in their setup whenever updates to existing checks and new checks are released, without waiting for a new version release cycle. - The procedure to update the configuration checks depends on the &t.server; deployment type: &k8s;, systemd or containerized. - In a K8s; deployment, checks are delivered as a container image and you can + The procedure of updating the configuration checks depends on the &t.server; deployment type: &k8s;, systemd or containerized. + In a k8s; deployment, checks are delivered as a container image and you can use Helm with the following options to pull the latest one available into your setup: helm ... \ From a9a7141044eed156989612ea1ad9c9324199ed00 Mon Sep 17 00:00:00 2001 From: Alberto Bravo Date: Thu, 31 Oct 2024 13:25:45 +0100 Subject: [PATCH 4/5] Update trento/xml/article_sap_trento.xml Co-authored-by: Dmitri Popov --- trento/xml/article_sap_trento.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/trento/xml/article_sap_trento.xml b/trento/xml/article_sap_trento.xml index 7986a684..97806a09 100644 --- a/trento/xml/article_sap_trento.xml +++ b/trento/xml/article_sap_trento.xml @@ -2410,8 +2410,8 @@ In the Trento dashboard, go to the overview corresponding to the object for whic --set trento-wanda.checks.image.pullPolicy=Always \ ... - In a systemd deployment, checks are delivered as an rpm package and you can - use zypper to bring your checks catalog to the latest version avaialble: + In a systemd deployment, checks are delivered as an RPM package, and you can + use zypper to update your checks catalog to the latest version: &prompt.user;sudo zypper ref &prompt.user;sudo zypper update trento-checks In a containerized deployment, checks are also delivered as a container image and From bca3064a6a8792136227dc6aaffcbca025665583 Mon Sep 17 00:00:00 2001 From: Alberto Bravo Date: Thu, 31 Oct 2024 13:26:12 +0100 Subject: [PATCH 5/5] Update trento/xml/article_sap_trento.xml Co-authored-by: Dmitri Popov --- trento/xml/article_sap_trento.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/trento/xml/article_sap_trento.xml b/trento/xml/article_sap_trento.xml index 97806a09..585e7c90 100644 --- a/trento/xml/article_sap_trento.xml +++ b/trento/xml/article_sap_trento.xml @@ -2414,8 +2414,8 @@ In the Trento dashboard, go to the overview corresponding to the object for whic use zypper to update your checks catalog to the latest version: &prompt.user;sudo zypper ref &prompt.user;sudo zypper update trento-checks - In a containerized deployment, checks are also delivered as a container image and - you can user docker to pull the latest version available into the trento-checks volume that was + In a containerized deployment, checks are delivered as a container image, and + you can user Docker to pull the latest version into the trento-checks volume that was created during the installation process: &prompt.user;docker run \ -v trento-checks:/usr/share/trento/checks \