Skip to content

Commit

Permalink
[traceflow] Fix wrong TCP flags validation (#6050)
Browse files Browse the repository at this point in the history
Signed-off-by: gran <gran@vmware.com>
  • Loading branch information
gran-vmv committed Mar 4, 2024
1 parent 75205ef commit c39a62a
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 @@ -507,7 +507,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 @@ -5046,7 +5046,7 @@ spec:
flags:
type: integer
minimum: 0
maximum: 7
maximum: 255
liveTraffic:
type: boolean
droppedOnly:
Expand Down Expand Up @@ -5163,7 +5163,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 @@ -5019,7 +5019,7 @@ spec:
flags:
type: integer
minimum: 0
maximum: 7
maximum: 255
liveTraffic:
type: boolean
droppedOnly:
Expand Down Expand Up @@ -5136,7 +5136,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 @@ -5046,7 +5046,7 @@ spec:
flags:
type: integer
minimum: 0
maximum: 7
maximum: 255
liveTraffic:
type: boolean
droppedOnly:
Expand Down Expand Up @@ -5163,7 +5163,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 @@ -5046,7 +5046,7 @@ spec:
flags:
type: integer
minimum: 0
maximum: 7
maximum: 255
liveTraffic:
type: boolean
droppedOnly:
Expand Down Expand Up @@ -5163,7 +5163,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 @@ -5046,7 +5046,7 @@ spec:
flags:
type: integer
minimum: 0
maximum: 7
maximum: 255
liveTraffic:
type: boolean
droppedOnly:
Expand Down Expand Up @@ -5163,7 +5163,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 @@ -5046,7 +5046,7 @@ spec:
flags:
type: integer
minimum: 0
maximum: 7
maximum: 255
liveTraffic:
type: boolean
droppedOnly:
Expand Down Expand Up @@ -5163,7 +5163,7 @@ spec:
flags:
type: integer
minimum: 0
maximum: 7
maximum: 255
type: object
udp:
properties:
Expand Down

0 comments on commit c39a62a

Please sign in to comment.