Skip to content
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

Updating Trento Checks #190

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions trento/xml/article_sap_trento.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2393,6 +2393,34 @@ In the Trento dashboard, go to the overview corresponding to the object for whic
</step>
</procedure>

</section>

<section xml:id="sec-trento-updating-trento-checks">
<title>Updating Trento Checks</title>
<para>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.</para>
abravosuse marked this conversation as resolved.
Show resolved Hide resolved
<para> The procedure to update the configuration checks depends on the &t.server; deployment type: &k8s;, systemd or containerized.</para>
<para>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:</para>
abravosuse marked this conversation as resolved.
Show resolved Hide resolved
<programlisting>
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 \
...
</programlisting>
<para>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:</para>
abravosuse marked this conversation as resolved.
Show resolved Hide resolved
<screen>&prompt.user;sudo zypper ref
&prompt.user;sudo zypper update trento-checks</screen>
<para>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:</para>
abravosuse marked this conversation as resolved.
Show resolved Hide resolved
<screen>&prompt.user;docker run \
-v trento-checks:/usr/share/trento/checks \
registry.suse.com/trento/trento-checks:latest
</screen>
</section>

<section xml:id="sec-trento-uninstall-trentoserver">
Expand Down
Loading