Este conteúdo não está disponível no idioma selecionado.
Chapter 1. Installing the Skupper CLI
The Skupper CLI provides a method to create both Kubernetes and Podman sites.
Podman sites are a Technology Preview feature as described in Release Notes
Prerequisites
- Your subscription has been activated and your system is registered. For more information about using the Customer Portal to activate your Red Hat subscription and register your system for packages, see Chapter 6, Using your subscription.
Procedure
Use the
subscription-managercommand to subscribe to the required package repositories. Replace<version>with1for the main release stream or1.4for the long term support release stream.- Red Hat Enterprise Linux 8
sudo subscription-manager repos --enable=service-interconnect-_<version>_-for-rhel-8-x86_64-rpms
$ sudo subscription-manager repos --enable=service-interconnect-_<version>_-for-rhel-8-x86_64-rpmsCopy to Clipboard Copied! Toggle word wrap Toggle overflow - Red Hat Enterprise Linux 9
sudo subscription-manager repos --enable=service-interconnect-_<version>_-for-rhel-9-x86_64-rpms
$ sudo subscription-manager repos --enable=service-interconnect-_<version>_-for-rhel-9-x86_64-rpmsCopy to Clipboard Copied! Toggle word wrap Toggle overflow Use the
yumordnfcommand to install theskuppercommand:sudo dnf install skupper-cli
$ sudo dnf install skupper-cliCopy to Clipboard Copied! Toggle word wrap Toggle overflow If you want to run
skupperto create a podman site on RHEL 8, you need to configure podman to usenetavarkif it is not already configured:Check if
netavarkis configured as the podman network backend:podman info | grep networkBackend
$ podman info | grep networkBackendCopy to Clipboard Copied! Toggle word wrap Toggle overflow If
netavarkis not listed as the backend, install it:sudo dnf install netavark
$ sudo dnf install netavarkCopy to Clipboard Copied! Toggle word wrap Toggle overflow Configure podman to use
netavarkby making sure the following lines exist in the/etc/containers/containers.conffile:[network] network_backend = "netavark"
[network] network_backend = "netavark"Copy to Clipboard Copied! Toggle word wrap Toggle overflow - Verify the new configuration by repeating step a.
Additional information
- See Getting Started for instructions about creating a site.
-
Use
man containers.confto view more information about podman configuration.