-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add early access control plane firewall new payload and structure def…
…inition (#894) * Add control plane firewall parameter to create and update request body * Add control plane firewall to response * Address PR comments * Address PR comments * PR comments * Fix control plane firewall description --------- Co-authored-by: Oliver Love <[email protected]>
- Loading branch information
Showing
4 changed files
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
specification/resources/kubernetes/models/control_plane_firewall.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
type: object | ||
nullable: true | ||
description: An object specifying the control plane firewall for the Kubernetes cluster. | ||
Control plane firewall is in early availability (invite only). | ||
properties: | ||
enable: | ||
type: boolean | ||
description: Indicates whether the control plane firewall is enabled. | ||
example: true | ||
|
||
allowed_addresses: | ||
type: array | ||
description: An array of public addresses (IPv4 or CIDR) allowed to access the control plane. | ||
items: | ||
type: string | ||
example: | ||
- "1.2.3.4/32" | ||
- "1.1.0.0/16" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters