Skip to content

Commit d3bbf91

Browse files
authored
Add IPAddressTypeDualStackWithoutPublicIPV4 (#3693)
1 parent 2a66d99 commit d3bbf91

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

apis/elbv2/v1beta1/ingressclassparams_types.go

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,14 @@ import (
2020
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
2121
)
2222

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

2727
const (
28-
IPAddressTypeIPV4 IPAddressType = "ipv4"
29-
IPAddressTypeDualStack IPAddressType = "dualstack"
28+
IPAddressTypeIPV4 IPAddressType = "ipv4"
29+
IPAddressTypeDualStack IPAddressType = "dualstack"
30+
IPAddressTypeDualStackWithoutPublicIPV4 IPAddressType = "dualstack-without-public-ipv4"
3031
)
3132

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

0 commit comments

Comments
 (0)