-
Notifications
You must be signed in to change notification settings - Fork 368
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Hang Yan <[email protected]>
- Loading branch information
Showing
21 changed files
with
2,415 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,200 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: packetcaptures.crd.antrea.io | ||
labels: | ||
app: antrea | ||
spec: | ||
group: crd.antrea.io | ||
versions: | ||
- name: v1alpha1 | ||
served: true | ||
storage: true | ||
additionalPrinterColumns: | ||
- jsonPath: .spec.source.pod | ||
description: The name of the source Pod. | ||
name: Source-Pod | ||
type: string | ||
priority: 10 | ||
- jsonPath: .spec.destination.pod | ||
description: The name of the destination Pod. | ||
name: Destination-Pod | ||
type: string | ||
priority: 10 | ||
- jsonPath: .spec.source.ip | ||
description: The IP address of the source. | ||
name: Source-IP | ||
type: string | ||
priority: 10 | ||
- jsonPath: .spec.destination.ip | ||
description: The IP address of the destination. | ||
name: Destination-IP | ||
type: string | ||
priority: 10 | ||
- jsonPath: .spec.timeout | ||
description: Timeout in seconds. | ||
name: Timeout | ||
type: integer | ||
priority: 10 | ||
- jsonPath: .metadata.creationTimestamp | ||
name: Age | ||
type: date | ||
schema: | ||
openAPIV3Schema: | ||
type: object | ||
required: | ||
- spec | ||
properties: | ||
spec: | ||
type: object | ||
required: | ||
- source | ||
- captureConfig | ||
- destination | ||
anyOf: | ||
- properties: | ||
source: | ||
required: [pod] | ||
- properties: | ||
destination: | ||
required: [pod] | ||
properties: | ||
source: | ||
type: object | ||
oneOf: | ||
- required: | ||
- pod | ||
- required: | ||
- ip | ||
properties: | ||
pod: | ||
type: object | ||
required: | ||
- name | ||
properties: | ||
namespace: | ||
type: string | ||
default: default | ||
name: | ||
type: string | ||
ip: | ||
type: string | ||
oneOf: | ||
- format: ipv4 | ||
- format: ipv6 | ||
destination: | ||
type: object | ||
oneOf: | ||
- required: | ||
- pod | ||
- required: | ||
- ip | ||
properties: | ||
pod: | ||
type: object | ||
required: | ||
- name | ||
properties: | ||
namespace: | ||
type: string | ||
default: default | ||
name: | ||
type: string | ||
ip: | ||
type: string | ||
oneOf: | ||
- format: ipv4 | ||
- format: ipv6 | ||
packet: | ||
type: object | ||
properties: | ||
ipFamily: | ||
type: string | ||
enum: [IPv4, IPv6] | ||
default: IPv4 | ||
protocol: | ||
x-kubernetes-int-or-string: true | ||
transportHeader: | ||
type: object | ||
properties: | ||
udp: | ||
type: object | ||
properties: | ||
srcPort: | ||
type: integer | ||
minimum: 1 | ||
maximum: 65535 | ||
dstPort: | ||
type: integer | ||
minimum: 1 | ||
maximum: 65535 | ||
tcp: | ||
type: object | ||
properties: | ||
srcPort: | ||
type: integer | ||
minimum: 1 | ||
maximum: 65535 | ||
dstPort: | ||
type: integer | ||
minimum: 1 | ||
maximum: 65535 | ||
|
||
timeout: | ||
type: integer | ||
minimum: 1 | ||
maximum: 300 | ||
default: 60 | ||
captureConfig: | ||
type: object | ||
oneOf: | ||
- required: | ||
- firstN | ||
properties: | ||
firstN: | ||
type: object | ||
required: | ||
- number | ||
properties: | ||
number: | ||
type: integer | ||
format: int32 | ||
fileServer: | ||
type: object | ||
properties: | ||
url: | ||
type: string | ||
pattern: 's{0,1}ftps{0,1}:\/\/[\w-_./]+:\d+' | ||
status: | ||
type: object | ||
properties: | ||
startTime: | ||
type: string | ||
numCapturedPackets: | ||
type: integer | ||
packetsFilePath: | ||
type: string | ||
conditions: | ||
type: array | ||
items: | ||
type: object | ||
properties: | ||
type: | ||
type: string | ||
status: | ||
type: string | ||
lastTransitionTime: | ||
type: string | ||
reason: | ||
type: string | ||
message: | ||
type: string | ||
subresources: | ||
status: {} | ||
scope: Cluster | ||
names: | ||
plural: packetcaptures | ||
singular: packetcapture | ||
kind: PacketCapture | ||
shortNames: | ||
- pcap |
Oops, something went wrong.