Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This is an example of the new ‘cluster’ API, is part of the device configuration of EVE API


message EdgeDevConfig message EdgeDevConfig {

...

    // cluster configure

    EdgeNodeCluster cluster;

}

message EdgeNodeCluster {
    // cluster name, in case it has multiple cluster on the same site
    string ClusterName;
    // cluster UUID
    string ClusterID;
    // Cluster-Interface
    string ClusterInterface;
    // The ‘cluster-prefix’ IP address of the ‘Cluster-Interface’, e.g. 10.244.244.2/28
    string ClusterIPPrefix;
    // This device is ‘seed-server’ or not
    bool IsSeedServer;
    // This device is an ‘Agent’ node

...