Back to Velero

Upgrading to Velero 1.3

site/content/docs/v1.3.0/upgrade-to-1.3.md

1.18.01.4 KB
Original Source

Prerequisites

  • Velero v1.2 installed.

If you're not yet running Velero v1.2, see the following:

Instructions

  1. Install the Velero v1.3 command-line interface (CLI) by following the instructions here.

    Verify that you've properly installed it by running:

    bash
    velero version --client-only
    

    You should see the following output:

    bash
    Client:
        Version: v1.3.0
        Git commit: <git SHA>
    
  2. Update the container image used by the Velero deployment and, optionally, the restic daemon set:

    bash
    kubectl set image deployment/velero \
        velero=velero/velero:v1.3.0 \
        --namespace velero
    
    # optional, if using the restic daemon set
    kubectl set image daemonset/restic \
        restic=velero/velero:v1.3.0 \
        --namespace velero
    
  3. Confirm that the deployment is up and running with the correct version by running:

    bash
    velero version
    

    You should see the following output:

    bash
    Client:
        Version: v1.3.0
        Git commit: <git SHA>
    
    Server:
        Version: v1.3.0