Returns the specified Custom cloud config
GET/v1/cloudconfigs/cloudTypes/:cloudType/:configUid
Returns the specified Custom cloud config
Request
Path Parameters
Cluster's cloud type
Cluster's cloud config uid
Header Parameters
Scope the request to the specified project uid
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
Array [
]
]
Cloud type of the cloud config
metadata
object
ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.
annotations
object
Annotations are system generated key value metadata for the resource. As an input certain annotations like description can be set.
Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.
Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.
labels
object
Labels are key value data to organize and categorize resources. Providing spectro__tag as value for a label is considered as a kubernetes compliant tag
Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.
Name of the resource.
UID is the unique identifier generated for the resource. This is not an input field for any request.
spec
object
CustomCloudConfigSpec defines the cloud configuration input by user This will translate to clusterspec/machinespec for cluster-api
cloudAccountRef
object
ObjectReference contains enough information to let you inspect or modify the referred object.
Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
Name of the referent.
UID of the referent.
clusterConfig
object
Cluster level configuration for Custom cloud and applicable for all the machine pools
YAML string for Cluster and CloudCluster
machinePoolConfig
object[]
additionalLabels
object
additionalLabels
whether this pool is for control plane
size of the pool, number of machines
taints
object[]
master or worker taints
Possible values: [NoSchedule
, PreferNoSchedule
, NoExecute
]
The taint key to be applied to a node
Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.
The taint value corresponding to the taint key.
if IsControlPlane==true && useControlPlaneAsWorker==true, then will remove master taint this will not be used for worker pools
YAML string for machine
{
"kind": "string",
"metadata": {
"annotations": {},
"creationTimestamp": "2024-04-16T17:49:00.185Z",
"deletionTimestamp": "2024-04-16T17:49:00.185Z",
"labels": {},
"lastModifiedTimestamp": "2024-04-16T17:49:00.185Z",
"name": "string",
"uid": "string"
},
"spec": {
"cloudAccountRef": {
"kind": "string",
"name": "string",
"uid": "string"
},
"clusterConfig": {
"values": "string"
},
"machinePoolConfig": [
{
"additionalLabels": {},
"isControlPlane": true,
"name": "string",
"size": 0,
"taints": [
{
"effect": "NoSchedule",
"key": "string",
"timeAdded": "2024-04-16T17:49:00.185Z",
"value": "string"
}
],
"useControlPlaneAsWorker": true,
"values": "string"
}
]
}
}