VeleroUI: A powerful and user-friendly backup and restore solution for Kubernetes, integrating Velero and MinIO to provide secure, efficient, and scalable cluster data protection

VeleroUI: Backup & Restore Solutions for Kubernetes

Kubernetes Nov 26, 2025

Performing Kubernetes backup and restore is a crucial step in ensuring service continuity within modern containerized environments. With Velero, administrators can securely back up resources such as Deployments, Services, ConfigMaps, and even persistent data, while VeleroUI provides an intuitive graphical interface that simplifies backup management without relying entirely on the CLI. This article discusses how to implement a Velero Kubernetes Backup using MinIO S3 as the backend—an efficient and lightweight object storage solution ideal for both on-premise and cloud environments. Through the integration of Velero MinIO, the Kubernetes disaster recovery process becomes faster, more efficient, and more organized, ensuring that clusters remain protected in the event of system failures or configuration errors. This guide is designed for administrators seeking to build an independent and scalable backup solution using Velero Restore, Velero UI, and MinIO as the core foundation for Kubernetes data protection.

VeleroUI Dashboard | byamri.com
VeleroUI Dashboard | byamri.com

Prerequisite

You must have an S3 storage like MinIO with web console and api enable. Default port is 9000 for api and 9090 for web console

MinIO

  1. Access URL dashboard MinIO do you have before, and create Bucket
MinIO Bucket | byamri.com
MinIO Bucket | byamri.com

Install Velero

  1. Download manifest
wget https://github.com/vmware-tanzu/velero/releases/download/v1.17.1/velero-v1.17.1-linux-amd64.tar.gz
  1. Extract file
sudo tar -zxvf velero-v1.17.1-linux-amd64.tar.gz
  1. Then, move binary file
sudo mv velero-v1.17.1-linux-amd64/velero /usr/local/bin
  1. Create credentials
sudo cat << EOF | sudo tee ./credentials
[default]
aws_access_key_id = <username-minio>
aws_secret_access_key = <password-minio>
  1. Deploy Velero to the cluster kubernetes
velero install \\
  --provider aws \\
  --plugins velero/velero-plugin-for-aws:v1.3.0 \\
  --bucket kubernetes \\
  --secret-file ./credentials \\
  --use-volume-snapshots=false \\
  --prefix k8s-backup \\
  --backup-location-config region=minio,s3ForcePathStyle="true",s3Url=https://<IP-INSTANCE-MINIO>:9000 \\
  --wait
  1. Make sure for the backup location velero is Available
Velero backup location status | byamri.com
Velero backup location status | byamri.com

Install VeleroUI

  1. Clone Repository
 git clone https://github.com/otwld/velero-ui.git
  1. Go to the manifest directory
cd velero-ui/kubernetes/manifests
  1. Apply manifests with kubectl
kubectl apply -f .
  1. Access via kube-proxy
kubectl port-forward service/velero-ui 3333:80 -n velero-ui
  1. Login with default user password
Username: admin
Password: admin
VeleroUI Dashboard | byamri.com
VeleroUI Dashboard | byamri.com

Test Create Backup

  1. Click Backups+ NewFrom Scratch and then fill in accordingly
VeleroUI Create Backup | byamri.com
VeleroUI Create Backup | byamri.com
VeleroUI Create Backup | byamri.com
VeleroUI Create Backup | byamri.com
  1. Logs backup process
VeleroUI Create Backup Logs | byamri.com
VeleroUI Create Backup Logs | byamri.com
  1. Status backup successfully
VeleroUI Create Backup Status | byamri.com
VeleroUI Create Backup Status | byamri.com
  1. Makesure backup file is also available on MinIO bucket
MinIO Bucket | byamri.com
MinIO Bucket | byamri.com

In this guide, we explored how Velero and VeleroUI provide a seamless and reliable solution for performing backup and restore operations in Kubernetes environments. By integrating MinIO as the S3-compatible backend, organizations can build a flexible, scalable, and fully self-hosted data protection strategy for their clusters. VeleroUI simplifies management through an intuitive interface, while Velero’s core capabilities ensure consistent backups, smooth restores, and robust disaster recovery workflows. Together, these tools empower administrators to maintain cluster resilience and ensure operational continuity in any deployment scenario.

Reference: https://velero-ui.docs.otwld.com/getting-started/kubernetes

Tags

Roby Yasir Amri

I am interested in technological developments related to Cloud Computing, Linux, DevOps, Scripting, and Programming.