Skip to content

Commit

Permalink
Merge branch 'kubernetes-sigs:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
shraddhabang authored May 15, 2024
2 parents 28a97f3 + d3bbf91 commit 3d97993
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 3d97993

Please sign in to comment.