You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/guide/ingress/ingress_class.md
+24-1Lines changed: 24 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -175,7 +175,18 @@ You can use IngressClassParams to enforce settings for a set of Ingresses.
175
175
ipamConfiguration:
176
176
ipv4IPAMPoolId: ipam-pool-000000000
177
177
```
178
-
- with PrefixListsIDs
178
+
- with PrefixListsIDs (not recommended, use prefixListsIDs instead)
179
+
```
180
+
apiVersion: elbv2.k8s.aws/v1beta1
181
+
kind: IngressClassParams
182
+
metadata:
183
+
name: class2048-config
184
+
spec:
185
+
PrefixListsIDs:
186
+
- pl-00000000
187
+
- pl-11111111
188
+
```
189
+
- with prefixListsIDs
179
190
```
180
191
apiVersion: elbv2.k8s.aws/v1beta1
181
192
kind: IngressClassParams
@@ -321,13 +332,25 @@ Cluster administrators can use `ipamConfiguration` field to specify the IPv4 IPA
321
332
322
333
#### spec.PrefixListsIDs
323
334
335
+
We accept either `spec.prefixListsIDs` or `spec.PrefixListsIDs`. Specify both is not allowed. But `spec.PrefixListsIDs` is not recommended, use `spec.prefixListsIDs` instead.
336
+
324
337
`PrefixListsIDs` is an optional setting.
325
338
326
339
Cluster administrators can use `PrefixListsIDs` field to specify the managed prefix lists that are allowed to access the load balancers that belong to this IngressClass. You can specify the list of prefix list IDs in the `spec.PrefixListsIDs` field.
327
340
328
341
1. If `PrefixListsIDs` is set, the prefix lists defined will be applied to the load balancer that belong to this IngressClass. If you specify invalid prefix list IDs, the controller will fail to reconcile ingresses belonging to the particular ingress class.
329
342
2. If `PrefixListsIDs` un-specified, Ingresses with this IngressClass can continue to use `alb.ingress.kubernetes.io/security-group-prefix-lists` annotation to specify the load balancer prefix lists.
330
343
344
+
345
+
#### spec.prefixListsIDs
346
+
347
+
`prefixListsIDs` is an optional setting.
348
+
349
+
Cluster administrators can use `prefixListsIDs` field to specify the managed prefix lists that are allowed to access the load balancers that belong to this IngressClass. You can specify the list of prefix list IDs in the `spec.prefixListsIDs` field.
350
+
351
+
1. If `prefixListsIDs` is set, the prefix lists defined will be applied to the load balancer that belong to this IngressClass. If you specify invalid prefix list IDs, the controller will fail to reconcile ingresses belonging to the particular ingress class.
352
+
2. If `prefixListsIDs` un-specified, Ingresses with this IngressClass can continue to use `alb.ingress.kubernetes.io/security-group-prefix-lists` annotation to specify the load balancer prefix lists.
0 commit comments