Skip to content

Commit 5fa005a

Browse files
committed
fix bullets in validating-admission-policy
1 parent c5a17a1 commit 5fa005a

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

content/en/docs/reference/access-authn-authz/validating-admission-policy.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -373,11 +373,12 @@ Examples on escaping:
373373
374374
Equality on arrays with list type of 'set' or 'map' ignores element order, i.e. [1, 2] == [2, 1].
375375
Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:
376-
- 'set': `X + Y` performs a union where the array positions of all elements in `X` are preserved and
377-
non-intersecting elements in `Y` are appended, retaining their partial order.
378-
- 'map': `X + Y` performs a merge where the array positions of all keys in `X` are preserved but the values
379-
are overwritten by values in `Y` when the key sets of `X` and `Y` intersect. Elements in `Y` with
380-
non-intersecting keys are appended, retaining their partial order.
376+
377+
- 'set': `X + Y` performs a union where the array positions of all elements in `X` are preserved and
378+
non-intersecting elements in `Y` are appended, retaining their partial order.
379+
- 'map': `X + Y` performs a merge where the array positions of all keys in `X` are preserved but the values
380+
are overwritten by values in `Y` when the key sets of `X` and `Y` intersect. Elements in `Y` with
381+
non-intersecting keys are appended, retaining their partial order.
381382

382383
#### Validation expression examples
383384

@@ -425,8 +426,8 @@ the request is determined as follows:
425426

426427
1. If **any** match condition evaluated to `false` (regardless of other errors), the API server skips the policy.
427428
2. Otherwise:
428-
- for [`failurePolicy: Fail`](#failure-policy), reject the request (without evaluating the policy).
429-
- for [`failurePolicy: Ignore`](#failure-policy), proceed with the request but skip the policy.
429+
- for [`failurePolicy: Fail`](#failure-policy), reject the request (without evaluating the policy).
430+
- for [`failurePolicy: Ignore`](#failure-policy), proceed with the request but skip the policy.
430431

431432
### Audit annotations
432433

0 commit comments

Comments
 (0)