Targeted Role |
---|
Dev Ops |
Log and event storage is managed via the Plateau service included with a Wallaroo installation. The amount of disk space used is adjustable; for performance reasons, Wallaroo deployments have 100Gi
storage allocated by default.
The following details how to use Wallaroo provided tools to adjust the plateau storage capacity.
For installation of Wallaroo via kots
:
Access the Kots Administrative Dashboard with the kubectl kots
command, replacing $NAMESPACE
with the Kubernetes namespace used to install Wallaroo:
kubectl kots admin-console --namespace wallaroo
A URL will be provided to access the dashboard in a browser. By default, this is http://localhost:8800
.
Select Config, then the field Plateau Inference Logging Service->Plateau disk space in units which must include Gi suffix.
Update the storage capacity in terms of Gi
. By default, this is 100Gi
.
Once updated, scroll to the bottom and select Save config, then deploy the new configuration.
To increase the model storage size for helm
based installations of Wallaroo:
Edit your local values.yaml
with the following fragment, changing the diskSize
to match the desired storage capacity. For example:
plateau:
diskSize: 200Gi
Apply the update with helm upgrade
. For example, to upgrade the registration wallaroo
from the EE channel the command format is:
helm upgrade wallaroo \
oci://registry.replicated.com/wallaroo/$LICENSE_CHANNEL/wallaroo \
--version $VERSION \
--values local-values.yaml \
--timeout 10m \
--wait \
--wait-for-jobs
Both $LICENSE_CHANNEL
and $VERSION
are the same values used during the Wallaroo installation process. For example, if the $LICENSE_CHANNEL
is 2025-1
and the $VERSION
is 2025.1.0-6290
, then the command becomes:
helm upgrade wallaroo \
oci://registry.replicated.com/wallaroo/2025-1/wallaroo \
--version 2025.1.0-6290 \
--values local-values.yaml \
--timeout 10m \
--wait \
--wait-for-jobs