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 would be:
helm upgrade wallaroo oci://registry.replicated.com/wallaroo/2024-3/wallaroo --version 2024.3.0-5913 --values local-values.yaml --timeout 10m