Skip to content

Helm charts for velero-ui, velero-api, and velero-watchdog

Notifications You must be signed in to change notification settings

dcaputo-harmoni/velero-helm

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HELM Install

With Helm, you install

Install with repo

Follow these steps:

  1. Add repo:

    helm repo add seriohub-velero https://seriohub.github.io/velero-helm/
  2. Check repo:

    helm search repo seriohub-velero

    Check that the output looks like:

    NAME                CHART VERSION   APP VERSION DESCRIPTION                                       
    seriohub-velero/vui 0.1.6           0.1.6       Velero User Interface: a friendly UI and dashbo..
  3. Create a configuration file starting from values-override.yaml file.

    [!NOTE] If you need advanced configurations, you can configure the values.yaml

    The description of the parameters is available in the relevant readme:

  4. Create namespace:

    kubectl create ns velero-ui
  5. Install using Helm:

    helm install -f values-override.yaml vui seriohub-velero/vui -n velero-ui
  6. Upgrade (In the case of changes or updates):

    helm upgrade -f values-override.yaml vui seriohub-velero/vui -n velero-ui
  7. Uninstall

    helm uninstall vui -n velero-ui
    helm repo remove seriohub-velero
    kubectl delete ns velero-ui

Install with clone repository

Follow these steps:

  1. Clone the repository:

    git clone https://github.com/seriohub/velero-helm.git
  2. Navigate to the Helm folder:

    cd velero-helm
  3. Edit the necessary data in the values-override.yaml file.

    [!NOTE] If you need advanced configurations, you can configure the values.yaml

    The description of the parameters is available in the relevant readme:

  4. Create the namespace

    kubectl create ns velero-ui
  5. Install using Helm:

    [!IMPORTANT] Make sure to customize the values in the values-override.yaml file according to your requirements before running the installation command.

    helm install -f values-override.yaml vui ./chart/ -n velero-ui
  6. Upgrade (In the case of changes or updates):

    helm upgrade -f values-override.yaml vui ./chart/ -n velero-ui
  7. Uninstall

    helm uninstall vui -n velero-ui
    kubectl delete ns velero-ui

About

Helm charts for velero-ui, velero-api, and velero-watchdog

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Smarty 61.0%
  • Makefile 39.0%