Install Containerized Uyuni Proxy on k3s
1. Installing k3s
On the container host machine, install k3s
(replace <K3S_HOST_FQDN>
with the FQDN of your k3s host):
curl -sfL https://get.k3s.io | INSTALL_K3S_EXEC="--tls-san=<K3S_HOST_FQDN>" sh -
2. Installing tools
The installation requires the mgrpxy
and helm
packages.
The mgrpxy
package is available in the container utils repository: pick the one matching the distribution in: https://download.opensuse.org/repositories/systemsmanagement:/Uyuni:/Stable:/ContainerUtils/.
To install them run:
zypper in helm mgrpxy
3. Deploying the Uyuni proxy helm chart
To configure the storage of the volumes to be used by the Uyuni Proxy pod, define persistent volumes for the following claims. If you do not customize the storage configuration, k3s will automatically create the storage volumes for you.
The persistent volume claims are named:
-
squid-cache-pv-claim
-
/package-cache-pv-claim
-
/tftp-boot-pv-claim
Create the configuration for the Uyuni Proxy as documented in Containerized Uyuni Proxy Setup.
Copy the configuration tar.gz
file and then install:
mgrpxy install kubernetes /path/to/config.tar.gz
For more information see https://kubernetes.io/docs/concepts/storage/persistent-volumes/ (kubernetes) or https://rancher.com/docs/k3s/latest/en/storage/ (k3s) documentation.