GlobalSettings

GlobalSettings
Global secop settings

The global settings for secop. This is a read-only response schema.

JSON Example
{
    "max_controller_node": 0,
    "min_controller_node": 0,
    "max_worker_node": 0,
    "min_worker_node": 0,
    "min_node_ip_pool_count": 0,
    "min_service_ip_pool_count": 0
}
integer As int64 As int64
max_controller_node
Read-Only

This is the max number of controller nodes supported.

integer As int64 As int64
min_controller_node
Read-Only

This is the minimum number of controller nodes supported.

integer As int64 As int64
max_worker_node
Read-Only

This is the max number of worker nodes supported.

integer As int64 As int64
min_worker_node
Read-Only

This is the minimum number of worker nodes supported.

integer As int64 As int64
min_node_ip_pool_count
Read-Only

The minimum number of IPs required in the Node IP Pool. Calculated as: 2 (1 for VIP + 1 for rolling upgrade) + controller_count + worker_count. Uses min_worker_nodes if worker_count query parameter is not provided.

integer As int64 As int64
min_service_ip_pool_count
Read-Only

The minimum number of IPs required in the Service IP Pool. Calculation varies by deployment:

  • Licensing/AVI Operations/Evaluation: 3 IPs (1 Contour + 1 kafka-external + 1 kafka broker)
  • Medium: 5 IPs (1 Contour + 1 kafka-external + 3 kafka brokers hardcoded)
  • Large/Extra-Large: 3 + ceil(worker_count/2) for extra kafka brokers Uses min_worker_nodes if worker_count query parameter is not provided.