Skip to content

Limiting Connector Version History

You can limit the number of version history records maintained for specific connectors. This feature helps manage storage by retaining only the most relevant data. A version history record logs previous configurations or policy states for a given connector, which is useful for auditability and troubleshooting.

The configured number of records will be displayed along with the current active version. The default value for OPS_SERVER_CONNECTOR_VERSION_HISTORY_RECORDS_LIMIT is 100.

Recommended Setting

The maximum recommended value for OPS_SERVER_CONNECTOR_VERSION_HISTORY_RECORDS_LIMIT is 1000.

Prerequisites

  1. Ops Server must be set up. For setup instructions, refer to the setup guide.

Setup

  1. SSH to the instance where Privacera Manager is installed.

  2. Run the following command to open the .yml file to be edited.

    Bash
    vi ~/privacera/privacera-manager/config/custom-vars/vars.ops-server.yaml
    

  3. Add the following property to the vars.ops-server.yaml file:

    Replace the value with your desired version history limit.

    YAML
    OPS_SERVER_CONNECTOR_VERSION_HISTORY_RECORDS_LIMIT: "200"
    
  4. Once the property is configured, run the following commands to update your Privacera Manager platform instance:

    Step 1 - Setup which generates the helm charts. This step usually takes few minutes.

    Bash
    cd ~/privacera/privacera-manager
    ./privacera-manager.sh setup
    
    Step 2 - Apply the Privacera Manager helm charts.
    Bash
    cd ~/privacera/privacera-manager
    ./pm_with_helm.sh upgrade
    
    Step 3 - Post-installation step which generates Plugin tar ball, updates Route 53 DNS and so on.

    Bash
    cd ~/privacera/privacera-manager
    ./privacera-manager.sh post-install
    

Comments