From bde77a7aceeadfac9291b03354d14095dc207760 Mon Sep 17 00:00:00 2001 From: Andy Stevens Date: Fri, 3 Nov 2023 12:42:47 -0400 Subject: [PATCH 1/3] retitle (#6719) --- .../kubernetes/kubernetes-security-best-practices/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/kubernetes/kubernetes-security-best-practices/index.md b/docs/guides/kubernetes/kubernetes-security-best-practices/index.md index d1e45eebb7d..4047d37c857 100644 --- a/docs/guides/kubernetes/kubernetes-security-best-practices/index.md +++ b/docs/guides/kubernetes/kubernetes-security-best-practices/index.md @@ -8,7 +8,7 @@ published: 2021-09-17 modified_by: name: Linode title: "Kubernetes Security Best Practices Overview" -title_meta: "Kubernetes Security Best Practices: A Beginner's Overview" +title_meta: "Kubernetes Security Best Practices" authors: ["Jack Wallen"] --- From b11665158322a8e73b748ae08644e885116edc78 Mon Sep 17 00:00:00 2001 From: bbiggerr Date: Tue, 7 Nov 2023 16:24:56 -0500 Subject: [PATCH 2/3] Added API v4.167.3 release notes --- docs/release-notes/api/v4.167.3.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 docs/release-notes/api/v4.167.3.md diff --git a/docs/release-notes/api/v4.167.3.md b/docs/release-notes/api/v4.167.3.md new file mode 100644 index 00000000000..a37e0e22504 --- /dev/null +++ b/docs/release-notes/api/v4.167.3.md @@ -0,0 +1,15 @@ +--- +title: API v4.167.3 +date: 2023-11-07 +version: 4.167.3 +--- + +### Changed + +* You can now assign a Firewall to a Linode compute instance by utilizing the `firewall_id` when running the [Linode Create](/docs/api/linode-instances/#linode-create) operation. + +* The following [rate limit](/docs/api/#rate-limiting) changes have been made: + * General API request rate limit reduced from 1,600 requests every 2 minutes to 800 requests every 2 minutes. + * Default operation rate limit reduced from 800 requests per minute to 400 requests per minute. + * GET collection operation default rate limit reduced from 400 requests per minute to 200 requests per minute. + * Statistics operations rate limit reduced from 100 requests per minute to 50 requests per minute. From f92ca05dd61476716b6efca9e1c6793482a10373 Mon Sep 17 00:00:00 2001 From: bbiggerr Date: Tue, 7 Nov 2023 16:29:31 -0500 Subject: [PATCH 3/3] Update API reference to API spec v4.167.3 --- .../github.com/linode/linode-api-docs/v4/openapi.yaml | 9 ++++++--- _vendor/modules.txt | 2 +- go.mod | 2 +- go.sum | 2 ++ 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/_vendor/github.com/linode/linode-api-docs/v4/openapi.yaml b/_vendor/github.com/linode/linode-api-docs/v4/openapi.yaml index b634ca17ec9..9a032fe9a9a 100644 --- a/_vendor/github.com/linode/linode-api-docs/v4/openapi.yaml +++ b/_vendor/github.com/linode/linode-api-docs/v4/openapi.yaml @@ -1,6 +1,6 @@ openapi: 3.0.1 info: - version: 4.167.1 + version: 4.167.3 title: Linode API license: name: Apache 2.0 @@ -372,7 +372,7 @@ info: ### Linode APIv4 Rate Limits - With the Linode API, you can generally make up to 1,600 general API requests every two minutes. Additionally, all commands have a rate limit of 800 requests per minute, and all GET commands that return paginated data collections have a rate limit of 400 requests per minute, unless otherwise specified below. + With the Linode API, you can generally make up to 800 general API requests every two minutes. Additionally, all commands have a rate limit of 400 requests per minute, and all GET commands that return paginated data collections have a rate limit of 200 requests per minute, unless otherwise specified below. **Note:** There may be rate limiting applied at other levels outside of the API, for example, at the load balancer. @@ -388,7 +388,7 @@ info: * [Images List](/docs/api/images/#images-list) - `/stats` endpoints have their own dedicated rate limits of 100 requests per minute. These endpoints are: + `/stats` endpoints have their own dedicated rate limits of 50 requests per minute. These endpoints are: * [View Linode Statistics](/docs/api/linode-instances/#linode-statistics-view) * [View Linode Statistics (year/month)](/docs/api/linode-instances/#statistics-yearmonth-view) @@ -6432,6 +6432,9 @@ paths: example: true interfaces: $ref: '#/components/schemas/LinodeConfigInterfaces' + firewall_id: + type: integer + description: The `id` of the Firewall to attach this Linode to upon creation. responses: '200': description: > diff --git a/_vendor/modules.txt b/_vendor/modules.txt index f59699cc0cb..e8a656e263a 100644 --- a/_vendor/modules.txt +++ b/_vendor/modules.txt @@ -5,4 +5,4 @@ # github.com/bep/turbo/v7 v7.20300.20000 # github.com/gohugoio/hugo-mod-jslibs/instantpage v0.5.1 # github.com/instantpage/instant.page v5.1.1+incompatible -# github.com/linode/linode-api-docs/v4 v4.167.1 +# github.com/linode/linode-api-docs/v4 v4.167.3 diff --git a/go.mod b/go.mod index 0d026cec876..cb73e9b9de0 100644 --- a/go.mod +++ b/go.mod @@ -4,6 +4,6 @@ go 1.15 require ( github.com/hotwired/turbo v7.0.1+incompatible // indirect - github.com/linode/linode-api-docs/v4 v4.167.1 // indirect + github.com/linode/linode-api-docs/v4 v4.167.3 // indirect github.com/linode/linode-docs-theme v0.0.0-20231101183615-575cdc11b8cb // indirect ) diff --git a/go.sum b/go.sum index 6de40baff77..f7afe3a87f0 100644 --- a/go.sum +++ b/go.sum @@ -105,6 +105,8 @@ github.com/linode/linode-api-docs/v4 v4.166.0 h1:YJhGDotvYcI/8VO3OLFYPzo7KknBhQ9 github.com/linode/linode-api-docs/v4 v4.166.0/go.mod h1:JRT7kOTjArLJngT4KkAnxWNGszYSP+zlQg2OHQ407RI= github.com/linode/linode-api-docs/v4 v4.167.1 h1:4eSHN4zXug1P+8L7vAEtFnOQAYXLo4tuGNDJPodczMM= github.com/linode/linode-api-docs/v4 v4.167.1/go.mod h1:JRT7kOTjArLJngT4KkAnxWNGszYSP+zlQg2OHQ407RI= +github.com/linode/linode-api-docs/v4 v4.167.3 h1:Af+5sGL4BfTUDwL8Bklf322jAmuND5FBsZe9EFoYOo4= +github.com/linode/linode-api-docs/v4 v4.167.3/go.mod h1:JRT7kOTjArLJngT4KkAnxWNGszYSP+zlQg2OHQ407RI= github.com/linode/linode-docs-theme v0.0.0-20220622135843-166f108e1933 h1:QchGQS6xESuyjdlNJEjvq2ftGX0sCTAhPhD5hAOJVMI= github.com/linode/linode-docs-theme v0.0.0-20220622135843-166f108e1933/go.mod h1:6kYeZt+rMvJFZ9Wbnm4CDSn8Sg1MuYjr2Kx6W/awiQM= github.com/linode/linode-docs-theme v0.0.0-20220718150422-ea48dbf69943 h1:BE3OgPTfmSdYeNUxcC1clIpJZhdMmYByCCCap0njwyY=