Skip to content

Commit

Permalink
chore: fix expressions
Browse files Browse the repository at this point in the history
Signed-off-by: Kumar Mallikarjuna <kumarmallikarjuna.work@gmail.com>
  • Loading branch information
kumar-mallikarjuna committed Sep 24, 2024
1 parent 63d80ac commit c6a8c0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions keps/0009-cel-assertions.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,13 @@ celAssert:

# Success if any expression evaluates to true
any:
- expression: "resource.status.readyReplicas > 1"
- expression: "resource1.status.readyReplicas > 1"
- expression: ...
- ...

# Success only if all expressions evaluate to true
all:
- expression: "resource.status.readyReplicas > 0"
- expression: "resource2.status.readyReplicas > 0"
- expression: ...
- ...
```
Expand Down

0 comments on commit c6a8c0e

Please sign in to comment.