Skip to content

Commit

Permalink
Fix wrong TCP flags validation (antrea-io#6050)
Browse files Browse the repository at this point in the history
Signed-off-by: gran <gran@vmware.com>
  • Loading branch information
gran-vmv authored and Your Name committed Mar 4, 2024
1 parent 33bd851 commit 89bf197
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions build/charts/antrea/crds/traceflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ spec:
flags:
type: integer
minimum: 0
maximum: 7
maximum: 255
liveTraffic:
type: boolean
droppedOnly:
Expand Down Expand Up @@ -503,7 +503,7 @@ spec:
flags:
type: integer
minimum: 0
maximum: 7
maximum: 255
type: object
udp:
properties:
Expand Down
4 changes: 2 additions & 2 deletions build/yamls/antrea-aks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4960,7 +4960,7 @@ spec:
flags:
type: integer
minimum: 0
maximum: 7
maximum: 255
liveTraffic:
type: boolean
droppedOnly:
Expand Down Expand Up @@ -5073,7 +5073,7 @@ spec:
flags:
type: integer
minimum: 0
maximum: 7
maximum: 255
type: object
udp:
properties:
Expand Down
4 changes: 2 additions & 2 deletions build/yamls/antrea-crds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4933,7 +4933,7 @@ spec:
flags:
type: integer
minimum: 0
maximum: 7
maximum: 255
liveTraffic:
type: boolean
droppedOnly:
Expand Down Expand Up @@ -5046,7 +5046,7 @@ spec:
flags:
type: integer
minimum: 0
maximum: 7
maximum: 255
type: object
udp:
properties:
Expand Down
4 changes: 2 additions & 2 deletions build/yamls/antrea-eks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4960,7 +4960,7 @@ spec:
flags:
type: integer
minimum: 0
maximum: 7
maximum: 255
liveTraffic:
type: boolean
droppedOnly:
Expand Down Expand Up @@ -5073,7 +5073,7 @@ spec:
flags:
type: integer
minimum: 0
maximum: 7
maximum: 255
type: object
udp:
properties:
Expand Down
4 changes: 2 additions & 2 deletions build/yamls/antrea-gke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4960,7 +4960,7 @@ spec:
flags:
type: integer
minimum: 0
maximum: 7
maximum: 255
liveTraffic:
type: boolean
droppedOnly:
Expand Down Expand Up @@ -5073,7 +5073,7 @@ spec:
flags:
type: integer
minimum: 0
maximum: 7
maximum: 255
type: object
udp:
properties:
Expand Down
4 changes: 2 additions & 2 deletions build/yamls/antrea-ipsec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4960,7 +4960,7 @@ spec:
flags:
type: integer
minimum: 0
maximum: 7
maximum: 255
liveTraffic:
type: boolean
droppedOnly:
Expand Down Expand Up @@ -5073,7 +5073,7 @@ spec:
flags:
type: integer
minimum: 0
maximum: 7
maximum: 255
type: object
udp:
properties:
Expand Down
4 changes: 2 additions & 2 deletions build/yamls/antrea.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4960,7 +4960,7 @@ spec:
flags:
type: integer
minimum: 0
maximum: 7
maximum: 255
liveTraffic:
type: boolean
droppedOnly:
Expand Down Expand Up @@ -5073,7 +5073,7 @@ spec:
flags:
type: integer
minimum: 0
maximum: 7
maximum: 255
type: object
udp:
properties:
Expand Down

0 comments on commit 89bf197

Please sign in to comment.