Skip to main content

Updates the cluster configuration information

PUT 

https://api.spectrocloud.com/v1/cloudconfigs/edge/:configUid/clusterConfig

Updates the cluster configuration information

Request

Path Parameters

    configUid stringrequired

    Cluster's cloud config uid

Body

    clusterConfig

    object

    EdgeClusterConfig defines Edge Cluster specific Spec

    sshKeysstring[]

    SSHKeys specifies a list of ssh authorized keys to access the vms as a 'spectro' user

Responses

The resource was updated successfully

curl -L -X PUT 'https://api.spectrocloud.com/v1/cloudconfigs/edge/:configUid/clusterConfig' \
-H 'Content-Type: application/json' \
--data-raw '{
"clusterConfig": {
"sshKeys": [
"string"
]
}
}'
Request Collapse all
Base URL
https://api.spectrocloud.com
Parameters
— pathrequired
Body
{
"clusterConfig": {
"sshKeys": [
"string"
]
}
}