Skip to content

Commit

Permalink
Add IPAddressTypeDualStackWithoutPublicIPV4 (#3693)
Browse files Browse the repository at this point in the history
  • Loading branch information
wweiwei-li committed May 14, 2024
1 parent 2a66d99 commit d3bbf91
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions apis/elbv2/v1beta1/ingressclassparams_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,14 @@ import (
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)

// +kubebuilder:validation:Enum=ipv4;dualstack
// +kubebuilder:validation:Enum=ipv4;dualstack;dualstack-without-public-ipv4
// IPAddressType is the ip address type of load balancer.
type IPAddressType string

const (
IPAddressTypeIPV4 IPAddressType = "ipv4"
IPAddressTypeDualStack IPAddressType = "dualstack"
IPAddressTypeIPV4 IPAddressType = "ipv4"
IPAddressTypeDualStack IPAddressType = "dualstack"
IPAddressTypeDualStackWithoutPublicIPV4 IPAddressType = "dualstack-without-public-ipv4"
)

// +kubebuilder:validation:Enum=internal;internet-facing
Expand Down

0 comments on commit d3bbf91

Please sign in to comment.