Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Outbound public IP support for AlloyDB instances #2784

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,9 @@ spec:
type: string
type: object
type: array
enableOutboundPublicIp:
description: Enabling outbound public ip for the instance.
type: boolean
enablePublicIp:
description: Enabling public ip for the instance. If a user wishes
to disable this, please also clear the list of the authorized
Expand Down Expand Up @@ -263,6 +266,14 @@ spec:
current reported status reflects the most recent desired state of
the resource.
type: integer
outboundPublicIpAddresses:
description: |-
The outbound public IP addresses for the instance. This is available ONLY when
networkConfig.enableOutboundPublicIp is set to true. These IP addresses are used
for outbound connections.
items:
type: string
type: array
publicIpAddress:
description: The public IP addresses for the Instance. This is available
ONLY when networkConfig.enablePublicIp is set to true. This is the
Expand Down Expand Up @@ -462,6 +473,9 @@ spec:
type: string
type: object
type: array
enableOutboundPublicIp:
description: Enabling outbound public ip for the instance.
type: boolean
enablePublicIp:
description: Enabling public ip for the instance. If a user wishes
to disable this, please also clear the list of the authorized
Expand Down Expand Up @@ -530,6 +544,14 @@ spec:
current reported status reflects the most recent desired state of
the resource.
type: integer
outboundPublicIpAddresses:
description: |-
The outbound public IP addresses for the instance. This is available ONLY when
networkConfig.enableOutboundPublicIp is set to true. These IP addresses are used
for outbound connections.
items:
type: string
type: array
publicIpAddress:
description: The public IP addresses for the Instance. This is available
ONLY when networkConfig.enablePublicIp is set to true. This is the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ spec:
cpuCount: 2
networkConfig:
enablePublicIp: true
enableOutboundPublicIp: true
authorizedExternalNetworks:
- cidrRange: 8.8.8.8/30
- cidrRange: 8.8.4.4/30
Loading
Loading