Skip to main content
Platform Operations/Platform Federation
GETPlatformSince 1.0SynchronousAuth Required

GetDriftReport

Generate a configuration drift report comparing clusters against a base cluster.

Execution Availability

Try It Out

Submit a mock request using the current auth context and example-driven inputs.

Path Parameters

Query Parameters

Request Inputs

Path Parameters

  • groupIdStringRequired

    ID of the cluster group to generate a drift report for

Query Parameters

  • baseClusterIdString

    UUID of the cluster to use as the comparison baseline UUID of the cluster to use as the comparison baseline

Responses

200 OK

On success, this API returns the following response structure.

  • groupIdString

    ID of the cluster group this drift report covers

    Example: cg-001-xyz

  • baseClusterIdString

    UUID of the cluster used as the baseline for comparison

    Example: cluster-abc-001

  • driftItemsList

    List of detected drift items

    Example: (nested array)

    • namespaceString

      Namespace where drift was detected

      Example: production

    • workloadNameString

      Name of the workload with detected drift

      Example: api-service

    • driftTypeString

      Type of drift detected (e.g. replicas, image, config)

      Example: replicas

    • baseValueString

      Value in the base cluster

      Example: 3

    • comparedValueString

      Value in the compared cluster

      Example: 2

    • compareClusterString

      ID of the cluster being compared against the base

      Example: cluster-secondary-001

  • generatedAtString

    Generated at

    Example: 2026-01-15T08:00:00Z

Endpoint

GET/api/v1/federation/cluster-groups/{groupId}/drift-report

/api/v1/federation/cluster-groups/{groupId}/drift-report

Operation ID

GetDriftReport

Permalink

Request Example

curl -X GET '{host}/api/v1/federation/cluster-groups/{groupId}/drift-report' -H 'Authorization: Bearer {token}'

Response Example

200
{
  "groupId": "cg-001-xyz",
  "baseClusterId": "cluster-abc-001",
  "driftItems": [
    {}
  ],
  "generatedAt": "example"
}

Change History

This API has no change history records yet.

View all change history