Clone Stack To Cluster Endpoint
import requests
url = "https://platform.ankra.app/api/v1/org/clusters/imported/{cluster_id}/stacks/clone"
payload = {
"source_cluster_id": "<string>",
"stack_name": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({source_cluster_id: '<string>', stack_name: '<string>'})
};
fetch('https://platform.ankra.app/api/v1/org/clusters/imported/{cluster_id}/stacks/clone', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request POST \
--url https://platform.ankra.app/api/v1/org/clusters/imported/{cluster_id}/stacks/clone \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"source_cluster_id": "<string>",
"stack_name": "<string>"
}
'{
"addons_cloned": 123,
"draft_id": "<string>",
"manifests_cloned": 123,
"stack_name": "<string>",
"addons_needing_reconfiguration": [],
"cross_org_registry_credentials_missing": [],
"cross_org_secret_slots_dropped": [],
"deploy_error": "<string>",
"deployed": false,
"job_count": 0,
"needs_input": [
{
"member_kind": "<string>",
"member_name": "<string>",
"reason": "<string>",
"paths": [
"<string>"
]
}
],
"operation_id": "<string>",
"warnings": []
}{
"detail": "Cluster not found"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Imported Clusters
Clone Stack To Cluster Endpoint
POST
/
api
/
v1
/
org
/
clusters
/
imported
/
{cluster_id}
/
stacks
/
clone
Clone Stack To Cluster Endpoint
import requests
url = "https://platform.ankra.app/api/v1/org/clusters/imported/{cluster_id}/stacks/clone"
payload = {
"source_cluster_id": "<string>",
"stack_name": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({source_cluster_id: '<string>', stack_name: '<string>'})
};
fetch('https://platform.ankra.app/api/v1/org/clusters/imported/{cluster_id}/stacks/clone', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request POST \
--url https://platform.ankra.app/api/v1/org/clusters/imported/{cluster_id}/stacks/clone \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"source_cluster_id": "<string>",
"stack_name": "<string>"
}
'{
"addons_cloned": 123,
"draft_id": "<string>",
"manifests_cloned": 123,
"stack_name": "<string>",
"addons_needing_reconfiguration": [],
"cross_org_registry_credentials_missing": [],
"cross_org_secret_slots_dropped": [],
"deploy_error": "<string>",
"deployed": false,
"job_count": 0,
"needs_input": [
{
"member_kind": "<string>",
"member_name": "<string>",
"reason": "<string>",
"paths": [
"<string>"
]
}
],
"operation_id": "<string>",
"warnings": []
}{
"detail": "Cluster not found"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Body
application/json
Deploy the cloned draft onto the target straight away, unless the clone had to strip secrets it would ship as placeholders; such a draft is held and needs_input names what to re-enter.
Response
Successful Response
Why a requested deploy did not happen; the draft is kept.
Whether a deploy_after_clone request deployed this draft.
Members whose secrets were stripped by the clone.
Show child attributes
Show child attributes
The deploy operation, when one ran.