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 <[email protected]>
  • Loading branch information
gran-vmv committed Mar 5, 2024
1 parent f81e07c commit a4a9fa3
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 @@ -5000,7 +5000,7 @@ spec:
flags:
type: integer
minimum: 0
maximum: 7
maximum: 255
liveTraffic:
type: boolean
droppedOnly:
Expand Down Expand Up @@ -5113,7 +5113,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 @@ -4973,7 +4973,7 @@ spec:
flags:
type: integer
minimum: 0
maximum: 7
maximum: 255
liveTraffic:
type: boolean
droppedOnly:
Expand Down Expand Up @@ -5086,7 +5086,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 @@ -5000,7 +5000,7 @@ spec:
flags:
type: integer
minimum: 0
maximum: 7
maximum: 255
liveTraffic:
type: boolean
droppedOnly:
Expand Down Expand Up @@ -5113,7 +5113,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 @@ -5000,7 +5000,7 @@ spec:
flags:
type: integer
minimum: 0
maximum: 7
maximum: 255
liveTraffic:
type: boolean
droppedOnly:
Expand Down Expand Up @@ -5113,7 +5113,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 @@ -5000,7 +5000,7 @@ spec:
flags:
type: integer
minimum: 0
maximum: 7
maximum: 255
liveTraffic:
type: boolean
droppedOnly:
Expand Down Expand Up @@ -5113,7 +5113,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 @@ -5000,7 +5000,7 @@ spec:
flags:
type: integer
minimum: 0
maximum: 7
maximum: 255
liveTraffic:
type: boolean
droppedOnly:
Expand Down Expand Up @@ -5113,7 +5113,7 @@ spec:
flags:
type: integer
minimum: 0
maximum: 7
maximum: 255
type: object
udp:
properties:
Expand Down

0 comments on commit a4a9fa3

Please sign in to comment.