Skip to content

Commit 0b47a41

Browse files
committed
docs(*): start updating for fnlb attributes
1 parent 1b7ff39 commit 0b47a41

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

docs/guide/ingress/annotations.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,8 @@ You can add annotations to kubernetes Ingress and Service objects to customize t
8585
| [alb.ingress.kubernetes.io/frontend-nlb-healthcheck-unhealthy-threshold-count](#frontend-nlb-healthcheck-unhealthy-threshold-count) | integer |3| Ingress | N/A |
8686
| [alb.ingress.kubernetes.io/frontend-nlb-healthcheck-success-codes](#frontend-nlb-healthcheck-success-codes) | string |200| Ingress | N/A |
8787
| [alb.ingress.kubernetes.io/frontend-nlb-tags](#frontend-nlb-tags) | stringMap | N/A | Ingress | Exclusive |
88-
| [alb.ingress.kubernetes.io/frontend-nlb-eip-allocations](#frontend-nlb-eip-allocations) | stringList |200| Ingress | N/A |
88+
| [alb.ingress.kubernetes.io/frontend-nlb-eip-allocation](#frontend-nlb-eip-allocation) | stringList |N/A| Ingress | N/A |
89+
| [alb.ingress.kubernetes.io/frontend-nlb-attributes](#frontend-nlb-attributes) | stringList |N/A| Ingress | N/A |
8990

9091
## IngressGroup
9192
IngressGroup feature enables you to group multiple Ingress resources together.

pkg/shared_constants/attributes.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
package shared_constants
22

33
const (
4-
// LBAttributeDeletionProtection deletion protection attribute name
54
LBAttributeDeletionProtection = "deletion_protection.enabled"
65
LBAttributeAccessLogsS3Enabled = "access_logs.s3.enabled"
76
LBAttributeAccessLogsS3Bucket = "access_logs.s3.bucket"
87
LBAttributeAccessLogsS3Prefix = "access_logs.s3.prefix"
98
LBAttributeLoadBalancingCrossZoneEnabled = "load_balancing.cross_zone.enabled"
109
LBAttributeLoadBalancingDnsClientRoutingPolicy = "dns_record.client_routing_policy"
11-
LBAttributeAvailabilityZoneAffinity = "availability_zone_affinity"
12-
LBAttributePartialAvailabilityZoneAffinity = "partial_availability_zone_affinity"
13-
LBAttributeAnyAvailabilityZone = "any_availability_zone"
10+
11+
LBAttributeAvailabilityZoneAffinity = "availability_zone_affinity"
12+
LBAttributePartialAvailabilityZoneAffinity = "partial_availability_zone_affinity"
13+
LBAttributeAnyAvailabilityZone = "any_availability_zone"
1414
)
1515

1616
const (

0 commit comments

Comments
 (0)