@@ -6209,7 +6209,18 @@ paths:
6209
6209
label:
6210
6210
$ref: '#/components/schemas/LKEClusterRequestBody/properties/label'
6211
6211
tags:
6212
- $ref: '#/components/schemas/LKEClusterRequestBody/properties/tags'
6212
+ x-linode-filterable: true
6213
+ type: array
6214
+ items:
6215
+ type: string
6216
+ example:
6217
+ - prod
6218
+ - monitoring
6219
+ - ecomm
6220
+ - blog
6221
+ description: >
6222
+ An array of tags applied to the Kubernetes cluster. Tags are for organizational purposes only.
6223
+ To delete a tag, exclude it from your `tags` array.
6213
6224
responses:
6214
6225
'200':
6215
6226
description: Returns a single Kubernetes cluster.
@@ -6221,11 +6232,17 @@ paths:
6221
6232
$ref: '#/components/schemas/LKECluster/properties/label'
6222
6233
tags:
6223
6234
x-linode-filterable: true
6235
+ type: array
6236
+ items:
6237
+ type: string
6224
6238
example:
6225
6239
- prod
6226
6240
- monitoring
6227
6241
- ecomm
6228
6242
- blog
6243
+ description: >
6244
+ An array of tags applied to the Kubernetes cluster. Tags are for organizational purposes only.
6245
+ To delete a tag, exclude it from your `tags` array.
6229
6246
created:
6230
6247
$ref: '#/components/schemas/LKECluster/properties/created'
6231
6248
updated:
@@ -6241,14 +6258,16 @@ paths:
6241
6258
-H "Authorization: Bearer $TOKEN" \
6242
6259
-X PUT -d '{
6243
6260
"label": "lkecluster54321"
6244
- "tags" : ["prod", "monitoring"]
6261
+ "tags" : ["ecomm", "blog", " prod", "monitoring"]
6245
6262
}' \
6246
6263
https://api.linode.com/v4beta/lke/clusters/12345
6247
6264
- lang: CLI
6248
6265
source: >
6249
6266
linode-cli lke cluster-update 12345 \
6250
6267
--label lkecluster54321 \
6251
- --tags prod
6268
+ --tags ecomm \
6269
+ --tags blog \
6270
+ --tags prod \
6252
6271
--tags monitoring
6253
6272
delete:
6254
6273
operationId: deleteLKECluster
0 commit comments