Backing up the PPC

Complete the steps provided in this section to backup a PPC deployment.

Protegrity Provisioned Cluster (PPC) supports backup of Insight indexes and cluster configurations. Use the procedures below to update the scheduled backups of your PPC deployment.

Backing up Velero backup schedule

To take a backup at an interval of 10 minutes, the cron job must be executed before the schedule. This ensures that the latest configurations are included and are available in the Storage Account.
By default, the cron job is executed after every 3 hours and schedule is executed after every 3.5 hours.

For taking the backups, the frequency of schedule and cron job can be changed, as required.

Perform the following steps to update the frequency.

  1. To update the frequency of the cron job, run the following command.

    $ kubectl patch cronjob authnz-postgresql-backup-recovery-cron-job \
    -n api-gateway \'
    --type=merge -p '{"spec":{"schedule":"<required frequency>"}}'
    
  2. To update the frequency of the schedule, run the following command.

    $ kubectl patch schedule authnz-postgresql-schedule-backup \   
    -n pty-backup-recovery \
    --type=merge -p '{"spec":{"schedule":"<required frequency>"}}' 
    

For instance, to update the frequency of the backup schedule to 10 minutes, perform the following steps.

  1. To update the cron job to every 8 minutes, run the following command.

    $ kubectl patch cronjob authnz-postgresql-backup-recovery-cron-job \
     -n api-gateway \
     --type=merge -p '{"spec":{"schedule":"8-58/10 * * * *"}}'
    
  2. To update the schedule to every 10 minutes, run the following command.

    $ kubectl patch schedule authnz-postgresql-schedule-backup \
     -n pty-backup-recovery \
     --type=merge -p '{"spec":{"schedule":"*/10 * * * *"}}'
    

Backing up indexes

Insight indexes are backed up automatically using a scheduled job. To manually back up the indexes, complete the following steps:

  1. Log in to the Insight Dashboard.
  2. Select the main menu.
  3. Navigate to Management > Snapshot Management > Snapshot policies.
  4. Click the daily-insight-snapshots policy.
  5. Click Edit.
  6. Update the following parameters:
    • Snapshot schedule
      • Frequency: Custom (Cron expression)
      • Cron expression: */15 * * * *
  7. Click Update.
  8. Wait for the next scheduled snapshot to complete. Verify that the snapshot is created from the snapshot status.

Note: The snapshot schedule is set to run every 15 minutes for creating the manual backup. Restore the default settings after the manual backup is complete. Before upgrading, disable the scheduler job after the backup is created. Ensure that the default parameters are restored and the job is re-enabled after the upgrade.


Last modified : July 29, 2026