About update order priority for a VSatellite¶
Configure the upgrade order priority for a VSatellite to control its upgrade sequence during rolling upgrades managed by CyberArk Certificate Manager - SaaS.
Prerequisite¶
The VSatellite must already be deployed. You cannot set update priority during initial creation.
Did you know?
Setting the update order priority lets you control which VSatellites are updated first. For example, you can update test or development environments before production to validate changes.
To set or change the update order priority in the UI¶
- Sign in to Certificate Manager - SaaS.
- Locate the VSatellite you want to configure, and click to open its Details drawer.
- In the Upgrade Order Priority field, enter a number between 1 (highest priority) and 100 (lowest priority).
- Click Save.
To set or change the update order priority using the API¶
- Send a
PUTrequest to the/v1/edgeinstances/{id}endpoint. - In the request body, include the
updateOrderPriorityfield with a value between 1 and 100.
Example request:
PUT /v1/edgeinstances/{id}
{
"name": "Satellite 1",
"updateOrderPriority": 10
}
You can retrieve current values using the GET /v1/edgeinstances endpoint. Each VSatellite includes the updateOrderPriority property in the response.
The updated priority appears in the UI and API responses. During future rolling upgrades, this value determines the update sequence for your VSatellites.