Skip to main content
PUT
/
api
/
v1
/
clusters
/
digitalocean
/
{cluster_id}
/
node-groups
/
{group_name}
/
taints
Update Taints Endpoint
import requests

url = "https://platform.ankra.app/api/v1/clusters/digitalocean/{cluster_id}/node-groups/{group_name}/taints"

payload = { "taints": [
        {
            "key": "<string>",
            "value": ""
        }
    ] }
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

response = requests.put(url, json=payload, headers=headers)

print(response.text)
const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({taints: [{key: '<string>', value: ''}]})
};

fetch('https://platform.ankra.app/api/v1/clusters/digitalocean/{cluster_id}/node-groups/{group_name}/taints', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
curl --request PUT \
--url https://platform.ankra.app/api/v1/clusters/digitalocean/{cluster_id}/node-groups/{group_name}/taints \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"taints": [
{
"key": "<string>",
"value": ""
}
]
}
'
{
  "group_name": "<string>",
  "updated": 123
}
{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

authorization
string | null
x-ankra-organisation-id
string | null

Path Parameters

cluster_id
string<uuid>
required
group_name
string
required

Query Parameters

wait
boolean
default:false

Body

application/json
taints
NodeTaint · object[]
required

Response

Successful Response

group_name
string
required
updated
integer
required