---
title: "Create a new schedule."
method: POST
path: "/schedules"
tags: ["schedules"]
---

# Create a new schedule.

`POST /schedules`

Pass a JSON object to create a new schedule. The schema for JSON is the same as the YAML schema for the Kubernetes object.

## Request body

- GithubComChaosMeshChaosMeshApiV1alpha1Schedule
  - `apiVersion` string — APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources +optional
  - `kind` string — Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds +optional
  - `metadata` V1ObjectMeta
    - `annotations` object — Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations +optional
    - `creationTimestamp` string — CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. Populated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata +optional
    - `deletionGracePeriodSeconds` integer — Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only. +optional
    - `deletionTimestamp` string — DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested. Populated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata +optional
    - `finalizers` string[] — Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list. +optional +patchStrategy=merge +listType=set
    - `generateName` string — GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server. If this field is specified and the generated name exists, the server will return a 409. Applied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency +optional
    - `generation` integer — A sequence number representing a specific generation of the desired state. Populated by the system. Read-only. +optional
    - `labels` object — Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels +optional
    - `managedFields` V1ManagedFieldsEntry[] — ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like "ci-cd". The set of fields is always in the version that the workflow used when modifying the object. +optional +listType=atomic
      - `apiVersion` string — APIVersion defines the version of this resource that this field set applies to. The format is "group/version" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.
      - `fieldsType` string — FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: "FieldsV1"
      - `fieldsV1` V1FieldsV1
      - `manager` string — Manager is an identifier of the workflow managing these fields.
      - `operation` 'Apply' | 'Update'
      - `subresource` string — Subresource is the name of the subresource used to update that object, or empty string if the object was updated through the main resource. The value of this field is used to distinguish between managers, even if they share the same name. For example, a status update will be distinct from a regular update using the same manager name. Note that the APIVersion field is not related to the Subresource field and it always corresponds to the version of the main resource.
      - `time` string — Time is the timestamp of when the ManagedFields entry was added. The timestamp will also be updated if a field is added, the manager changes any of the owned fields value or removes a field. The timestamp does not update when a field is removed from the entry because another manager took it over. +optional
    - `name` string — Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names +optional
    - `namespace` string — Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the "default" namespace, but "default" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty. Must be a DNS_LABEL. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces +optional
    - `ownerReferences` V1OwnerReference[] — List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller. +optional +patchMergeKey=uid +patchStrategy=merge +listType=map +listMapKey=uid
      - `apiVersion` string — API version of the referent.
      - `blockOwnerDeletion` boolean — If true, AND if the owner has the "foregroundDeletion" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. See https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion for how the garbage collector interacts with this field and enforces the foreground deletion. Defaults to false. To set this field, a user needs "delete" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned. +optional
      - `controller` boolean — If true, this reference points to the managing controller. +optional
      - `kind` string — Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
      - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names
      - `uid` string — UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids
    - `resourceVersion` string — An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources. Populated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency +optional
    - `selfLink` string — Deprecated: selfLink is a legacy read-only field that is no longer populated by the system. +optional
    - `uid` string — UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations. Populated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids +optional
  - `spec` GithubComChaosMeshChaosMeshApiV1alpha1ScheduleSpec
    - `awsChaos` GithubComChaosMeshChaosMeshApiV1alpha1AWSChaosSpec
      - `action` 'ec2-stop' | 'ec2-restart' | 'detach-volume'
      - `awsRegion` string — AWSRegion defines the region of aws.
      - `deviceName` string — DeviceName indicates the name of the device. Needed in detach-volume. +ui:form:when=action=='detach-volume' +optional
      - `duration` string — Duration represents the duration of the chaos action. +optional
      - `ec2Instance` string — Ec2Instance indicates the ID of the ec2 instance.
      - `endpoint` string — Endpoint indicates the endpoint of the aws server. Just used it in test now. +ui:form:ignore +optional
      - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
      - `secretName` string — SecretName defines the name of kubernetes secret. +optional
      - `volumeID` string — EbsVolume indicates the ID of the EBS volume. Needed in detach-volume. +ui:form:when=action=='detach-volume' +optional
    - `azureChaos` GithubComChaosMeshChaosMeshApiV1alpha1AzureChaosSpec
      - `action` 'vm-stop' | 'vm-restart' | 'disk-detach'
      - `diskName` string — DiskName indicates the name of the disk. Needed in disk-detach. +optional
      - `duration` string — Duration represents the duration of the chaos action. +optional
      - `lun` integer — LUN indicates the Logical Unit Number of the data disk. Needed in disk-detach. +optional
      - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
      - `resourceGroupName` string — ResourceGroupName defines the name of ResourceGroup
      - `secretName` string — SecretName defines the name of kubernetes secret. It is used for Azure credentials. +optional
      - `subscriptionID` string — SubscriptionID defines the id of Azure subscription.
      - `vmName` string — VMName defines the name of Virtual Machine
    - `blockChaos` GithubComChaosMeshChaosMeshApiV1alpha1BlockChaosSpec
      - `action` 'delay'
      - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
      - `delay` GithubComChaosMeshChaosMeshApiV1alpha1BlockDelaySpec
        - `correlation` string — +optional
        - `jitter` string — +optional
        - `latency` string — Latency defines the latency of every io request.
      - `duration` string — Duration represents the duration of the chaos action. +optional
      - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
      - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
      - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
        - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
        - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
          - `key` string — key is the label key that the selector applies to.
          - `operator` 'In' | 'NotIn' | 'Exists' | 'DoesNotExist'
          - `values` string[] — values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. +optional +listType=atomic
        - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
        - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
        - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
        - `nodeSelectors` object — Map of string keys and values that can be used to select nodes. Selector which must match a node's labels, and objects must belong to these selected nodes. +optional
        - `nodes` string[] — Nodes is a set of node name and objects must belong to these nodes. +optional
        - `podPhaseSelectors` string[] — PodPhaseSelectors is a set of condition of a pod at the current time. supported value: Pending / Running / Succeeded / Failed / Unknown +optional
        - `pods` object — Pods is a map of string keys and a set values that used to select pods. The key defines the namespace which pods belong, and the each values is a set of pod names. +optional
      - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
      - `volumeName` string
    - `concurrencyPolicy` string — +optional +kubebuilder:default=Forbid +kubebuilder:validation:Enum=Forbid;Allow
    - `dnsChaos` GithubComChaosMeshChaosMeshApiV1alpha1DNSChaosSpec
      - `action` 'error' | 'random'
      - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
      - `duration` string — Duration represents the duration of the chaos action
      - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
      - `patterns` string[] — Choose which domain names to take effect, support the placeholder ? and wildcard *, or the Specified domain name. Note: 1. The wildcard * must be at the end of the string. For example, chaos-*.org is invalid. 2. if the patterns is empty, will take effect on all the domain names. For example: The value is ["google.com", "github.*", "chaos-mes?.org"], will take effect on "google.com", "github.com" and "chaos-mesh.org" +optional
      - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
      - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
        - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
        - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
          - `key` string — key is the label key that the selector applies to.
          - `operator` 'In' | 'NotIn' | 'Exists' | 'DoesNotExist'
          - `values` string[] — values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. +optional +listType=atomic
        - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
        - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
        - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
        - `nodeSelectors` object — Map of string keys and values that can be used to select nodes. Selector which must match a node's labels, and objects must belong to these selected nodes. +optional
        - `nodes` string[] — Nodes is a set of node name and objects must belong to these nodes. +optional
        - `podPhaseSelectors` string[] — PodPhaseSelectors is a set of condition of a pod at the current time. supported value: Pending / Running / Succeeded / Failed / Unknown +optional
        - `pods` object — Pods is a map of string keys and a set values that used to select pods. The key defines the namespace which pods belong, and the each values is a set of pod names. +optional
      - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
    - `gcpChaos` GithubComChaosMeshChaosMeshApiV1alpha1GCPChaosSpec
      - `action` 'node-stop' | 'node-reset' | 'disk-loss'
      - `deviceNames` string[] — The device name of disks to detach. Needed in disk-loss. +ui:form:when=action=='disk-loss' +optional
      - `duration` string — Duration represents the duration of the chaos action. +optional
      - `instance` string — Instance defines the name of the instance
      - `project` string — Project defines the ID of gcp project.
      - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
      - `secretName` string — SecretName defines the name of kubernetes secret. It is used for GCP credentials. +optional
      - `zone` string — Zone defines the zone of gcp project.
    - `historyLimit` integer — +optional +kubebuilder:validation:Minimum=1
    - `httpChaos` GithubComChaosMeshChaosMeshApiV1alpha1HTTPChaosSpec
      - `abort` boolean — Abort is a rule to abort a http session. +optional
      - `code` integer — Code is a rule to select target by http status code in response. +optional
      - `delay` string — Delay represents the delay of the target request/response. A duration string is a possibly unsigned sequence of decimal numbers, each with optional fraction and a unit suffix, such as "300ms", "2h45m". Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h". +optional
      - `duration` string — Duration represents the duration of the chaos action. +optional
      - `method` string — Method is a rule to select target by http method in request. +optional
      - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
      - `patch` GithubComChaosMeshChaosMeshApiV1alpha1PodHttpChaosPatchActions
        - `body` GithubComChaosMeshChaosMeshApiV1alpha1PodHttpChaosPatchBodyAction
          - `type` string — Type represents the patch type, only support `JSON` as [merge patch json](https://tools.ietf.org/html/rfc7396) currently.
          - `value` string — Value is the patch contents.
        - `headers` array[] — Headers is a rule to append http headers of target. For example: `[["Set-Cookie", "<one cookie>"], ["Set-Cookie", "<another cookie>"]]`. +optional
          - string[]
        - `queries` array[] — Queries is a rule to append uri queries of target(Request only). For example: `[["foo", "bar"], ["foo", "unknown"]]`. +optional
          - string[]
      - `path` string — Path is a rule to select target by uri path in http request. +optional
      - `port` integer — Port represents the target port to be proxy of.
      - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
      - `replace` GithubComChaosMeshChaosMeshApiV1alpha1PodHttpChaosReplaceActions
        - `body` integer[] — Body is a rule to replace http message body in target. +optional
        - `code` integer — Code is a rule to replace http status code in response. +optional
        - `headers` object — Headers is a rule to replace http headers of target. The key-value pairs represent header name and header value pairs. +optional
        - `method` string — Method is a rule to replace http method in request. +optional
        - `path` string — Path is rule to to replace uri path in http request. +optional
        - `queries` object — Queries is a rule to replace uri queries in http request. For example, with value `{ "foo": "unknown" }`, the `/?foo=bar` will be altered to `/?foo=unknown`, +optional
      - `request_headers` object — RequestHeaders is a rule to select target by http headers in request. The key-value pairs represent header name and header value pairs. +optional
      - `response_headers` object — ResponseHeaders is a rule to select target by http headers in response. The key-value pairs represent header name and header value pairs. +optional
      - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
        - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
        - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
          - `key` string — key is the label key that the selector applies to.
          - `operator` 'In' | 'NotIn' | 'Exists' | 'DoesNotExist'
          - `values` string[] — values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. +optional +listType=atomic
        - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
        - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
        - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
        - `nodeSelectors` object — Map of string keys and values that can be used to select nodes. Selector which must match a node's labels, and objects must belong to these selected nodes. +optional
        - `nodes` string[] — Nodes is a set of node name and objects must belong to these nodes. +optional
        - `podPhaseSelectors` string[] — PodPhaseSelectors is a set of condition of a pod at the current time. supported value: Pending / Running / Succeeded / Failed / Unknown +optional
        - `pods` object — Pods is a map of string keys and a set values that used to select pods. The key defines the namespace which pods belong, and the each values is a set of pod names. +optional
      - `target` 'Request' | 'Response'
      - `tls` GithubComChaosMeshChaosMeshApiV1alpha1PodHttpChaosTLS
        - `caName` string — CAName represents the data name of ca file in secret, `ca.crt` for example +optional
        - `certName` string — CertName represents the data name of cert file in secret, `tls.crt` for example
        - `keyName` string — KeyName represents the data name of key file in secret, `tls.key` for example
        - `secretName` string — SecretName represents the name of required secret resource
        - `secretNamespace` string — SecretNamespace represents the namespace of required secret resource
      - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
    - `ioChaos` GithubComChaosMeshChaosMeshApiV1alpha1IOChaosSpec
      - `action` 'latency' | 'fault' | 'attrOverride' | 'mistake'
      - `attr` GithubComChaosMeshChaosMeshApiV1alpha1AttrOverrideSpec
        - `atime` GithubComChaosMeshChaosMeshApiV1alpha1Timespec
          - `nsec` integer
          - `sec` integer
        - `blocks` integer — +optional
        - `ctime` GithubComChaosMeshChaosMeshApiV1alpha1Timespec
          - `nsec` integer
          - `sec` integer
        - `gid` integer — +optional
        - `ino` integer — +optional
        - `kind` 'namedPipe' | 'charDevice' | 'blockDevice' | 'directory' | 'regularFile' | 'symlink' | 'socket'
        - `mtime` GithubComChaosMeshChaosMeshApiV1alpha1Timespec
          - `nsec` integer
          - `sec` integer
        - `nlink` integer — +optional
        - `perm` integer — +optional
        - `rdev` integer — +optional
        - `size` integer — +optional
        - `uid` integer — +optional
      - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
      - `delay` string — Delay defines the value of I/O chaos action delay. A delay string is a possibly signed sequence of decimal numbers, each with optional fraction and a unit suffix, such as "300ms". Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h". +ui:form:when=action=='latency' +optional
      - `duration` string — Duration represents the duration of the chaos action. It is required when the action is `PodFailureAction`. A duration string is a possibly signed sequence of decimal numbers, each with optional fraction and a unit suffix, such as "300ms", "-1.5h" or "2h45m". Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h". +optional
      - `errno` integer — Errno defines the error code that returned by I/O action. refer to: https://www-numi.fnal.gov/offline_software/srt_public_context/WebDocs/Errors/unix_system_errors.html +ui:form:when=action=='fault' +optional
      - `methods` GithubComChaosMeshChaosMeshApiV1alpha1IoMethod[] — Methods defines the I/O methods for injecting I/O chaos action. default: all I/O methods. +optional
      - `mistake` GithubComChaosMeshChaosMeshApiV1alpha1MistakeSpec
        - `filling` 'zero' | 'random'
        - `maxLength` integer — Max length of each wrong data segment in bytes +optional +kubebuilder:validation:Minimum=1
        - `maxOccurrences` integer — There will be [1, MaxOccurrences] segments of wrong data. +optional +kubebuilder:validation:Minimum=1
      - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
      - `path` string — Path defines the path of files for injecting I/O chaos action. +optional
      - `percent` integer — Percent defines the percentage of injection errors and provides a number from 0-100. default: 100. +optional +kubebuilder:default=100
      - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
      - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
        - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
        - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
          - `key` string — key is the label key that the selector applies to.
          - `operator` 'In' | 'NotIn' | 'Exists' | 'DoesNotExist'
          - `values` string[] — values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. +optional +listType=atomic
        - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
        - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
        - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
        - `nodeSelectors` object — Map of string keys and values that can be used to select nodes. Selector which must match a node's labels, and objects must belong to these selected nodes. +optional
        - `nodes` string[] — Nodes is a set of node name and objects must belong to these nodes. +optional
        - `podPhaseSelectors` string[] — PodPhaseSelectors is a set of condition of a pod at the current time. supported value: Pending / Running / Succeeded / Failed / Unknown +optional
        - `pods` object — Pods is a map of string keys and a set values that used to select pods. The key defines the namespace which pods belong, and the each values is a set of pod names. +optional
      - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
      - `volumePath` string — VolumePath represents the mount path of injected volume
    - `jvmChaos` GithubComChaosMeshChaosMeshApiV1alpha1JVMChaosSpec
      - `action` 'latency' | 'return' | 'exception' | 'stress' | 'gc' | 'ruleData' | 'mysql'
      - `class` string — Java class +optional
      - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
      - `cpuCount` integer — the CPU core number needs to use, only set it when action is stress +optional
      - `database` string — the match database default value is "", means match all database
      - `duration` string — Duration represents the duration of the chaos action +optional
      - `exception` string — the exception which needs to throw for action `exception` or the exception message needs to throw in action `mysql` +optional
      - `latency` integer — the latency duration for action 'latency', unit ms or the latency duration in action `mysql` +optional
      - `memType` string — the memory type needs to locate, only set it when action is stress, the value can be 'stack' or 'heap' +optional
      - `method` string — the method in Java class +optional
      - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
      - `mysqlConnectorVersion` string — the version of mysql-connector-java, only support 5.X.X(set to "5") and 8.X.X(set to "8") now
      - `name` string — byteman rule name, should be unique, and will generate one if not set +optional
      - `pid` integer — the pid of Java process which needs to attach
      - `port` integer — the port of agent server, default 9277 +optional
      - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
      - `returnValue` string — the return value for action 'return' +optional
      - `ruleData` string — the byteman rule's data for action 'ruleData' +optional
      - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
        - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
        - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
          - `key` string — key is the label key that the selector applies to.
          - `operator` 'In' | 'NotIn' | 'Exists' | 'DoesNotExist'
          - `values` string[] — values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. +optional +listType=atomic
        - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
        - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
        - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
        - `nodeSelectors` object — Map of string keys and values that can be used to select nodes. Selector which must match a node's labels, and objects must belong to these selected nodes. +optional
        - `nodes` string[] — Nodes is a set of node name and objects must belong to these nodes. +optional
        - `podPhaseSelectors` string[] — PodPhaseSelectors is a set of condition of a pod at the current time. supported value: Pending / Running / Succeeded / Failed / Unknown +optional
        - `pods` object — Pods is a map of string keys and a set values that used to select pods. The key defines the namespace which pods belong, and the each values is a set of pod names. +optional
      - `sqlType` string — the match sql type default value is "", means match all SQL type. The value can be 'select', 'insert', 'update', 'delete', 'replace'.
      - `table` string — the match table default value is "", means match all table
      - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
    - `kernelChaos` GithubComChaosMeshChaosMeshApiV1alpha1KernelChaosSpec
      - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
      - `duration` string — Duration represents the duration of the chaos action
      - `failKernRequest` GithubComChaosMeshChaosMeshApiV1alpha1FailKernRequest
        - `callchain` GithubComChaosMeshChaosMeshApiV1alpha1Frame[] — Callchain indicate a special call chain, such as: ext4_mount -> mount_subtree -> ... -> should_failslab With an optional set of predicates and an optional set of parameters, which used with predicates. You can read call chan and predicate examples from https://github.com/chaos-mesh/bpfki/tree/develop/examples to learn more. If no special call chain, just keep Callchain empty, which means it will fail at any call chain with slab alloc (eg: kmalloc).
          - `funcname` string — Funcname can be find from kernel source or `/proc/kallsyms`, such as `ext4_mount`
          - `parameters` string — Parameters is used with predicate, for example, if you want to inject slab error in `d_alloc_parallel(struct dentry *parent, const struct qstr *name)` with a special name `bananas`, you need to set it to `struct dentry *parent, const struct qstr *name` otherwise omit it.
          - `predicate` string — Predicate will access the arguments of this Frame, example with Parameters's, you can set it to `STRNCMP(name->name, "bananas", 8)` to make inject only with it, or omit it to inject for all d_alloc_parallel call chain.
        - `failtype` integer — FailType indicates what to fail, can be set to '0' / '1' / '2' If `0`, indicates slab to fail (should_failslab) If `1`, indicates alloc_page to fail (should_fail_alloc_page) If `2`, indicates bio to fail (should_fail_bio) You can read: 1. https://www.kernel.org/doc/html/latest/fault-injection/fault-injection.html 2. http://github.com/iovisor/bcc/blob/master/tools/inject_example.txt to learn more +kubebuilder:validation:Maximum=2 +kubebuilder:validation:Minimum=0
        - `headers` string[] — Headers indicates the appropriate kernel headers you need. Eg: "linux/mmzone.h", "linux/blkdev.h" and so on
        - `probability` integer — Probability indicates the fails with probability. If you want 1%, please set this field with 1. +kubebuilder:validation:Minimum=0 +kubebuilder:validation:Maximum=100
        - `times` integer — Times indicates the max times of fails. +kubebuilder:validation:Minimum=0
      - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
      - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
      - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
        - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
        - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
          - `key` string — key is the label key that the selector applies to.
          - `operator` 'In' | 'NotIn' | 'Exists' | 'DoesNotExist'
          - `values` string[] — values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. +optional +listType=atomic
        - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
        - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
        - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
        - `nodeSelectors` object — Map of string keys and values that can be used to select nodes. Selector which must match a node's labels, and objects must belong to these selected nodes. +optional
        - `nodes` string[] — Nodes is a set of node name and objects must belong to these nodes. +optional
        - `podPhaseSelectors` string[] — PodPhaseSelectors is a set of condition of a pod at the current time. supported value: Pending / Running / Succeeded / Failed / Unknown +optional
        - `pods` object — Pods is a map of string keys and a set values that used to select pods. The key defines the namespace which pods belong, and the each values is a set of pod names. +optional
      - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
    - `networkChaos` GithubComChaosMeshChaosMeshApiV1alpha1NetworkChaosSpec
      - `action` 'netem' | 'delay' | 'loss' | 'duplicate' | 'corrupt' | 'partition' | 'bandwidth'
      - `bandwidth` GithubComChaosMeshChaosMeshApiV1alpha1BandwidthSpec
        - `buffer` integer — Buffer is the maximum amount of bytes that tokens can be available for instantaneously. +kubebuilder:validation:Minimum=1
        - `limit` integer — Limit is the number of bytes that can be queued waiting for tokens to become available. +kubebuilder:validation:Minimum=1
        - `minburst` integer — Minburst specifies the size of the peakrate bucket. For perfect accuracy, should be set to the MTU of the interface. If a peakrate is needed, but some burstiness is acceptable, this size can be raised. A 3000 byte minburst allows around 3mbit/s of peakrate, given 1000 byte packets. +optional +kubebuilder:validation:Minimum=0
        - `peakrate` integer — Peakrate is the maximum depletion rate of the bucket. The peakrate does not need to be set, it is only necessary if perfect millisecond timescale shaping is required. +optional +kubebuilder:validation:Minimum=0
        - `rate` string — Rate is the speed knob. Allows bit, kbit, mbit, gbit, tbit, bps, kbps, mbps, gbps, tbps unit. bps means bytes per second.
      - `corrupt` GithubComChaosMeshChaosMeshApiV1alpha1CorruptSpec
        - `correlation` string — +optional
        - `corrupt` string
      - `delay` GithubComChaosMeshChaosMeshApiV1alpha1DelaySpec
        - `correlation` string — +optional
        - `jitter` string — +kubebuilder:validation:Pattern="^[0-9]+(\\.[0-9]+)?(ns|us|ms|s|m|h)$" +optional
        - `latency` string — +kubebuilder:validation:Pattern="^[0-9]+(\\.[0-9]+)?(ns|us|ms|s|m|h)$"
        - `reorder` GithubComChaosMeshChaosMeshApiV1alpha1ReorderSpec
          - `correlation` string — +optional
          - `gap` integer
          - `reorder` string
      - `device` string — Device represents the network device to be affected. +optional
      - `direction` 'to' | 'from' | 'both'
      - `duplicate` GithubComChaosMeshChaosMeshApiV1alpha1DuplicateSpec
        - `correlation` string — +optional
        - `duplicate` string
      - `duration` string — Duration represents the duration of the chaos action
      - `externalTargets` string[] — ExternalTargets represents network targets outside k8s +optional
      - `loss` GithubComChaosMeshChaosMeshApiV1alpha1LossSpec
        - `correlation` string — +optional
        - `loss` string
      - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
      - `rate` GithubComChaosMeshChaosMeshApiV1alpha1RateSpec
        - `rate` string — Rate is the speed knob. Allows bit, kbit, mbit, gbit, tbit, bps, kbps, mbps, gbps, tbps unit. bps means bytes per second.
      - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
      - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
        - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
        - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
          - `key` string — key is the label key that the selector applies to.
          - `operator` 'In' | 'NotIn' | 'Exists' | 'DoesNotExist'
          - `values` string[] — values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. +optional +listType=atomic
        - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
        - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
        - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
        - `nodeSelectors` object — Map of string keys and values that can be used to select nodes. Selector which must match a node's labels, and objects must belong to these selected nodes. +optional
        - `nodes` string[] — Nodes is a set of node name and objects must belong to these nodes. +optional
        - `podPhaseSelectors` string[] — PodPhaseSelectors is a set of condition of a pod at the current time. supported value: Pending / Running / Succeeded / Failed / Unknown +optional
        - `pods` object — Pods is a map of string keys and a set values that used to select pods. The key defines the namespace which pods belong, and the each values is a set of pod names. +optional
      - `target` GithubComChaosMeshChaosMeshApiV1alpha1PodSelector
        - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
        - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
          - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
          - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
            - `key` string — key is the label key that the selector applies to.
            - `operator` 'In' | 'NotIn' | 'Exists' | 'DoesNotExist'
            - `values` string[] — values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. +optional +listType=atomic
          - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
          - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
          - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
          - `nodeSelectors` object — Map of string keys and values that can be used to select nodes. Selector which must match a node's labels, and objects must belong to these selected nodes. +optional
          - `nodes` string[] — Nodes is a set of node name and objects must belong to these nodes. +optional
          - `podPhaseSelectors` string[] — PodPhaseSelectors is a set of condition of a pod at the current time. supported value: Pending / Running / Succeeded / Failed / Unknown +optional
          - `pods` object — Pods is a map of string keys and a set values that used to select pods. The key defines the namespace which pods belong, and the each values is a set of pod names. +optional
        - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
      - `targetDevice` string — TargetDevice represents the network device to be affected in target scope. +optional
      - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
    - `physicalmachineChaos` GithubComChaosMeshChaosMeshApiV1alpha1PhysicalMachineChaosSpec
      - `action` string — +kubebuilder:validation:Enum=stress-cpu;stress-mem;disk-read-payload;disk-write-payload;disk-fill;network-corrupt;network-duplicate;network-loss;network-delay;network-partition;network-dns;network-bandwidth;network-flood;network-down;process;jvm-exception;jvm-gc;jvm-latency;jvm-return;jvm-stress;jvm-rule-data;jvm-mysql;clock;redis-expiration;redis-penetration;redis-cacheLimit;redis-restart;redis-stop;kafka-fill;kafka-flood;kafka-io;file-create;file-modify;file-delete;file-rename;file-append;file-replace;vm;user_defined
      - `address` string[] — DEPRECATED: Use Selector instead. Only one of Address and Selector could be specified. +optional
      - `clock` GithubComChaosMeshChaosMeshApiV1alpha1ClockSpec
        - `clock-ids-slice` string — the identifier of the particular clock on which to act. More clock description in linux kernel can be found in man page of clock_getres, clock_gettime, clock_settime. Muti clock ids should be split with ","
        - `pid` integer — the pid of target program.
        - `time-offset` string — specifies the length of time offset.
      - `disk-fill` GithubComChaosMeshChaosMeshApiV1alpha1DiskFillSpec
        - `fill-by-fallocate` boolean — fill disk by fallocate
        - `path` string — specifies the location to fill data in. if path not provided, payload will read/write from/into a temp file, temp file will be deleted after writing
        - `size` string — specifies how many units of data will write into the file path. support unit: c=1, w=2, b=512, kB=1000, K=1024, MB=1000*1000, M=1024*1024, GB=1000*1000*1000, G=1024*1024*1024 BYTES. example : 1M | 512kB
      - `disk-read-payload` GithubComChaosMeshChaosMeshApiV1alpha1DiskPayloadSpec
        - `path` string — specifies the location to fill data in. if path not provided, payload will read/write from/into a temp file, temp file will be deleted after writing
        - `payload-process-num` integer — specifies the number of process work on writing, default 1, only 1-255 is valid value
        - `size` string — specifies how many units of data will write into the file path. support unit: c=1, w=2, b=512, kB=1000, K=1024, MB=1000*1000, M=1024*1024, GB=1000*1000*1000, G=1024*1024*1024 BYTES. example : 1M | 512kB
      - `disk-write-payload` GithubComChaosMeshChaosMeshApiV1alpha1DiskPayloadSpec
        - `path` string — specifies the location to fill data in. if path not provided, payload will read/write from/into a temp file, temp file will be deleted after writing
        - `payload-process-num` integer — specifies the number of process work on writing, default 1, only 1-255 is valid value
        - `size` string — specifies how many units of data will write into the file path. support unit: c=1, w=2, b=512, kB=1000, K=1024, MB=1000*1000, M=1024*1024, GB=1000*1000*1000, G=1024*1024*1024 BYTES. example : 1M | 512kB
      - `duration` string — Duration represents the duration of the chaos action +optional
      - `file-append` GithubComChaosMeshChaosMeshApiV1alpha1FileAppendSpec
        - `count` integer — Count is the number of times to append the data.
        - `data` string — Data is the data for append.
        - `file-name` string — FileName is the name of the file to be created, modified, deleted, renamed, or appended.
      - `file-create` GithubComChaosMeshChaosMeshApiV1alpha1FileCreateSpec
        - `dir-name` string — DirName is the directory name to create or delete.
        - `file-name` string — FileName is the name of the file to be created, modified, deleted, renamed, or appended.
      - `file-delete` GithubComChaosMeshChaosMeshApiV1alpha1FileDeleteSpec
        - `dir-name` string — DirName is the directory name to create or delete.
        - `file-name` string — FileName is the name of the file to be created, modified, deleted, renamed, or appended.
      - `file-modify` GithubComChaosMeshChaosMeshApiV1alpha1FileModifyPrivilegeSpec
        - `file-name` string — FileName is the name of the file to be created, modified, deleted, renamed, or appended.
        - `privilege` integer — Privilege is the file privilege to be set.
      - `file-rename` GithubComChaosMeshChaosMeshApiV1alpha1FileRenameSpec
        - `dest-file` string — DestFile is the name to be renamed.
        - `source-file` string — SourceFile is the name need to be renamed.
      - `file-replace` GithubComChaosMeshChaosMeshApiV1alpha1FileReplaceSpec
        - `dest-string` string — DestStr is the destination string of the file.
        - `file-name` string — FileName is the name of the file to be created, modified, deleted, renamed, or appended.
        - `line` integer — Line is the line number of the file to be replaced.
        - `origin-string` string — OriginStr is the origin string of the file.
      - `http-abort` GithubComChaosMeshChaosMeshApiV1alpha1HTTPAbortSpec
        - `code` string — Code is a rule to select target by http status code in response
        - `method` string — HTTP method
        - `path` string — Match path of Uri with wildcard matches
        - `port` integer — The TCP port that the target service listens on
        - `proxy_ports` integer[] — Composed with one of the port of HTTP connection, we will only attack HTTP connection with port inside proxy_ports
        - `target` string — HTTP target: Request or Response
      - `http-config` GithubComChaosMeshChaosMeshApiV1alpha1HTTPConfigSpec
        - `file_path` string — The config file path
      - `http-delay` GithubComChaosMeshChaosMeshApiV1alpha1HTTPDelaySpec
        - `code` string — Code is a rule to select target by http status code in response
        - `delay` string — Delay represents the delay of the target request/response
        - `method` string — HTTP method
        - `path` string — Match path of Uri with wildcard matches
        - `port` integer — The TCP port that the target service listens on
        - `proxy_ports` integer[] — Composed with one of the port of HTTP connection, we will only attack HTTP connection with port inside proxy_ports
        - `target` string — HTTP target: Request or Response
      - `http-request` GithubComChaosMeshChaosMeshApiV1alpha1HTTPRequestSpec
        - `count` integer — The number of requests to send
        - `enable-conn-pool` boolean — Enable connection pool
        - `url` string — Request to send"
      - `jvm-exception` GithubComChaosMeshChaosMeshApiV1alpha1JVMExceptionSpec
        - `class` string — Java class +optional
        - `exception` string — the exception which needs to throw for action `exception`
        - `method` string — the method in Java class +optional
        - `pid` integer — the pid of Java process which needs to attach
        - `port` integer — the port of agent server, default 9277 +optional
      - `jvm-gc` GithubComChaosMeshChaosMeshApiV1alpha1JVMGCSpec
        - `pid` integer — the pid of Java process which needs to attach
        - `port` integer — the port of agent server, default 9277 +optional
      - `jvm-latency` GithubComChaosMeshChaosMeshApiV1alpha1JVMLatencySpec
        - `class` string — Java class +optional
        - `latency` integer — the latency duration for action 'latency', unit ms
        - `method` string — the method in Java class +optional
        - `pid` integer — the pid of Java process which needs to attach
        - `port` integer — the port of agent server, default 9277 +optional
      - `jvm-mysql` GithubComChaosMeshChaosMeshApiV1alpha1PMJVMMySQLSpec
        - `database` string — the match database default value is "", means match all database
        - `exception` string — The exception which needs to throw for action `exception` or the exception message needs to throw in action `mysql`
        - `latency` integer — The latency duration for action 'latency' or the latency duration in action `mysql`
        - `mysqlConnectorVersion` string — the version of mysql-connector-java, only support 5.X.X(set to "5") and 8.X.X(set to "8") now
        - `pid` integer — the pid of Java process which needs to attach
        - `port` integer — the port of agent server, default 9277 +optional
        - `sqlType` string — the match sql type default value is "", means match all SQL type. The value can be 'select', 'insert', 'update', 'delete', 'replace'.
        - `table` string — the match table default value is "", means match all table
      - `jvm-return` GithubComChaosMeshChaosMeshApiV1alpha1JVMReturnSpec
        - `class` string — Java class +optional
        - `method` string — the method in Java class +optional
        - `pid` integer — the pid of Java process which needs to attach
        - `port` integer — the port of agent server, default 9277 +optional
        - `value` string — the return value for action 'return'
      - `jvm-rule-data` GithubComChaosMeshChaosMeshApiV1alpha1JVMRuleDataSpec
        - `pid` integer — the pid of Java process which needs to attach
        - `port` integer — the port of agent server, default 9277 +optional
        - `rule-data` string — RuleData used to save the rule file's data, will use it when recover
      - `jvm-stress` GithubComChaosMeshChaosMeshApiV1alpha1JVMStressSpec
        - `cpu-count` integer — the CPU core number need to use, only set it when action is stress
        - `mem-type` string — the memory type need to locate, only set it when action is stress, the value can be 'stack' or 'heap'
        - `pid` integer — the pid of Java process which needs to attach
        - `port` integer — the port of agent server, default 9277 +optional
      - `kafka-fill` GithubComChaosMeshChaosMeshApiV1alpha1KafkaFillSpec
        - `host` string — The host of kafka server
        - `maxBytes` integer — The max bytes to fill
        - `messageSize` integer — The size of each message
        - `password` string — The password of kafka client
        - `port` integer — The port of kafka server
        - `reloadCommand` string — The command to reload kafka config
        - `topic` string — The topic to attack
        - `username` string — The username of kafka client
      - `kafka-flood` GithubComChaosMeshChaosMeshApiV1alpha1KafkaFloodSpec
        - `host` string — The host of kafka server
        - `messageSize` integer — The size of each message
        - `password` string — The password of kafka client
        - `port` integer — The port of kafka server
        - `threads` integer — The number of worker threads
        - `topic` string — The topic to attack
        - `username` string — The username of kafka client
      - `kafka-io` GithubComChaosMeshChaosMeshApiV1alpha1KafkaIOSpec
        - `configFile` string — The path of server config
        - `nonReadable` boolean — Make kafka cluster non-readable
        - `nonWritable` boolean — Make kafka cluster non-writable
        - `topic` string — The topic to attack
      - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
      - `network-bandwidth` GithubComChaosMeshChaosMeshApiV1alpha1NetworkBandwidthSpec
        - `buffer` integer — +kubebuilder:validation:Minimum=1
        - `device` string
        - `hostname` string
        - `ip-address` string
        - `limit` integer — +kubebuilder:validation:Minimum=1
        - `minburst` integer
        - `peakrate` integer
        - `rate` string
      - `network-corrupt` GithubComChaosMeshChaosMeshApiV1alpha1NetworkCorruptSpec
        - `correlation` string — correlation is percentage (10 is 10%)
        - `device` string — the network interface to impact
        - `egress-port` string — only impact egress traffic to these destination ports, use a ',' to separate or to indicate the range, such as 80, 8001:8010. it can only be used in conjunction with -p tcp or -p udp
        - `hostname` string — only impact traffic to these hostnames
        - `ip-address` string — only impact egress traffic to these IP addresses
        - `ip-protocol` string — only impact traffic using this IP protocol, supported: tcp, udp, icmp, all
        - `percent` string — percentage of packets to corrupt (10 is 10%)
        - `source-port` string — only impact egress traffic from these source ports, use a ',' to separate or to indicate the range, such as 80, 8001:8010. it can only be used in conjunction with -p tcp or -p udp
      - `network-delay` GithubComChaosMeshChaosMeshApiV1alpha1NetworkDelaySpec
        - `accept-tcp-flags` string — only the packet which match the tcp flag can be accepted, others will be dropped. only set when the IPProtocol is tcp, used for partition.
        - `correlation` string — correlation is percentage (10 is 10%)
        - `device` string — the network interface to impact
        - `egress-port` string — only impact egress traffic to these destination ports, use a ',' to separate or to indicate the range, such as 80, 8001:8010. it can only be used in conjunction with -p tcp or -p udp
        - `hostname` string — only impact traffic to these hostnames
        - `ip-address` string — only impact egress traffic to these IP addresses
        - `ip-protocol` string — only impact traffic using this IP protocol, supported: tcp, udp, icmp, all
        - `jitter` string — jitter time, time units: ns, us (or µs), ms, s, m, h.
        - `latency` string — delay egress time, time units: ns, us (or µs), ms, s, m, h.
        - `source-port` string — only impact egress traffic from these source ports, use a ',' to separate or to indicate the range, such as 80, 8001:8010. it can only be used in conjunction with -p tcp or -p udp
      - `network-dns` GithubComChaosMeshChaosMeshApiV1alpha1NetworkDNSSpec
        - `dns-domain-name` string — map this host to specified IP
        - `dns-ip` string — map specified host to this IP address
        - `dns-server` string — update the DNS server in /etc/resolv.conf with this value
      - `network-down` GithubComChaosMeshChaosMeshApiV1alpha1NetworkDownSpec
        - `device` string — The network interface to impact
        - `duration` string — NIC down time, time units: ns, us (or µs), ms, s, m, h.
      - `network-duplicate` GithubComChaosMeshChaosMeshApiV1alpha1NetworkDuplicateSpec
        - `correlation` string — correlation is percentage (10 is 10%)
        - `device` string — the network interface to impact
        - `egress-port` string — only impact egress traffic to these destination ports, use a ',' to separate or to indicate the range, such as 80, 8001:8010. it can only be used in conjunction with -p tcp or -p udp
        - `hostname` string — only impact traffic to these hostnames
        - `ip-address` string — only impact egress traffic to these IP addresses
        - `ip-protocol` string — only impact traffic using this IP protocol, supported: tcp, udp, icmp, all
        - `percent` string — percentage of packets to duplicate (10 is 10%)
        - `source-port` string — only impact egress traffic from these source ports, use a ',' to separate or to indicate the range, such as 80, 8001:8010. it can only be used in conjunction with -p tcp or -p udp
      - `network-flood` GithubComChaosMeshChaosMeshApiV1alpha1NetworkFloodSpec
        - `duration` string — The number of seconds to run the iperf test
        - `ip-address` string — Generate traffic to this IP address
        - `parallel` integer — The number of iperf parallel client threads to run
        - `port` string — Generate traffic to this port on the IP address
        - `rate` string — The speed of network traffic, allows bps, kbps, mbps, gbps, tbps unit. bps means bytes per second
      - `network-loss` GithubComChaosMeshChaosMeshApiV1alpha1NetworkLossSpec
        - `correlation` string — correlation is percentage (10 is 10%)
        - `device` string — the network interface to impact
        - `egress-port` string — only impact egress traffic to these destination ports, use a ',' to separate or to indicate the range, such as 80, 8001:8010. it can only be used in conjunction with -p tcp or -p udp
        - `hostname` string — only impact traffic to these hostnames
        - `ip-address` string — only impact egress traffic to these IP addresses
        - `ip-protocol` string — only impact traffic using this IP protocol, supported: tcp, udp, icmp, all
        - `percent` string — percentage of packets to loss (10 is 10%)
        - `source-port` string — only impact egress traffic from these source ports, use a ',' to separate or to indicate the range, such as 80, 8001:8010. it can only be used in conjunction with -p tcp or -p udp
      - `network-partition` GithubComChaosMeshChaosMeshApiV1alpha1NetworkPartitionSpec
        - `accept-tcp-flags` string — only the packet which match the tcp flag can be accepted, others will be dropped. only set when the IPProtocol is tcp, used for partition.
        - `device` string — the network interface to impact
        - `direction` string — specifies the partition direction, values can be 'from', 'to'. 'from' means packets coming from the 'IPAddress' or 'Hostname' and going to your server, 'to' means packets originating from your server and going to the 'IPAddress' or 'Hostname'.
        - `hostname` string — only impact traffic to these hostnames
        - `ip-address` string — only impact egress traffic to these IP addresses
        - `ip-protocol` string — only impact egress traffic to these IP addresses
      - `process` GithubComChaosMeshChaosMeshApiV1alpha1ProcessSpec
        - `process` string — the process name or the process ID
        - `recoverCmd` string — the command to be run when recovering experiment
        - `signal` integer — the signal number to send
      - `redis-cacheLimit` GithubComChaosMeshChaosMeshApiV1alpha1RedisCacheLimitSpec
        - `addr` string — The adress of Redis server
        - `cacheSize` string — The size of `maxmemory`
        - `password` string — The password of Redis server
        - `percent` string — Specifies maxmemory as a percentage of the original value
      - `redis-expiration` GithubComChaosMeshChaosMeshApiV1alpha1RedisExpirationSpec
        - `addr` string — The adress of Redis server
        - `expiration` string — The expiration of the keys
        - `key` string — The keys to be expired
        - `option` string — Additional options for `expiration`
        - `password` string — The password of Redis server
      - `redis-penetration` GithubComChaosMeshChaosMeshApiV1alpha1RedisPenetrationSpec
        - `addr` string — The adress of Redis server
        - `password` string — The password of Redis server
        - `requestNum` integer — The number of requests to be sent
      - `redis-restart` GithubComChaosMeshChaosMeshApiV1alpha1RedisSentinelRestartSpec
        - `addr` string — The adress of Redis server
        - `conf` string — The path of Sentinel conf
        - `flushConfig` boolean — The control flag determines whether to flush config
        - `password` string — The password of Redis server
        - `redisPath` boolean — The path of `redis-server` command-line tool
      - `redis-stop` GithubComChaosMeshChaosMeshApiV1alpha1RedisSentinelStopSpec
        - `addr` string — The adress of Redis server
        - `conf` string — The path of Sentinel conf
        - `flushConfig` boolean — The control flag determines whether to flush config
        - `password` string — The password of Redis server
        - `redisPath` boolean — The path of `redis-server` command-line tool
      - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
      - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PhysicalMachineSelectorSpec
        - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
        - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
          - `key` string — key is the label key that the selector applies to.
          - `operator` 'In' | 'NotIn' | 'Exists' | 'DoesNotExist'
          - `values` string[] — values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. +optional +listType=atomic
        - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
        - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
        - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
        - `physicalMachines` object — PhysicalMachines is a map of string keys and a set values that used to select physical machines. The key defines the namespace which physical machine belong, and each value is a set of physical machine names. +optional
      - `stress-cpu` GithubComChaosMeshChaosMeshApiV1alpha1StressCPUSpec
        - `load` integer — specifies P percent loading per CPU worker. 0 is effectively a sleep (no load) and 100 is full loading.
        - `options` string[] — extend stress-ng options
        - `workers` integer — specifies N workers to apply the stressor.
      - `stress-mem` GithubComChaosMeshChaosMeshApiV1alpha1StressMemorySpec
        - `options` string[] — extend stress-ng options
        - `size` string — specifies N bytes consumed per vm worker, default is the total available memory. One can specify the size as % of total available memory or in units of B, KB/KiB, MB/MiB, GB/GiB, TB/TiB..
      - `user_defined` GithubComChaosMeshChaosMeshApiV1alpha1UserDefinedSpec
        - `attackCmd` string — The command to be executed when attack
        - `recoverCmd` string — The command to be executed when recover
      - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of physical machines to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of physical machines the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
      - `vm` GithubComChaosMeshChaosMeshApiV1alpha1VMSpec
        - `vm-name` string — The name of the VM to be injected
    - `podChaos` GithubComChaosMeshChaosMeshApiV1alpha1PodChaosSpec
      - `action` 'pod-kill' | 'pod-failure' | 'container-kill'
      - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
      - `duration` string — Duration represents the duration of the chaos action. It is required when the action is `PodFailureAction`. A duration string is a possibly signed sequence of decimal numbers, each with optional fraction and a unit suffix, such as "300ms", "-1.5h" or "2h45m". Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h". +optional
      - `gracePeriod` integer — GracePeriod is used in pod-kill action. It represents the duration in seconds before the pod should be deleted. Value must be non-negative integer. The default value is zero that indicates delete immediately. +optional +kubebuilder:validation:Minimum=0
      - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
      - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
      - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
        - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
        - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
          - `key` string — key is the label key that the selector applies to.
          - `operator` 'In' | 'NotIn' | 'Exists' | 'DoesNotExist'
          - `values` string[] — values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. +optional +listType=atomic
        - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
        - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
        - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
        - `nodeSelectors` object — Map of string keys and values that can be used to select nodes. Selector which must match a node's labels, and objects must belong to these selected nodes. +optional
        - `nodes` string[] — Nodes is a set of node name and objects must belong to these nodes. +optional
        - `podPhaseSelectors` string[] — PodPhaseSelectors is a set of condition of a pod at the current time. supported value: Pending / Running / Succeeded / Failed / Unknown +optional
        - `pods` object — Pods is a map of string keys and a set values that used to select pods. The key defines the namespace which pods belong, and the each values is a set of pod names. +optional
      - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
    - `schedule` string
    - `startingDeadlineSeconds` integer — +optional +nullable +kubebuilder:validation:Minimum=0 +kubebuilder:validation:ExclusiveMinimum=true
    - `stressChaos` GithubComChaosMeshChaosMeshApiV1alpha1StressChaosSpec
      - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
      - `duration` string — Duration represents the duration of the chaos action +optional
      - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
      - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
      - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
        - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
        - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
          - `key` string — key is the label key that the selector applies to.
          - `operator` 'In' | 'NotIn' | 'Exists' | 'DoesNotExist'
          - `values` string[] — values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. +optional +listType=atomic
        - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
        - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
        - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
        - `nodeSelectors` object — Map of string keys and values that can be used to select nodes. Selector which must match a node's labels, and objects must belong to these selected nodes. +optional
        - `nodes` string[] — Nodes is a set of node name and objects must belong to these nodes. +optional
        - `podPhaseSelectors` string[] — PodPhaseSelectors is a set of condition of a pod at the current time. supported value: Pending / Running / Succeeded / Failed / Unknown +optional
        - `pods` object — Pods is a map of string keys and a set values that used to select pods. The key defines the namespace which pods belong, and the each values is a set of pod names. +optional
      - `stressngStressors` string — StressngStressors defines plenty of stressors just like `Stressors` except that it's an experimental feature and more powerful. You can define stressors in `stress-ng` (see also `man stress-ng`) dialect, however not all of the supported stressors are well tested. It maybe retired in later releases. You should always use `Stressors` to define the stressors and use this only when you want more stressors unsupported by `Stressors`. When both `StressngStressors` and `Stressors` are defined, `StressngStressors` wins. +optional
      - `stressors` GithubComChaosMeshChaosMeshApiV1alpha1Stressors
        - `cpu` GithubComChaosMeshChaosMeshApiV1alpha1CPUStressor
          - `load` integer — Load specifies P percent loading per CPU worker. 0 is effectively a sleep (no load) and 100 is full loading. +kubebuilder:validation:Minimum=0 +kubebuilder:validation:Maximum=100 +optional
          - `options` string[] — extend stress-ng options +optional
          - `workers` integer — Workers specifies N workers to apply the stressor. Maximum 8192 workers can run by stress-ng +kubebuilder:validation:Maximum=8192
        - `memory` GithubComChaosMeshChaosMeshApiV1alpha1MemoryStressor
          - `oomScoreAdj` integer — OOMScoreAdj sets the oom_score_adj of the stress process. See `man 5 proc` to know more about this option. +kubebuilder:validation:Minimum=-1000 +kubebuilder:validation:Maximum=1000 +kubebuilder:default=0 +optional
          - `options` string[] — extend stress-ng options +optional
          - `size` string — Size specifies N bytes consumed per vm worker, default is the total available memory. One can specify the size as % of total available memory or in units of B, KB/KiB, MB/MiB, GB/GiB, TB/TiB. +optional
          - `workers` integer — Workers specifies N workers to apply the stressor. Maximum 8192 workers can run by stress-ng +kubebuilder:validation:Maximum=8192
      - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
    - `timeChaos` GithubComChaosMeshChaosMeshApiV1alpha1TimeChaosSpec
      - `clockIds` string[] — ClockIds defines all affected clock id All available options are ["CLOCK_REALTIME","CLOCK_MONOTONIC","CLOCK_PROCESS_CPUTIME_ID","CLOCK_THREAD_CPUTIME_ID", "CLOCK_MONOTONIC_RAW","CLOCK_REALTIME_COARSE","CLOCK_MONOTONIC_COARSE","CLOCK_BOOTTIME","CLOCK_REALTIME_ALARM", "CLOCK_BOOTTIME_ALARM"] Default value is ["CLOCK_REALTIME"]
      - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
      - `duration` string — Duration represents the duration of the chaos action
      - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
      - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
      - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
        - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
        - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
          - `key` string — key is the label key that the selector applies to.
          - `operator` 'In' | 'NotIn' | 'Exists' | 'DoesNotExist'
          - `values` string[] — values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. +optional +listType=atomic
        - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
        - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
        - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
        - `nodeSelectors` object — Map of string keys and values that can be used to select nodes. Selector which must match a node's labels, and objects must belong to these selected nodes. +optional
        - `nodes` string[] — Nodes is a set of node name and objects must belong to these nodes. +optional
        - `podPhaseSelectors` string[] — PodPhaseSelectors is a set of condition of a pod at the current time. supported value: Pending / Running / Succeeded / Failed / Unknown +optional
        - `pods` object — Pods is a map of string keys and a set values that used to select pods. The key defines the namespace which pods belong, and the each values is a set of pod names. +optional
      - `timeOffset` string — TimeOffset defines the delta time of injected program. It's a possibly signed sequence of decimal numbers, such as "300ms", "-1.5h" or "2h45m". Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h".
      - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
    - `type` 'AWSChaos' | 'AzureChaos' | 'BlockChaos' | 'DNSChaos' | 'GCPChaos' | 'HTTPChaos' | 'IOChaos' | 'JVMChaos' | 'KernelChaos' | 'NetworkChaos' | 'PhysicalMachineChaos' | 'PodChaos' | 'StressChaos' | 'TimeChaos' | 'Workflow'
    - `workflow` GithubComChaosMeshChaosMeshApiV1alpha1WorkflowSpec
      - `entry` string
      - `templates` GithubComChaosMeshChaosMeshApiV1alpha1Template[]
        - `abortWithStatusCheck` boolean — AbortWithStatusCheck describe whether to abort the workflow when the failure threshold of StatusCheck is exceeded. Only used when Type is TypeStatusCheck. +optional
        - `awsChaos` GithubComChaosMeshChaosMeshApiV1alpha1AWSChaosSpec
          - `action` 'ec2-stop' | 'ec2-restart' | 'detach-volume'
          - `awsRegion` string — AWSRegion defines the region of aws.
          - `deviceName` string — DeviceName indicates the name of the device. Needed in detach-volume. +ui:form:when=action=='detach-volume' +optional
          - `duration` string — Duration represents the duration of the chaos action. +optional
          - `ec2Instance` string — Ec2Instance indicates the ID of the ec2 instance.
          - `endpoint` string — Endpoint indicates the endpoint of the aws server. Just used it in test now. +ui:form:ignore +optional
          - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
          - `secretName` string — SecretName defines the name of kubernetes secret. +optional
          - `volumeID` string — EbsVolume indicates the ID of the EBS volume. Needed in detach-volume. +ui:form:when=action=='detach-volume' +optional
        - `azureChaos` GithubComChaosMeshChaosMeshApiV1alpha1AzureChaosSpec
          - `action` 'vm-stop' | 'vm-restart' | 'disk-detach'
          - `diskName` string — DiskName indicates the name of the disk. Needed in disk-detach. +optional
          - `duration` string — Duration represents the duration of the chaos action. +optional
          - `lun` integer — LUN indicates the Logical Unit Number of the data disk. Needed in disk-detach. +optional
          - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
          - `resourceGroupName` string — ResourceGroupName defines the name of ResourceGroup
          - `secretName` string — SecretName defines the name of kubernetes secret. It is used for Azure credentials. +optional
          - `subscriptionID` string — SubscriptionID defines the id of Azure subscription.
          - `vmName` string — VMName defines the name of Virtual Machine
        - `blockChaos` GithubComChaosMeshChaosMeshApiV1alpha1BlockChaosSpec
          - `action` 'delay'
          - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
          - `delay` GithubComChaosMeshChaosMeshApiV1alpha1BlockDelaySpec
            - `correlation` string — +optional
            - `jitter` string — +optional
            - `latency` string — Latency defines the latency of every io request.
          - `duration` string — Duration represents the duration of the chaos action. +optional
          - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
          - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
          - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
            - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
            - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
              - …
            - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
            - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
            - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
            - `nodeSelectors` object — Map of string keys and values that can be used to select nodes. Selector which must match a node's labels, and objects must belong to these selected nodes. +optional
            - `nodes` string[] — Nodes is a set of node name and objects must belong to these nodes. +optional
            - `podPhaseSelectors` string[] — PodPhaseSelectors is a set of condition of a pod at the current time. supported value: Pending / Running / Succeeded / Failed / Unknown +optional
            - `pods` object — Pods is a map of string keys and a set values that used to select pods. The key defines the namespace which pods belong, and the each values is a set of pod names. +optional
          - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
          - `volumeName` string
        - `children` string[] — Children describes the children steps of serial or parallel node. Only used when Type is TypeSerial or TypeParallel. +optional
        - `conditionalBranches` GithubComChaosMeshChaosMeshApiV1alpha1ConditionalBranch[] — ConditionalBranches describes the conditional branches of custom tasks. Only used when Type is TypeTask. +optional
          - `expression` string — Expression is the expression for this conditional branch, expected type of result is boolean. If expression is empty, this branch will always be selected/the template will be spawned. +optional
          - `target` string — Target is the name of other template, if expression is evaluated as true, this template will be spawned.
        - `deadline` string — +optional
        - `dnsChaos` GithubComChaosMeshChaosMeshApiV1alpha1DNSChaosSpec
          - `action` 'error' | 'random'
          - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
          - `duration` string — Duration represents the duration of the chaos action
          - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
          - `patterns` string[] — Choose which domain names to take effect, support the placeholder ? and wildcard *, or the Specified domain name. Note: 1. The wildcard * must be at the end of the string. For example, chaos-*.org is invalid. 2. if the patterns is empty, will take effect on all the domain names. For example: The value is ["google.com", "github.*", "chaos-mes?.org"], will take effect on "google.com", "github.com" and "chaos-mesh.org" +optional
          - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
          - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
            - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
            - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
              - …
            - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
            - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
            - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
            - `nodeSelectors` object — Map of string keys and values that can be used to select nodes. Selector which must match a node's labels, and objects must belong to these selected nodes. +optional
            - `nodes` string[] — Nodes is a set of node name and objects must belong to these nodes. +optional
            - `podPhaseSelectors` string[] — PodPhaseSelectors is a set of condition of a pod at the current time. supported value: Pending / Running / Succeeded / Failed / Unknown +optional
            - `pods` object — Pods is a map of string keys and a set values that used to select pods. The key defines the namespace which pods belong, and the each values is a set of pod names. +optional
          - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
        - `gcpChaos` GithubComChaosMeshChaosMeshApiV1alpha1GCPChaosSpec
          - `action` 'node-stop' | 'node-reset' | 'disk-loss'
          - `deviceNames` string[] — The device name of disks to detach. Needed in disk-loss. +ui:form:when=action=='disk-loss' +optional
          - `duration` string — Duration represents the duration of the chaos action. +optional
          - `instance` string — Instance defines the name of the instance
          - `project` string — Project defines the ID of gcp project.
          - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
          - `secretName` string — SecretName defines the name of kubernetes secret. It is used for GCP credentials. +optional
          - `zone` string — Zone defines the zone of gcp project.
        - `httpChaos` GithubComChaosMeshChaosMeshApiV1alpha1HTTPChaosSpec
          - `abort` boolean — Abort is a rule to abort a http session. +optional
          - `code` integer — Code is a rule to select target by http status code in response. +optional
          - `delay` string — Delay represents the delay of the target request/response. A duration string is a possibly unsigned sequence of decimal numbers, each with optional fraction and a unit suffix, such as "300ms", "2h45m". Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h". +optional
          - `duration` string — Duration represents the duration of the chaos action. +optional
          - `method` string — Method is a rule to select target by http method in request. +optional
          - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
          - `patch` GithubComChaosMeshChaosMeshApiV1alpha1PodHttpChaosPatchActions
            - `body` GithubComChaosMeshChaosMeshApiV1alpha1PodHttpChaosPatchBodyAction
              - …
            - `headers` array[] — Headers is a rule to append http headers of target. For example: `[["Set-Cookie", "<one cookie>"], ["Set-Cookie", "<another cookie>"]]`. +optional
              - …
            - `queries` array[] — Queries is a rule to append uri queries of target(Request only). For example: `[["foo", "bar"], ["foo", "unknown"]]`. +optional
              - …
          - `path` string — Path is a rule to select target by uri path in http request. +optional
          - `port` integer — Port represents the target port to be proxy of.
          - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
          - `replace` GithubComChaosMeshChaosMeshApiV1alpha1PodHttpChaosReplaceActions
            - `body` integer[] — Body is a rule to replace http message body in target. +optional
            - `code` integer — Code is a rule to replace http status code in response. +optional
            - `headers` object — Headers is a rule to replace http headers of target. The key-value pairs represent header name and header value pairs. +optional
            - `method` string — Method is a rule to replace http method in request. +optional
            - `path` string — Path is rule to to replace uri path in http request. +optional
            - `queries` object — Queries is a rule to replace uri queries in http request. For example, with value `{ "foo": "unknown" }`, the `/?foo=bar` will be altered to `/?foo=unknown`, +optional
          - `request_headers` object — RequestHeaders is a rule to select target by http headers in request. The key-value pairs represent header name and header value pairs. +optional
          - `response_headers` object — ResponseHeaders is a rule to select target by http headers in response. The key-value pairs represent header name and header value pairs. +optional
          - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
            - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
            - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
              - …
            - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
            - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
            - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
            - `nodeSelectors` object — Map of string keys and values that can be used to select nodes. Selector which must match a node's labels, and objects must belong to these selected nodes. +optional
            - `nodes` string[] — Nodes is a set of node name and objects must belong to these nodes. +optional
            - `podPhaseSelectors` string[] — PodPhaseSelectors is a set of condition of a pod at the current time. supported value: Pending / Running / Succeeded / Failed / Unknown +optional
            - `pods` object — Pods is a map of string keys and a set values that used to select pods. The key defines the namespace which pods belong, and the each values is a set of pod names. +optional
          - `target` 'Request' | 'Response'
          - `tls` GithubComChaosMeshChaosMeshApiV1alpha1PodHttpChaosTLS
            - `caName` string — CAName represents the data name of ca file in secret, `ca.crt` for example +optional
            - `certName` string — CertName represents the data name of cert file in secret, `tls.crt` for example
            - `keyName` string — KeyName represents the data name of key file in secret, `tls.key` for example
            - `secretName` string — SecretName represents the name of required secret resource
            - `secretNamespace` string — SecretNamespace represents the namespace of required secret resource
          - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
        - `ioChaos` GithubComChaosMeshChaosMeshApiV1alpha1IOChaosSpec
          - `action` 'latency' | 'fault' | 'attrOverride' | 'mistake'
          - `attr` GithubComChaosMeshChaosMeshApiV1alpha1AttrOverrideSpec
            - `atime` GithubComChaosMeshChaosMeshApiV1alpha1Timespec
              - …
            - `blocks` integer — +optional
            - `ctime` GithubComChaosMeshChaosMeshApiV1alpha1Timespec
              - …
            - `gid` integer — +optional
            - `ino` integer — +optional
            - `kind` 'namedPipe' | 'charDevice' | 'blockDevice' | 'directory' | 'regularFile' | 'symlink' | 'socket'
            - `mtime` GithubComChaosMeshChaosMeshApiV1alpha1Timespec
              - …
            - `nlink` integer — +optional
            - `perm` integer — +optional
            - `rdev` integer — +optional
            - `size` integer — +optional
            - `uid` integer — +optional
          - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
          - `delay` string — Delay defines the value of I/O chaos action delay. A delay string is a possibly signed sequence of decimal numbers, each with optional fraction and a unit suffix, such as "300ms". Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h". +ui:form:when=action=='latency' +optional
          - `duration` string — Duration represents the duration of the chaos action. It is required when the action is `PodFailureAction`. A duration string is a possibly signed sequence of decimal numbers, each with optional fraction and a unit suffix, such as "300ms", "-1.5h" or "2h45m". Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h". +optional
          - `errno` integer — Errno defines the error code that returned by I/O action. refer to: https://www-numi.fnal.gov/offline_software/srt_public_context/WebDocs/Errors/unix_system_errors.html +ui:form:when=action=='fault' +optional
          - `methods` GithubComChaosMeshChaosMeshApiV1alpha1IoMethod[] — Methods defines the I/O methods for injecting I/O chaos action. default: all I/O methods. +optional
          - `mistake` GithubComChaosMeshChaosMeshApiV1alpha1MistakeSpec
            - `filling` 'zero' | 'random'
            - `maxLength` integer — Max length of each wrong data segment in bytes +optional +kubebuilder:validation:Minimum=1
            - `maxOccurrences` integer — There will be [1, MaxOccurrences] segments of wrong data. +optional +kubebuilder:validation:Minimum=1
          - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
          - `path` string — Path defines the path of files for injecting I/O chaos action. +optional
          - `percent` integer — Percent defines the percentage of injection errors and provides a number from 0-100. default: 100. +optional +kubebuilder:default=100
          - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
          - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
            - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
            - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
              - …
            - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
            - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
            - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
            - `nodeSelectors` object — Map of string keys and values that can be used to select nodes. Selector which must match a node's labels, and objects must belong to these selected nodes. +optional
            - `nodes` string[] — Nodes is a set of node name and objects must belong to these nodes. +optional
            - `podPhaseSelectors` string[] — PodPhaseSelectors is a set of condition of a pod at the current time. supported value: Pending / Running / Succeeded / Failed / Unknown +optional
            - `pods` object — Pods is a map of string keys and a set values that used to select pods. The key defines the namespace which pods belong, and the each values is a set of pod names. +optional
          - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
          - `volumePath` string — VolumePath represents the mount path of injected volume
        - `jvmChaos` GithubComChaosMeshChaosMeshApiV1alpha1JVMChaosSpec
          - `action` 'latency' | 'return' | 'exception' | 'stress' | 'gc' | 'ruleData' | 'mysql'
          - `class` string — Java class +optional
          - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
          - `cpuCount` integer — the CPU core number needs to use, only set it when action is stress +optional
          - `database` string — the match database default value is "", means match all database
          - `duration` string — Duration represents the duration of the chaos action +optional
          - `exception` string — the exception which needs to throw for action `exception` or the exception message needs to throw in action `mysql` +optional
          - `latency` integer — the latency duration for action 'latency', unit ms or the latency duration in action `mysql` +optional
          - `memType` string — the memory type needs to locate, only set it when action is stress, the value can be 'stack' or 'heap' +optional
          - `method` string — the method in Java class +optional
          - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
          - `mysqlConnectorVersion` string — the version of mysql-connector-java, only support 5.X.X(set to "5") and 8.X.X(set to "8") now
          - `name` string — byteman rule name, should be unique, and will generate one if not set +optional
          - `pid` integer — the pid of Java process which needs to attach
          - `port` integer — the port of agent server, default 9277 +optional
          - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
          - `returnValue` string — the return value for action 'return' +optional
          - `ruleData` string — the byteman rule's data for action 'ruleData' +optional
          - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
            - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
            - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
              - …
            - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
            - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
            - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
            - `nodeSelectors` object — Map of string keys and values that can be used to select nodes. Selector which must match a node's labels, and objects must belong to these selected nodes. +optional
            - `nodes` string[] — Nodes is a set of node name and objects must belong to these nodes. +optional
            - `podPhaseSelectors` string[] — PodPhaseSelectors is a set of condition of a pod at the current time. supported value: Pending / Running / Succeeded / Failed / Unknown +optional
            - `pods` object — Pods is a map of string keys and a set values that used to select pods. The key defines the namespace which pods belong, and the each values is a set of pod names. +optional
          - `sqlType` string — the match sql type default value is "", means match all SQL type. The value can be 'select', 'insert', 'update', 'delete', 'replace'.
          - `table` string — the match table default value is "", means match all table
          - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
        - `kernelChaos` GithubComChaosMeshChaosMeshApiV1alpha1KernelChaosSpec
          - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
          - `duration` string — Duration represents the duration of the chaos action
          - `failKernRequest` GithubComChaosMeshChaosMeshApiV1alpha1FailKernRequest
            - `callchain` GithubComChaosMeshChaosMeshApiV1alpha1Frame[] — Callchain indicate a special call chain, such as: ext4_mount -> mount_subtree -> ... -> should_failslab With an optional set of predicates and an optional set of parameters, which used with predicates. You can read call chan and predicate examples from https://github.com/chaos-mesh/bpfki/tree/develop/examples to learn more. If no special call chain, just keep Callchain empty, which means it will fail at any call chain with slab alloc (eg: kmalloc).
              - …
            - `failtype` integer — FailType indicates what to fail, can be set to '0' / '1' / '2' If `0`, indicates slab to fail (should_failslab) If `1`, indicates alloc_page to fail (should_fail_alloc_page) If `2`, indicates bio to fail (should_fail_bio) You can read: 1. https://www.kernel.org/doc/html/latest/fault-injection/fault-injection.html 2. http://github.com/iovisor/bcc/blob/master/tools/inject_example.txt to learn more +kubebuilder:validation:Maximum=2 +kubebuilder:validation:Minimum=0
            - `headers` string[] — Headers indicates the appropriate kernel headers you need. Eg: "linux/mmzone.h", "linux/blkdev.h" and so on
            - `probability` integer — Probability indicates the fails with probability. If you want 1%, please set this field with 1. +kubebuilder:validation:Minimum=0 +kubebuilder:validation:Maximum=100
            - `times` integer — Times indicates the max times of fails. +kubebuilder:validation:Minimum=0
          - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
          - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
          - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
            - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
            - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
              - …
            - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
            - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
            - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
            - `nodeSelectors` object — Map of string keys and values that can be used to select nodes. Selector which must match a node's labels, and objects must belong to these selected nodes. +optional
            - `nodes` string[] — Nodes is a set of node name and objects must belong to these nodes. +optional
            - `podPhaseSelectors` string[] — PodPhaseSelectors is a set of condition of a pod at the current time. supported value: Pending / Running / Succeeded / Failed / Unknown +optional
            - `pods` object — Pods is a map of string keys and a set values that used to select pods. The key defines the namespace which pods belong, and the each values is a set of pod names. +optional
          - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
        - `name` string
        - `networkChaos` GithubComChaosMeshChaosMeshApiV1alpha1NetworkChaosSpec
          - `action` 'netem' | 'delay' | 'loss' | 'duplicate' | 'corrupt' | 'partition' | 'bandwidth'
          - `bandwidth` GithubComChaosMeshChaosMeshApiV1alpha1BandwidthSpec
            - `buffer` integer — Buffer is the maximum amount of bytes that tokens can be available for instantaneously. +kubebuilder:validation:Minimum=1
            - `limit` integer — Limit is the number of bytes that can be queued waiting for tokens to become available. +kubebuilder:validation:Minimum=1
            - `minburst` integer — Minburst specifies the size of the peakrate bucket. For perfect accuracy, should be set to the MTU of the interface. If a peakrate is needed, but some burstiness is acceptable, this size can be raised. A 3000 byte minburst allows around 3mbit/s of peakrate, given 1000 byte packets. +optional +kubebuilder:validation:Minimum=0
            - `peakrate` integer — Peakrate is the maximum depletion rate of the bucket. The peakrate does not need to be set, it is only necessary if perfect millisecond timescale shaping is required. +optional +kubebuilder:validation:Minimum=0
            - `rate` string — Rate is the speed knob. Allows bit, kbit, mbit, gbit, tbit, bps, kbps, mbps, gbps, tbps unit. bps means bytes per second.
          - `corrupt` GithubComChaosMeshChaosMeshApiV1alpha1CorruptSpec
            - `correlation` string — +optional
            - `corrupt` string
          - `delay` GithubComChaosMeshChaosMeshApiV1alpha1DelaySpec
            - `correlation` string — +optional
            - `jitter` string — +kubebuilder:validation:Pattern="^[0-9]+(\\.[0-9]+)?(ns|us|ms|s|m|h)$" +optional
            - `latency` string — +kubebuilder:validation:Pattern="^[0-9]+(\\.[0-9]+)?(ns|us|ms|s|m|h)$"
            - `reorder` GithubComChaosMeshChaosMeshApiV1alpha1ReorderSpec
              - …
          - `device` string — Device represents the network device to be affected. +optional
          - `direction` 'to' | 'from' | 'both'
          - `duplicate` GithubComChaosMeshChaosMeshApiV1alpha1DuplicateSpec
            - `correlation` string — +optional
            - `duplicate` string
          - `duration` string — Duration represents the duration of the chaos action
          - `externalTargets` string[] — ExternalTargets represents network targets outside k8s +optional
          - `loss` GithubComChaosMeshChaosMeshApiV1alpha1LossSpec
            - `correlation` string — +optional
            - `loss` string
          - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
          - `rate` GithubComChaosMeshChaosMeshApiV1alpha1RateSpec
            - `rate` string — Rate is the speed knob. Allows bit, kbit, mbit, gbit, tbit, bps, kbps, mbps, gbps, tbps unit. bps means bytes per second.
          - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
          - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
            - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
            - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
              - …
            - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
            - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
            - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
            - `nodeSelectors` object — Map of string keys and values that can be used to select nodes. Selector which must match a node's labels, and objects must belong to these selected nodes. +optional
            - `nodes` string[] — Nodes is a set of node name and objects must belong to these nodes. +optional
            - `podPhaseSelectors` string[] — PodPhaseSelectors is a set of condition of a pod at the current time. supported value: Pending / Running / Succeeded / Failed / Unknown +optional
            - `pods` object — Pods is a map of string keys and a set values that used to select pods. The key defines the namespace which pods belong, and the each values is a set of pod names. +optional
          - `target` GithubComChaosMeshChaosMeshApiV1alpha1PodSelector
            - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
            - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
              - …
            - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
          - `targetDevice` string — TargetDevice represents the network device to be affected in target scope. +optional
          - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
        - `physicalmachineChaos` GithubComChaosMeshChaosMeshApiV1alpha1PhysicalMachineChaosSpec
          - `action` string — +kubebuilder:validation:Enum=stress-cpu;stress-mem;disk-read-payload;disk-write-payload;disk-fill;network-corrupt;network-duplicate;network-loss;network-delay;network-partition;network-dns;network-bandwidth;network-flood;network-down;process;jvm-exception;jvm-gc;jvm-latency;jvm-return;jvm-stress;jvm-rule-data;jvm-mysql;clock;redis-expiration;redis-penetration;redis-cacheLimit;redis-restart;redis-stop;kafka-fill;kafka-flood;kafka-io;file-create;file-modify;file-delete;file-rename;file-append;file-replace;vm;user_defined
          - `address` string[] — DEPRECATED: Use Selector instead. Only one of Address and Selector could be specified. +optional
          - `clock` GithubComChaosMeshChaosMeshApiV1alpha1ClockSpec
            - `clock-ids-slice` string — the identifier of the particular clock on which to act. More clock description in linux kernel can be found in man page of clock_getres, clock_gettime, clock_settime. Muti clock ids should be split with ","
            - `pid` integer — the pid of target program.
            - `time-offset` string — specifies the length of time offset.
          - `disk-fill` GithubComChaosMeshChaosMeshApiV1alpha1DiskFillSpec
            - `fill-by-fallocate` boolean — fill disk by fallocate
            - `path` string — specifies the location to fill data in. if path not provided, payload will read/write from/into a temp file, temp file will be deleted after writing
            - `size` string — specifies how many units of data will write into the file path. support unit: c=1, w=2, b=512, kB=1000, K=1024, MB=1000*1000, M=1024*1024, GB=1000*1000*1000, G=1024*1024*1024 BYTES. example : 1M | 512kB
          - `disk-read-payload` GithubComChaosMeshChaosMeshApiV1alpha1DiskPayloadSpec
            - `path` string — specifies the location to fill data in. if path not provided, payload will read/write from/into a temp file, temp file will be deleted after writing
            - `payload-process-num` integer — specifies the number of process work on writing, default 1, only 1-255 is valid value
            - `size` string — specifies how many units of data will write into the file path. support unit: c=1, w=2, b=512, kB=1000, K=1024, MB=1000*1000, M=1024*1024, GB=1000*1000*1000, G=1024*1024*1024 BYTES. example : 1M | 512kB
          - `disk-write-payload` GithubComChaosMeshChaosMeshApiV1alpha1DiskPayloadSpec
            - `path` string — specifies the location to fill data in. if path not provided, payload will read/write from/into a temp file, temp file will be deleted after writing
            - `payload-process-num` integer — specifies the number of process work on writing, default 1, only 1-255 is valid value
            - `size` string — specifies how many units of data will write into the file path. support unit: c=1, w=2, b=512, kB=1000, K=1024, MB=1000*1000, M=1024*1024, GB=1000*1000*1000, G=1024*1024*1024 BYTES. example : 1M | 512kB
          - `duration` string — Duration represents the duration of the chaos action +optional
          - `file-append` GithubComChaosMeshChaosMeshApiV1alpha1FileAppendSpec
            - `count` integer — Count is the number of times to append the data.
            - `data` string — Data is the data for append.
            - `file-name` string — FileName is the name of the file to be created, modified, deleted, renamed, or appended.
          - `file-create` GithubComChaosMeshChaosMeshApiV1alpha1FileCreateSpec
            - `dir-name` string — DirName is the directory name to create or delete.
            - `file-name` string — FileName is the name of the file to be created, modified, deleted, renamed, or appended.
          - `file-delete` GithubComChaosMeshChaosMeshApiV1alpha1FileDeleteSpec
            - `dir-name` string — DirName is the directory name to create or delete.
            - `file-name` string — FileName is the name of the file to be created, modified, deleted, renamed, or appended.
          - `file-modify` GithubComChaosMeshChaosMeshApiV1alpha1FileModifyPrivilegeSpec
            - `file-name` string — FileName is the name of the file to be created, modified, deleted, renamed, or appended.
            - `privilege` integer — Privilege is the file privilege to be set.
          - `file-rename` GithubComChaosMeshChaosMeshApiV1alpha1FileRenameSpec
            - `dest-file` string — DestFile is the name to be renamed.
            - `source-file` string — SourceFile is the name need to be renamed.
          - `file-replace` GithubComChaosMeshChaosMeshApiV1alpha1FileReplaceSpec
            - `dest-string` string — DestStr is the destination string of the file.
            - `file-name` string — FileName is the name of the file to be created, modified, deleted, renamed, or appended.
            - `line` integer — Line is the line number of the file to be replaced.
            - `origin-string` string — OriginStr is the origin string of the file.
          - `http-abort` GithubComChaosMeshChaosMeshApiV1alpha1HTTPAbortSpec
            - `code` string — Code is a rule to select target by http status code in response
            - `method` string — HTTP method
            - `path` string — Match path of Uri with wildcard matches
            - `port` integer — The TCP port that the target service listens on
            - `proxy_ports` integer[] — Composed with one of the port of HTTP connection, we will only attack HTTP connection with port inside proxy_ports
            - `target` string — HTTP target: Request or Response
          - `http-config` GithubComChaosMeshChaosMeshApiV1alpha1HTTPConfigSpec
            - `file_path` string — The config file path
          - `http-delay` GithubComChaosMeshChaosMeshApiV1alpha1HTTPDelaySpec
            - `code` string — Code is a rule to select target by http status code in response
            - `delay` string — Delay represents the delay of the target request/response
            - `method` string — HTTP method
            - `path` string — Match path of Uri with wildcard matches
            - `port` integer — The TCP port that the target service listens on
            - `proxy_ports` integer[] — Composed with one of the port of HTTP connection, we will only attack HTTP connection with port inside proxy_ports
            - `target` string — HTTP target: Request or Response
          - `http-request` GithubComChaosMeshChaosMeshApiV1alpha1HTTPRequestSpec
            - `count` integer — The number of requests to send
            - `enable-conn-pool` boolean — Enable connection pool
            - `url` string — Request to send"
          - `jvm-exception` GithubComChaosMeshChaosMeshApiV1alpha1JVMExceptionSpec
            - `class` string — Java class +optional
            - `exception` string — the exception which needs to throw for action `exception`
            - `method` string — the method in Java class +optional
            - `pid` integer — the pid of Java process which needs to attach
            - `port` integer — the port of agent server, default 9277 +optional
          - `jvm-gc` GithubComChaosMeshChaosMeshApiV1alpha1JVMGCSpec
            - `pid` integer — the pid of Java process which needs to attach
            - `port` integer — the port of agent server, default 9277 +optional
          - `jvm-latency` GithubComChaosMeshChaosMeshApiV1alpha1JVMLatencySpec
            - `class` string — Java class +optional
            - `latency` integer — the latency duration for action 'latency', unit ms
            - `method` string — the method in Java class +optional
            - `pid` integer — the pid of Java process which needs to attach
            - `port` integer — the port of agent server, default 9277 +optional
          - `jvm-mysql` GithubComChaosMeshChaosMeshApiV1alpha1PMJVMMySQLSpec
            - `database` string — the match database default value is "", means match all database
            - `exception` string — The exception which needs to throw for action `exception` or the exception message needs to throw in action `mysql`
            - `latency` integer — The latency duration for action 'latency' or the latency duration in action `mysql`
            - `mysqlConnectorVersion` string — the version of mysql-connector-java, only support 5.X.X(set to "5") and 8.X.X(set to "8") now
            - `pid` integer — the pid of Java process which needs to attach
            - `port` integer — the port of agent server, default 9277 +optional
            - `sqlType` string — the match sql type default value is "", means match all SQL type. The value can be 'select', 'insert', 'update', 'delete', 'replace'.
            - `table` string — the match table default value is "", means match all table
          - `jvm-return` GithubComChaosMeshChaosMeshApiV1alpha1JVMReturnSpec
            - `class` string — Java class +optional
            - `method` string — the method in Java class +optional
            - `pid` integer — the pid of Java process which needs to attach
            - `port` integer — the port of agent server, default 9277 +optional
            - `value` string — the return value for action 'return'
          - `jvm-rule-data` GithubComChaosMeshChaosMeshApiV1alpha1JVMRuleDataSpec
            - `pid` integer — the pid of Java process which needs to attach
            - `port` integer — the port of agent server, default 9277 +optional
            - `rule-data` string — RuleData used to save the rule file's data, will use it when recover
          - `jvm-stress` GithubComChaosMeshChaosMeshApiV1alpha1JVMStressSpec
            - `cpu-count` integer — the CPU core number need to use, only set it when action is stress
            - `mem-type` string — the memory type need to locate, only set it when action is stress, the value can be 'stack' or 'heap'
            - `pid` integer — the pid of Java process which needs to attach
            - `port` integer — the port of agent server, default 9277 +optional
          - `kafka-fill` GithubComChaosMeshChaosMeshApiV1alpha1KafkaFillSpec
            - `host` string — The host of kafka server
            - `maxBytes` integer — The max bytes to fill
            - `messageSize` integer — The size of each message
            - `password` string — The password of kafka client
            - `port` integer — The port of kafka server
            - `reloadCommand` string — The command to reload kafka config
            - `topic` string — The topic to attack
            - `username` string — The username of kafka client
          - `kafka-flood` GithubComChaosMeshChaosMeshApiV1alpha1KafkaFloodSpec
            - `host` string — The host of kafka server
            - `messageSize` integer — The size of each message
            - `password` string — The password of kafka client
            - `port` integer — The port of kafka server
            - `threads` integer — The number of worker threads
            - `topic` string — The topic to attack
            - `username` string — The username of kafka client
          - `kafka-io` GithubComChaosMeshChaosMeshApiV1alpha1KafkaIOSpec
            - `configFile` string — The path of server config
            - `nonReadable` boolean — Make kafka cluster non-readable
            - `nonWritable` boolean — Make kafka cluster non-writable
            - `topic` string — The topic to attack
          - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
          - `network-bandwidth` GithubComChaosMeshChaosMeshApiV1alpha1NetworkBandwidthSpec
            - `buffer` integer — +kubebuilder:validation:Minimum=1
            - `device` string
            - `hostname` string
            - `ip-address` string
            - `limit` integer — +kubebuilder:validation:Minimum=1
            - `minburst` integer
            - `peakrate` integer
            - `rate` string
          - `network-corrupt` GithubComChaosMeshChaosMeshApiV1alpha1NetworkCorruptSpec
            - `correlation` string — correlation is percentage (10 is 10%)
            - `device` string — the network interface to impact
            - `egress-port` string — only impact egress traffic to these destination ports, use a ',' to separate or to indicate the range, such as 80, 8001:8010. it can only be used in conjunction with -p tcp or -p udp
            - `hostname` string — only impact traffic to these hostnames
            - `ip-address` string — only impact egress traffic to these IP addresses
            - `ip-protocol` string — only impact traffic using this IP protocol, supported: tcp, udp, icmp, all
            - `percent` string — percentage of packets to corrupt (10 is 10%)
            - `source-port` string — only impact egress traffic from these source ports, use a ',' to separate or to indicate the range, such as 80, 8001:8010. it can only be used in conjunction with -p tcp or -p udp
          - `network-delay` GithubComChaosMeshChaosMeshApiV1alpha1NetworkDelaySpec
            - `accept-tcp-flags` string — only the packet which match the tcp flag can be accepted, others will be dropped. only set when the IPProtocol is tcp, used for partition.
            - `correlation` string — correlation is percentage (10 is 10%)
            - `device` string — the network interface to impact
            - `egress-port` string — only impact egress traffic to these destination ports, use a ',' to separate or to indicate the range, such as 80, 8001:8010. it can only be used in conjunction with -p tcp or -p udp
            - `hostname` string — only impact traffic to these hostnames
            - `ip-address` string — only impact egress traffic to these IP addresses
            - `ip-protocol` string — only impact traffic using this IP protocol, supported: tcp, udp, icmp, all
            - `jitter` string — jitter time, time units: ns, us (or µs), ms, s, m, h.
            - `latency` string — delay egress time, time units: ns, us (or µs), ms, s, m, h.
            - `source-port` string — only impact egress traffic from these source ports, use a ',' to separate or to indicate the range, such as 80, 8001:8010. it can only be used in conjunction with -p tcp or -p udp
          - `network-dns` GithubComChaosMeshChaosMeshApiV1alpha1NetworkDNSSpec
            - `dns-domain-name` string — map this host to specified IP
            - `dns-ip` string — map specified host to this IP address
            - `dns-server` string — update the DNS server in /etc/resolv.conf with this value
          - `network-down` GithubComChaosMeshChaosMeshApiV1alpha1NetworkDownSpec
            - `device` string — The network interface to impact
            - `duration` string — NIC down time, time units: ns, us (or µs), ms, s, m, h.
          - `network-duplicate` GithubComChaosMeshChaosMeshApiV1alpha1NetworkDuplicateSpec
            - `correlation` string — correlation is percentage (10 is 10%)
            - `device` string — the network interface to impact
            - `egress-port` string — only impact egress traffic to these destination ports, use a ',' to separate or to indicate the range, such as 80, 8001:8010. it can only be used in conjunction with -p tcp or -p udp
            - `hostname` string — only impact traffic to these hostnames
            - `ip-address` string — only impact egress traffic to these IP addresses
            - `ip-protocol` string — only impact traffic using this IP protocol, supported: tcp, udp, icmp, all
            - `percent` string — percentage of packets to duplicate (10 is 10%)
            - `source-port` string — only impact egress traffic from these source ports, use a ',' to separate or to indicate the range, such as 80, 8001:8010. it can only be used in conjunction with -p tcp or -p udp
          - `network-flood` GithubComChaosMeshChaosMeshApiV1alpha1NetworkFloodSpec
            - `duration` string — The number of seconds to run the iperf test
            - `ip-address` string — Generate traffic to this IP address
            - `parallel` integer — The number of iperf parallel client threads to run
            - `port` string — Generate traffic to this port on the IP address
            - `rate` string — The speed of network traffic, allows bps, kbps, mbps, gbps, tbps unit. bps means bytes per second
          - `network-loss` GithubComChaosMeshChaosMeshApiV1alpha1NetworkLossSpec
            - `correlation` string — correlation is percentage (10 is 10%)
            - `device` string — the network interface to impact
            - `egress-port` string — only impact egress traffic to these destination ports, use a ',' to separate or to indicate the range, such as 80, 8001:8010. it can only be used in conjunction with -p tcp or -p udp
            - `hostname` string — only impact traffic to these hostnames
            - `ip-address` string — only impact egress traffic to these IP addresses
            - `ip-protocol` string — only impact traffic using this IP protocol, supported: tcp, udp, icmp, all
            - `percent` string — percentage of packets to loss (10 is 10%)
            - `source-port` string — only impact egress traffic from these source ports, use a ',' to separate or to indicate the range, such as 80, 8001:8010. it can only be used in conjunction with -p tcp or -p udp
          - `network-partition` GithubComChaosMeshChaosMeshApiV1alpha1NetworkPartitionSpec
            - `accept-tcp-flags` string — only the packet which match the tcp flag can be accepted, others will be dropped. only set when the IPProtocol is tcp, used for partition.
            - `device` string — the network interface to impact
            - `direction` string — specifies the partition direction, values can be 'from', 'to'. 'from' means packets coming from the 'IPAddress' or 'Hostname' and going to your server, 'to' means packets originating from your server and going to the 'IPAddress' or 'Hostname'.
            - `hostname` string — only impact traffic to these hostnames
            - `ip-address` string — only impact egress traffic to these IP addresses
            - `ip-protocol` string — only impact egress traffic to these IP addresses
          - `process` GithubComChaosMeshChaosMeshApiV1alpha1ProcessSpec
            - `process` string — the process name or the process ID
            - `recoverCmd` string — the command to be run when recovering experiment
            - `signal` integer — the signal number to send
          - `redis-cacheLimit` GithubComChaosMeshChaosMeshApiV1alpha1RedisCacheLimitSpec
            - `addr` string — The adress of Redis server
            - `cacheSize` string — The size of `maxmemory`
            - `password` string — The password of Redis server
            - `percent` string — Specifies maxmemory as a percentage of the original value
          - `redis-expiration` GithubComChaosMeshChaosMeshApiV1alpha1RedisExpirationSpec
            - `addr` string — The adress of Redis server
            - `expiration` string — The expiration of the keys
            - `key` string — The keys to be expired
            - `option` string — Additional options for `expiration`
            - `password` string — The password of Redis server
          - `redis-penetration` GithubComChaosMeshChaosMeshApiV1alpha1RedisPenetrationSpec
            - `addr` string — The adress of Redis server
            - `password` string — The password of Redis server
            - `requestNum` integer — The number of requests to be sent
          - `redis-restart` GithubComChaosMeshChaosMeshApiV1alpha1RedisSentinelRestartSpec
            - `addr` string — The adress of Redis server
            - `conf` string — The path of Sentinel conf
            - `flushConfig` boolean — The control flag determines whether to flush config
            - `password` string — The password of Redis server
            - `redisPath` boolean — The path of `redis-server` command-line tool
          - `redis-stop` GithubComChaosMeshChaosMeshApiV1alpha1RedisSentinelStopSpec
            - `addr` string — The adress of Redis server
            - `conf` string — The path of Sentinel conf
            - `flushConfig` boolean — The control flag determines whether to flush config
            - `password` string — The password of Redis server
            - `redisPath` boolean — The path of `redis-server` command-line tool
          - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
          - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PhysicalMachineSelectorSpec
            - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
            - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
              - …
            - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
            - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
            - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
            - `physicalMachines` object — PhysicalMachines is a map of string keys and a set values that used to select physical machines. The key defines the namespace which physical machine belong, and each value is a set of physical machine names. +optional
          - `stress-cpu` GithubComChaosMeshChaosMeshApiV1alpha1StressCPUSpec
            - `load` integer — specifies P percent loading per CPU worker. 0 is effectively a sleep (no load) and 100 is full loading.
            - `options` string[] — extend stress-ng options
            - `workers` integer — specifies N workers to apply the stressor.
          - `stress-mem` GithubComChaosMeshChaosMeshApiV1alpha1StressMemorySpec
            - `options` string[] — extend stress-ng options
            - `size` string — specifies N bytes consumed per vm worker, default is the total available memory. One can specify the size as % of total available memory or in units of B, KB/KiB, MB/MiB, GB/GiB, TB/TiB..
          - `user_defined` GithubComChaosMeshChaosMeshApiV1alpha1UserDefinedSpec
            - `attackCmd` string — The command to be executed when attack
            - `recoverCmd` string — The command to be executed when recover
          - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of physical machines to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of physical machines the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
          - `vm` GithubComChaosMeshChaosMeshApiV1alpha1VMSpec
            - `vm-name` string — The name of the VM to be injected
        - `podChaos` GithubComChaosMeshChaosMeshApiV1alpha1PodChaosSpec
          - `action` 'pod-kill' | 'pod-failure' | 'container-kill'
          - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
          - `duration` string — Duration represents the duration of the chaos action. It is required when the action is `PodFailureAction`. A duration string is a possibly signed sequence of decimal numbers, each with optional fraction and a unit suffix, such as "300ms", "-1.5h" or "2h45m". Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h". +optional
          - `gracePeriod` integer — GracePeriod is used in pod-kill action. It represents the duration in seconds before the pod should be deleted. Value must be non-negative integer. The default value is zero that indicates delete immediately. +optional +kubebuilder:validation:Minimum=0
          - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
          - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
          - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
            - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
            - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
              - …
            - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
            - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
            - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
            - `nodeSelectors` object — Map of string keys and values that can be used to select nodes. Selector which must match a node's labels, and objects must belong to these selected nodes. +optional
            - `nodes` string[] — Nodes is a set of node name and objects must belong to these nodes. +optional
            - `podPhaseSelectors` string[] — PodPhaseSelectors is a set of condition of a pod at the current time. supported value: Pending / Running / Succeeded / Failed / Unknown +optional
            - `pods` object — Pods is a map of string keys and a set values that used to select pods. The key defines the namespace which pods belong, and the each values is a set of pod names. +optional
          - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
        - `schedule` GithubComChaosMeshChaosMeshApiV1alpha1ChaosOnlyScheduleSpec
          - `awsChaos` GithubComChaosMeshChaosMeshApiV1alpha1AWSChaosSpec
            - `action` 'ec2-stop' | 'ec2-restart' | 'detach-volume'
            - `awsRegion` string — AWSRegion defines the region of aws.
            - `deviceName` string — DeviceName indicates the name of the device. Needed in detach-volume. +ui:form:when=action=='detach-volume' +optional
            - `duration` string — Duration represents the duration of the chaos action. +optional
            - `ec2Instance` string — Ec2Instance indicates the ID of the ec2 instance.
            - `endpoint` string — Endpoint indicates the endpoint of the aws server. Just used it in test now. +ui:form:ignore +optional
            - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
            - `secretName` string — SecretName defines the name of kubernetes secret. +optional
            - `volumeID` string — EbsVolume indicates the ID of the EBS volume. Needed in detach-volume. +ui:form:when=action=='detach-volume' +optional
          - `azureChaos` GithubComChaosMeshChaosMeshApiV1alpha1AzureChaosSpec
            - `action` 'vm-stop' | 'vm-restart' | 'disk-detach'
            - `diskName` string — DiskName indicates the name of the disk. Needed in disk-detach. +optional
            - `duration` string — Duration represents the duration of the chaos action. +optional
            - `lun` integer — LUN indicates the Logical Unit Number of the data disk. Needed in disk-detach. +optional
            - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
            - `resourceGroupName` string — ResourceGroupName defines the name of ResourceGroup
            - `secretName` string — SecretName defines the name of kubernetes secret. It is used for Azure credentials. +optional
            - `subscriptionID` string — SubscriptionID defines the id of Azure subscription.
            - `vmName` string — VMName defines the name of Virtual Machine
          - `blockChaos` GithubComChaosMeshChaosMeshApiV1alpha1BlockChaosSpec
            - `action` 'delay'
            - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
            - `delay` GithubComChaosMeshChaosMeshApiV1alpha1BlockDelaySpec
              - …
            - `duration` string — Duration represents the duration of the chaos action. +optional
            - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
            - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
            - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
              - …
            - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
            - `volumeName` string
          - `concurrencyPolicy` string — +optional +kubebuilder:validation:Enum=Forbid;Allow
          - `dnsChaos` GithubComChaosMeshChaosMeshApiV1alpha1DNSChaosSpec
            - `action` 'error' | 'random'
            - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
            - `duration` string — Duration represents the duration of the chaos action
            - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
            - `patterns` string[] — Choose which domain names to take effect, support the placeholder ? and wildcard *, or the Specified domain name. Note: 1. The wildcard * must be at the end of the string. For example, chaos-*.org is invalid. 2. if the patterns is empty, will take effect on all the domain names. For example: The value is ["google.com", "github.*", "chaos-mes?.org"], will take effect on "google.com", "github.com" and "chaos-mesh.org" +optional
            - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
            - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
              - …
            - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
          - `gcpChaos` GithubComChaosMeshChaosMeshApiV1alpha1GCPChaosSpec
            - `action` 'node-stop' | 'node-reset' | 'disk-loss'
            - `deviceNames` string[] — The device name of disks to detach. Needed in disk-loss. +ui:form:when=action=='disk-loss' +optional
            - `duration` string — Duration represents the duration of the chaos action. +optional
            - `instance` string — Instance defines the name of the instance
            - `project` string — Project defines the ID of gcp project.
            - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
            - `secretName` string — SecretName defines the name of kubernetes secret. It is used for GCP credentials. +optional
            - `zone` string — Zone defines the zone of gcp project.
          - `historyLimit` integer — +optional +kubebuilder:validation:Minimum=1
          - `httpChaos` GithubComChaosMeshChaosMeshApiV1alpha1HTTPChaosSpec
            - `abort` boolean — Abort is a rule to abort a http session. +optional
            - `code` integer — Code is a rule to select target by http status code in response. +optional
            - `delay` string — Delay represents the delay of the target request/response. A duration string is a possibly unsigned sequence of decimal numbers, each with optional fraction and a unit suffix, such as "300ms", "2h45m". Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h". +optional
            - `duration` string — Duration represents the duration of the chaos action. +optional
            - `method` string — Method is a rule to select target by http method in request. +optional
            - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
            - `patch` GithubComChaosMeshChaosMeshApiV1alpha1PodHttpChaosPatchActions
              - …
            - `path` string — Path is a rule to select target by uri path in http request. +optional
            - `port` integer — Port represents the target port to be proxy of.
            - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
            - `replace` GithubComChaosMeshChaosMeshApiV1alpha1PodHttpChaosReplaceActions
              - …
            - `request_headers` object — RequestHeaders is a rule to select target by http headers in request. The key-value pairs represent header name and header value pairs. +optional
            - `response_headers` object — ResponseHeaders is a rule to select target by http headers in response. The key-value pairs represent header name and header value pairs. +optional
            - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
              - …
            - `target` 'Request' | 'Response'
            - `tls` GithubComChaosMeshChaosMeshApiV1alpha1PodHttpChaosTLS
              - …
            - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
          - `ioChaos` GithubComChaosMeshChaosMeshApiV1alpha1IOChaosSpec
            - `action` 'latency' | 'fault' | 'attrOverride' | 'mistake'
            - `attr` GithubComChaosMeshChaosMeshApiV1alpha1AttrOverrideSpec
              - …
            - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
            - `delay` string — Delay defines the value of I/O chaos action delay. A delay string is a possibly signed sequence of decimal numbers, each with optional fraction and a unit suffix, such as "300ms". Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h". +ui:form:when=action=='latency' +optional
            - `duration` string — Duration represents the duration of the chaos action. It is required when the action is `PodFailureAction`. A duration string is a possibly signed sequence of decimal numbers, each with optional fraction and a unit suffix, such as "300ms", "-1.5h" or "2h45m". Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h". +optional
            - `errno` integer — Errno defines the error code that returned by I/O action. refer to: https://www-numi.fnal.gov/offline_software/srt_public_context/WebDocs/Errors/unix_system_errors.html +ui:form:when=action=='fault' +optional
            - `methods` GithubComChaosMeshChaosMeshApiV1alpha1IoMethod[] — Methods defines the I/O methods for injecting I/O chaos action. default: all I/O methods. +optional
            - `mistake` GithubComChaosMeshChaosMeshApiV1alpha1MistakeSpec
              - …
            - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
            - `path` string — Path defines the path of files for injecting I/O chaos action. +optional
            - `percent` integer — Percent defines the percentage of injection errors and provides a number from 0-100. default: 100. +optional +kubebuilder:default=100
            - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
            - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
              - …
            - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
            - `volumePath` string — VolumePath represents the mount path of injected volume
          - `jvmChaos` GithubComChaosMeshChaosMeshApiV1alpha1JVMChaosSpec
            - `action` 'latency' | 'return' | 'exception' | 'stress' | 'gc' | 'ruleData' | 'mysql'
            - `class` string — Java class +optional
            - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
            - `cpuCount` integer — the CPU core number needs to use, only set it when action is stress +optional
            - `database` string — the match database default value is "", means match all database
            - `duration` string — Duration represents the duration of the chaos action +optional
            - `exception` string — the exception which needs to throw for action `exception` or the exception message needs to throw in action `mysql` +optional
            - `latency` integer — the latency duration for action 'latency', unit ms or the latency duration in action `mysql` +optional
            - `memType` string — the memory type needs to locate, only set it when action is stress, the value can be 'stack' or 'heap' +optional
            - `method` string — the method in Java class +optional
            - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
            - `mysqlConnectorVersion` string — the version of mysql-connector-java, only support 5.X.X(set to "5") and 8.X.X(set to "8") now
            - `name` string — byteman rule name, should be unique, and will generate one if not set +optional
            - `pid` integer — the pid of Java process which needs to attach
            - `port` integer — the port of agent server, default 9277 +optional
            - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
            - `returnValue` string — the return value for action 'return' +optional
            - `ruleData` string — the byteman rule's data for action 'ruleData' +optional
            - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
              - …
            - `sqlType` string — the match sql type default value is "", means match all SQL type. The value can be 'select', 'insert', 'update', 'delete', 'replace'.
            - `table` string — the match table default value is "", means match all table
            - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
          - `kernelChaos` GithubComChaosMeshChaosMeshApiV1alpha1KernelChaosSpec
            - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
            - `duration` string — Duration represents the duration of the chaos action
            - `failKernRequest` GithubComChaosMeshChaosMeshApiV1alpha1FailKernRequest
              - …
            - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
            - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
            - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
              - …
            - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
          - `networkChaos` GithubComChaosMeshChaosMeshApiV1alpha1NetworkChaosSpec
            - `action` 'netem' | 'delay' | 'loss' | 'duplicate' | 'corrupt' | 'partition' | 'bandwidth'
            - `bandwidth` GithubComChaosMeshChaosMeshApiV1alpha1BandwidthSpec
              - …
            - `corrupt` GithubComChaosMeshChaosMeshApiV1alpha1CorruptSpec
              - …
            - `delay` GithubComChaosMeshChaosMeshApiV1alpha1DelaySpec
              - …
            - `device` string — Device represents the network device to be affected. +optional
            - `direction` 'to' | 'from' | 'both'
            - `duplicate` GithubComChaosMeshChaosMeshApiV1alpha1DuplicateSpec
              - …
            - `duration` string — Duration represents the duration of the chaos action
            - `externalTargets` string[] — ExternalTargets represents network targets outside k8s +optional
            - `loss` GithubComChaosMeshChaosMeshApiV1alpha1LossSpec
              - …
            - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
            - `rate` GithubComChaosMeshChaosMeshApiV1alpha1RateSpec
              - …
            - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
            - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
              - …
            - `target` GithubComChaosMeshChaosMeshApiV1alpha1PodSelector
              - …
            - `targetDevice` string — TargetDevice represents the network device to be affected in target scope. +optional
            - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
          - `physicalmachineChaos` GithubComChaosMeshChaosMeshApiV1alpha1PhysicalMachineChaosSpec
            - `action` string — +kubebuilder:validation:Enum=stress-cpu;stress-mem;disk-read-payload;disk-write-payload;disk-fill;network-corrupt;network-duplicate;network-loss;network-delay;network-partition;network-dns;network-bandwidth;network-flood;network-down;process;jvm-exception;jvm-gc;jvm-latency;jvm-return;jvm-stress;jvm-rule-data;jvm-mysql;clock;redis-expiration;redis-penetration;redis-cacheLimit;redis-restart;redis-stop;kafka-fill;kafka-flood;kafka-io;file-create;file-modify;file-delete;file-rename;file-append;file-replace;vm;user_defined
            - `address` string[] — DEPRECATED: Use Selector instead. Only one of Address and Selector could be specified. +optional
            - `clock` GithubComChaosMeshChaosMeshApiV1alpha1ClockSpec
              - …
            - `disk-fill` GithubComChaosMeshChaosMeshApiV1alpha1DiskFillSpec
              - …
            - `disk-read-payload` GithubComChaosMeshChaosMeshApiV1alpha1DiskPayloadSpec
              - …
            - `disk-write-payload` GithubComChaosMeshChaosMeshApiV1alpha1DiskPayloadSpec
              - …
            - `duration` string — Duration represents the duration of the chaos action +optional
            - `file-append` GithubComChaosMeshChaosMeshApiV1alpha1FileAppendSpec
              - …
            - `file-create` GithubComChaosMeshChaosMeshApiV1alpha1FileCreateSpec
              - …
            - `file-delete` GithubComChaosMeshChaosMeshApiV1alpha1FileDeleteSpec
              - …
            - `file-modify` GithubComChaosMeshChaosMeshApiV1alpha1FileModifyPrivilegeSpec
              - …
            - `file-rename` GithubComChaosMeshChaosMeshApiV1alpha1FileRenameSpec
              - …
            - `file-replace` GithubComChaosMeshChaosMeshApiV1alpha1FileReplaceSpec
              - …
            - `http-abort` GithubComChaosMeshChaosMeshApiV1alpha1HTTPAbortSpec
              - …
            - `http-config` GithubComChaosMeshChaosMeshApiV1alpha1HTTPConfigSpec
              - …
            - `http-delay` GithubComChaosMeshChaosMeshApiV1alpha1HTTPDelaySpec
              - …
            - `http-request` GithubComChaosMeshChaosMeshApiV1alpha1HTTPRequestSpec
              - …
            - `jvm-exception` GithubComChaosMeshChaosMeshApiV1alpha1JVMExceptionSpec
              - …
            - `jvm-gc` GithubComChaosMeshChaosMeshApiV1alpha1JVMGCSpec
              - …
            - `jvm-latency` GithubComChaosMeshChaosMeshApiV1alpha1JVMLatencySpec
              - …
            - `jvm-mysql` GithubComChaosMeshChaosMeshApiV1alpha1PMJVMMySQLSpec
              - …
            - `jvm-return` GithubComChaosMeshChaosMeshApiV1alpha1JVMReturnSpec
              - …
            - `jvm-rule-data` GithubComChaosMeshChaosMeshApiV1alpha1JVMRuleDataSpec
              - …
            - `jvm-stress` GithubComChaosMeshChaosMeshApiV1alpha1JVMStressSpec
              - …
            - `kafka-fill` GithubComChaosMeshChaosMeshApiV1alpha1KafkaFillSpec
              - …
            - `kafka-flood` GithubComChaosMeshChaosMeshApiV1alpha1KafkaFloodSpec
              - …
            - `kafka-io` GithubComChaosMeshChaosMeshApiV1alpha1KafkaIOSpec
              - …
            - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
            - `network-bandwidth` GithubComChaosMeshChaosMeshApiV1alpha1NetworkBandwidthSpec
              - …
            - `network-corrupt` GithubComChaosMeshChaosMeshApiV1alpha1NetworkCorruptSpec
              - …
            - `network-delay` GithubComChaosMeshChaosMeshApiV1alpha1NetworkDelaySpec
              - …
            - `network-dns` GithubComChaosMeshChaosMeshApiV1alpha1NetworkDNSSpec
              - …
            - `network-down` GithubComChaosMeshChaosMeshApiV1alpha1NetworkDownSpec
              - …
            - `network-duplicate` GithubComChaosMeshChaosMeshApiV1alpha1NetworkDuplicateSpec
              - …
            - `network-flood` GithubComChaosMeshChaosMeshApiV1alpha1NetworkFloodSpec
              - …
            - `network-loss` GithubComChaosMeshChaosMeshApiV1alpha1NetworkLossSpec
              - …
            - `network-partition` GithubComChaosMeshChaosMeshApiV1alpha1NetworkPartitionSpec
              - …
            - `process` GithubComChaosMeshChaosMeshApiV1alpha1ProcessSpec
              - …
            - `redis-cacheLimit` GithubComChaosMeshChaosMeshApiV1alpha1RedisCacheLimitSpec
              - …
            - `redis-expiration` GithubComChaosMeshChaosMeshApiV1alpha1RedisExpirationSpec
              - …
            - `redis-penetration` GithubComChaosMeshChaosMeshApiV1alpha1RedisPenetrationSpec
              - …
            - `redis-restart` GithubComChaosMeshChaosMeshApiV1alpha1RedisSentinelRestartSpec
              - …
            - `redis-stop` GithubComChaosMeshChaosMeshApiV1alpha1RedisSentinelStopSpec
              - …
            - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
            - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PhysicalMachineSelectorSpec
              - …
            - `stress-cpu` GithubComChaosMeshChaosMeshApiV1alpha1StressCPUSpec
              - …
            - `stress-mem` GithubComChaosMeshChaosMeshApiV1alpha1StressMemorySpec
              - …
            - `user_defined` GithubComChaosMeshChaosMeshApiV1alpha1UserDefinedSpec
              - …
            - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of physical machines to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of physical machines the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
            - `vm` GithubComChaosMeshChaosMeshApiV1alpha1VMSpec
              - …
          - `podChaos` GithubComChaosMeshChaosMeshApiV1alpha1PodChaosSpec
            - `action` 'pod-kill' | 'pod-failure' | 'container-kill'
            - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
            - `duration` string — Duration represents the duration of the chaos action. It is required when the action is `PodFailureAction`. A duration string is a possibly signed sequence of decimal numbers, each with optional fraction and a unit suffix, such as "300ms", "-1.5h" or "2h45m". Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h". +optional
            - `gracePeriod` integer — GracePeriod is used in pod-kill action. It represents the duration in seconds before the pod should be deleted. Value must be non-negative integer. The default value is zero that indicates delete immediately. +optional +kubebuilder:validation:Minimum=0
            - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
            - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
            - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
              - …
            - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
          - `schedule` string
          - `startingDeadlineSeconds` integer — +optional +nullable +kubebuilder:validation:Minimum=0
          - `stressChaos` GithubComChaosMeshChaosMeshApiV1alpha1StressChaosSpec
            - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
            - `duration` string — Duration represents the duration of the chaos action +optional
            - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
            - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
            - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
              - …
            - `stressngStressors` string — StressngStressors defines plenty of stressors just like `Stressors` except that it's an experimental feature and more powerful. You can define stressors in `stress-ng` (see also `man stress-ng`) dialect, however not all of the supported stressors are well tested. It maybe retired in later releases. You should always use `Stressors` to define the stressors and use this only when you want more stressors unsupported by `Stressors`. When both `StressngStressors` and `Stressors` are defined, `StressngStressors` wins. +optional
            - `stressors` GithubComChaosMeshChaosMeshApiV1alpha1Stressors
              - …
            - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
          - `timeChaos` GithubComChaosMeshChaosMeshApiV1alpha1TimeChaosSpec
            - `clockIds` string[] — ClockIds defines all affected clock id All available options are ["CLOCK_REALTIME","CLOCK_MONOTONIC","CLOCK_PROCESS_CPUTIME_ID","CLOCK_THREAD_CPUTIME_ID", "CLOCK_MONOTONIC_RAW","CLOCK_REALTIME_COARSE","CLOCK_MONOTONIC_COARSE","CLOCK_BOOTTIME","CLOCK_REALTIME_ALARM", "CLOCK_BOOTTIME_ALARM"] Default value is ["CLOCK_REALTIME"]
            - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
            - `duration` string — Duration represents the duration of the chaos action
            - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
            - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
            - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
              - …
            - `timeOffset` string — TimeOffset defines the delta time of injected program. It's a possibly signed sequence of decimal numbers, such as "300ms", "-1.5h" or "2h45m". Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h".
            - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
          - `type` 'AWSChaos' | 'AzureChaos' | 'BlockChaos' | 'DNSChaos' | 'GCPChaos' | 'HTTPChaos' | 'IOChaos' | 'JVMChaos' | 'KernelChaos' | 'NetworkChaos' | 'PhysicalMachineChaos' | 'PodChaos' | 'StressChaos' | 'TimeChaos' | 'Workflow'
        - `statusCheck` GithubComChaosMeshChaosMeshApiV1alpha1StatusCheckSpec
          - `duration` string — Duration defines the duration of the whole status check if the number of failed execution does not exceed the failure threshold. Duration is available to both `Synchronous` and `Continuous` mode. A duration string is a possibly signed sequence of decimal numbers, each with optional fraction and a unit suffix, such as "300ms", "-1.5h" or "2h45m". Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h". +optional
          - `failureThreshold` integer — FailureThreshold defines the minimum consecutive failure for the status check to be considered failed. +optional +kubebuilder:default=3 +kubebuilder:validation:Minimum=1
          - `http` GithubComChaosMeshChaosMeshApiV1alpha1HTTPStatusCheck
            - `body` string — +optional
            - `criteria` GithubComChaosMeshChaosMeshApiV1alpha1HTTPCriteria
              - …
            - `headers` HttpHeader
            - `method` string — +optional +kubebuilder:validation:Enum=GET;POST +kubebuilder:default=GET
            - `url` string
          - `intervalSeconds` integer — IntervalSeconds defines how often (in seconds) to perform an execution of status check. +optional +kubebuilder:default=10 +kubebuilder:validation:Minimum=1
          - `mode` 'Synchronous' | 'Continuous'
          - `recordsHistoryLimit` integer — RecordsHistoryLimit defines the number of record to retain. +optional +kubebuilder:default=100 +kubebuilder:validation:Minimum=1 +kubebuilder:validation:Maximum=1000
          - `successThreshold` integer — SuccessThreshold defines the minimum consecutive successes for the status check to be considered successful. SuccessThreshold only works for `Synchronous` mode. +optional +kubebuilder:default=1 +kubebuilder:validation:Minimum=1
          - `timeoutSeconds` integer — TimeoutSeconds defines the number of seconds after which an execution of status check times out. +optional +kubebuilder:default=1 +kubebuilder:validation:Minimum=1
          - `type` 'HTTP'
        - `stressChaos` GithubComChaosMeshChaosMeshApiV1alpha1StressChaosSpec
          - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
          - `duration` string — Duration represents the duration of the chaos action +optional
          - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
          - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
          - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
            - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
            - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
              - …
            - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
            - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
            - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
            - `nodeSelectors` object — Map of string keys and values that can be used to select nodes. Selector which must match a node's labels, and objects must belong to these selected nodes. +optional
            - `nodes` string[] — Nodes is a set of node name and objects must belong to these nodes. +optional
            - `podPhaseSelectors` string[] — PodPhaseSelectors is a set of condition of a pod at the current time. supported value: Pending / Running / Succeeded / Failed / Unknown +optional
            - `pods` object — Pods is a map of string keys and a set values that used to select pods. The key defines the namespace which pods belong, and the each values is a set of pod names. +optional
          - `stressngStressors` string — StressngStressors defines plenty of stressors just like `Stressors` except that it's an experimental feature and more powerful. You can define stressors in `stress-ng` (see also `man stress-ng`) dialect, however not all of the supported stressors are well tested. It maybe retired in later releases. You should always use `Stressors` to define the stressors and use this only when you want more stressors unsupported by `Stressors`. When both `StressngStressors` and `Stressors` are defined, `StressngStressors` wins. +optional
          - `stressors` GithubComChaosMeshChaosMeshApiV1alpha1Stressors
            - `cpu` GithubComChaosMeshChaosMeshApiV1alpha1CPUStressor
              - …
            - `memory` GithubComChaosMeshChaosMeshApiV1alpha1MemoryStressor
              - …
          - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
        - `task` GithubComChaosMeshChaosMeshApiV1alpha1Task
          - `container` K8sIoApiCoreV1Container
            - `args` string[] — Arguments to the entrypoint. The container image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell +optional +listType=atomic
            - `command` string[] — Entrypoint array. Not executed within a shell. The container image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell +optional +listType=atomic
            - `env` V1EnvVar[] — List of environment variables to set in the container. Cannot be updated. +optional +patchMergeKey=name +patchStrategy=merge +listType=map +listMapKey=name
              - …
            - `envFrom` V1EnvFromSource[] — List of sources to populate environment variables in the container. The keys defined within a source may consist of any printable ASCII characters except '='. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated. +optional +listType=atomic
              - …
            - `image` string — Container image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets. +optional
            - `imagePullPolicy` 'Always' | 'Never' | 'IfNotPresent'
            - `lifecycle` V1Lifecycle
              - …
            - `livenessProbe` V1Probe
              - …
            - `name` string — Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.
            - `ports` V1ContainerPort[] — List of ports to expose from the container. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default "0.0.0.0" address inside a container will be accessible from the network. Modifying this array with strategic merge patch may corrupt the data. For more information See https://github.com/kubernetes/kubernetes/issues/108255. Cannot be updated. +optional +patchMergeKey=containerPort +patchStrategy=merge +listType=map +listMapKey=containerPort +listMapKey=protocol
              - …
            - `readinessProbe` V1Probe
              - …
            - `resizePolicy` V1ContainerResizePolicy[] — Resources resize policy for the container. This field cannot be set on ephemeral containers. +featureGate=InPlacePodVerticalScaling +optional +listType=atomic
              - …
            - `resources` V1ResourceRequirements
              - …
            - `restartPolicy` 'Always' | 'Never' | 'OnFailure'
            - `restartPolicyRules` V1ContainerRestartRule[] — Represents a list of rules to be checked to determine if the container should be restarted on exit. The rules are evaluated in order. Once a rule matches a container exit condition, the remaining rules are ignored. If no rule matches the container exit condition, the Container-level restart policy determines the whether the container is restarted or not. Constraints on the rules: - At most 20 rules are allowed. - Rules can have the same action. - Identical rules are not forbidden in validations. When rules are specified, container MUST set RestartPolicy explicitly even it if matches the Pod's RestartPolicy. +featureGate=ContainerRestartRules +optional +listType=atomic
              - …
            - `securityContext` V1SecurityContext
              - …
            - `startupProbe` V1Probe
              - …
            - `stdin` boolean — Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false. +optional
            - `stdinOnce` boolean — Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false +optional
            - `terminationMessagePath` string — Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated. +optional
            - `terminationMessagePolicy` 'File' | 'FallbackToLogsOnError'
            - `tty` boolean — Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false. +optional
            - `volumeDevices` V1VolumeDevice[] — volumeDevices is the list of block devices to be used by the container. +patchMergeKey=devicePath +patchStrategy=merge +listType=map +listMapKey=devicePath +optional
              - …
            - `volumeMounts` V1VolumeMount[] — Pod volumes to mount into the container's filesystem. Cannot be updated. +optional +patchMergeKey=mountPath +patchStrategy=merge +listType=map +listMapKey=mountPath
              - …
            - `workingDir` string — Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated. +optional
          - `labels` object
          - `volumes` V1Volume[] — Volumes is a list of volumes that can be mounted by containers in a template. +patchStrategy=merge +patchMergeKey=name
            - `awsElasticBlockStore` V1AWSElasticBlockStoreVolumeSource
              - …
            - `azureDisk` V1AzureDiskVolumeSource
              - …
            - `azureFile` V1AzureFileVolumeSource
              - …
            - `cephfs` V1CephFSVolumeSource
              - …
            - `cinder` V1CinderVolumeSource
              - …
            - `configMap` V1ConfigMapVolumeSource
              - …
            - `csi` V1CSIVolumeSource
              - …
            - `downwardAPI` V1DownwardAPIVolumeSource
              - …
            - `emptyDir` V1EmptyDirVolumeSource
              - …
            - `ephemeral` V1EphemeralVolumeSource
              - …
            - `fc` V1FCVolumeSource
              - …
            - `flexVolume` V1FlexVolumeSource
              - …
            - `flocker` V1FlockerVolumeSource
              - …
            - `gcePersistentDisk` V1GCEPersistentDiskVolumeSource
              - …
            - `gitRepo` V1GitRepoVolumeSource
              - …
            - `glusterfs` V1GlusterfsVolumeSource
              - …
            - `hostPath` V1HostPathVolumeSource
              - …
            - `image` V1ImageVolumeSource
              - …
            - `iscsi` V1ISCSIVolumeSource
              - …
            - `name` string — name of the volume. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
            - `nfs` V1NFSVolumeSource
              - …
            - `persistentVolumeClaim` V1PersistentVolumeClaimVolumeSource
              - …
            - `photonPersistentDisk` V1PhotonPersistentDiskVolumeSource
              - …
            - `portworxVolume` V1PortworxVolumeSource
              - …
            - `projected` V1ProjectedVolumeSource
              - …
            - `quobyte` V1QuobyteVolumeSource
              - …
            - `rbd` V1RBDVolumeSource
              - …
            - `scaleIO` V1ScaleIOVolumeSource
              - …
            - `secret` V1SecretVolumeSource
              - …
            - `storageos` V1StorageOSVolumeSource
              - …
            - `vsphereVolume` V1VsphereVirtualDiskVolumeSource
              - …
        - `templateType` 'Task' | 'Serial' | 'Parallel' | 'Suspend' | 'StatusCheck' | 'Schedule' | 'AWSChaos' | 'AzureChaos' | 'BlockChaos' | 'DNSChaos' | 'GCPChaos' | 'HTTPChaos' | 'IOChaos' | 'JVMChaos' | 'KernelChaos' | 'NetworkChaos' | 'PhysicalMachineChaos' | 'PodChaos' | 'StressChaos' | 'TimeChaos'
        - `timeChaos` GithubComChaosMeshChaosMeshApiV1alpha1TimeChaosSpec
          - `clockIds` string[] — ClockIds defines all affected clock id All available options are ["CLOCK_REALTIME","CLOCK_MONOTONIC","CLOCK_PROCESS_CPUTIME_ID","CLOCK_THREAD_CPUTIME_ID", "CLOCK_MONOTONIC_RAW","CLOCK_REALTIME_COARSE","CLOCK_MONOTONIC_COARSE","CLOCK_BOOTTIME","CLOCK_REALTIME_ALARM", "CLOCK_BOOTTIME_ALARM"] Default value is ["CLOCK_REALTIME"]
          - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
          - `duration` string — Duration represents the duration of the chaos action
          - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
          - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
          - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
            - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
            - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
              - …
            - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
            - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
            - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
            - `nodeSelectors` object — Map of string keys and values that can be used to select nodes. Selector which must match a node's labels, and objects must belong to these selected nodes. +optional
            - `nodes` string[] — Nodes is a set of node name and objects must belong to these nodes. +optional
            - `podPhaseSelectors` string[] — PodPhaseSelectors is a set of condition of a pod at the current time. supported value: Pending / Running / Succeeded / Failed / Unknown +optional
            - `pods` object — Pods is a map of string keys and a set values that used to select pods. The key defines the namespace which pods belong, and the each values is a set of pod names. +optional
          - `timeOffset` string — TimeOffset defines the delta time of injected program. It's a possibly signed sequence of decimal numbers, such as "300ms", "-1.5h" or "2h45m". Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h".
          - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
  - `status` GithubComChaosMeshChaosMeshApiV1alpha1ScheduleStatus
    - `active` V1ObjectReference[] — +optional
      - `apiVersion` string — API version of the referent. +optional
      - `fieldPath` string — If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: "spec.containers{name}" (where "name" refers to the name of the container that triggered the event) or if no container name is specified "spec.containers[2]" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object. TODO: this design is not final and this field is subject to change in the future. +optional
      - `kind` string — Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds +optional
      - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names +optional
      - `namespace` string — Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ +optional
      - `resourceVersion` string — Specific resourceVersion to which this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency +optional
      - `uid` string — UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids +optional
    - `time` string — +optional +nullable

## Response `200`

OK

- GithubComChaosMeshChaosMeshApiV1alpha1Schedule
  - `apiVersion` string — APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources +optional
  - `kind` string — Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds +optional
  - `metadata` V1ObjectMeta
    - `annotations` object — Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations +optional
    - `creationTimestamp` string — CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. Populated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata +optional
    - `deletionGracePeriodSeconds` integer — Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only. +optional
    - `deletionTimestamp` string — DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested. Populated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata +optional
    - `finalizers` string[] — Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list. +optional +patchStrategy=merge +listType=set
    - `generateName` string — GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server. If this field is specified and the generated name exists, the server will return a 409. Applied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency +optional
    - `generation` integer — A sequence number representing a specific generation of the desired state. Populated by the system. Read-only. +optional
    - `labels` object — Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels +optional
    - `managedFields` V1ManagedFieldsEntry[] — ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like "ci-cd". The set of fields is always in the version that the workflow used when modifying the object. +optional +listType=atomic
      - `apiVersion` string — APIVersion defines the version of this resource that this field set applies to. The format is "group/version" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.
      - `fieldsType` string — FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: "FieldsV1"
      - `fieldsV1` V1FieldsV1
      - `manager` string — Manager is an identifier of the workflow managing these fields.
      - `operation` 'Apply' | 'Update'
      - `subresource` string — Subresource is the name of the subresource used to update that object, or empty string if the object was updated through the main resource. The value of this field is used to distinguish between managers, even if they share the same name. For example, a status update will be distinct from a regular update using the same manager name. Note that the APIVersion field is not related to the Subresource field and it always corresponds to the version of the main resource.
      - `time` string — Time is the timestamp of when the ManagedFields entry was added. The timestamp will also be updated if a field is added, the manager changes any of the owned fields value or removes a field. The timestamp does not update when a field is removed from the entry because another manager took it over. +optional
    - `name` string — Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names +optional
    - `namespace` string — Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the "default" namespace, but "default" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty. Must be a DNS_LABEL. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces +optional
    - `ownerReferences` V1OwnerReference[] — List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller. +optional +patchMergeKey=uid +patchStrategy=merge +listType=map +listMapKey=uid
      - `apiVersion` string — API version of the referent.
      - `blockOwnerDeletion` boolean — If true, AND if the owner has the "foregroundDeletion" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. See https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion for how the garbage collector interacts with this field and enforces the foreground deletion. Defaults to false. To set this field, a user needs "delete" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned. +optional
      - `controller` boolean — If true, this reference points to the managing controller. +optional
      - `kind` string — Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
      - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names
      - `uid` string — UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids
    - `resourceVersion` string — An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources. Populated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency +optional
    - `selfLink` string — Deprecated: selfLink is a legacy read-only field that is no longer populated by the system. +optional
    - `uid` string — UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations. Populated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids +optional
  - `spec` GithubComChaosMeshChaosMeshApiV1alpha1ScheduleSpec
    - `awsChaos` GithubComChaosMeshChaosMeshApiV1alpha1AWSChaosSpec
      - `action` 'ec2-stop' | 'ec2-restart' | 'detach-volume'
      - `awsRegion` string — AWSRegion defines the region of aws.
      - `deviceName` string — DeviceName indicates the name of the device. Needed in detach-volume. +ui:form:when=action=='detach-volume' +optional
      - `duration` string — Duration represents the duration of the chaos action. +optional
      - `ec2Instance` string — Ec2Instance indicates the ID of the ec2 instance.
      - `endpoint` string — Endpoint indicates the endpoint of the aws server. Just used it in test now. +ui:form:ignore +optional
      - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
      - `secretName` string — SecretName defines the name of kubernetes secret. +optional
      - `volumeID` string — EbsVolume indicates the ID of the EBS volume. Needed in detach-volume. +ui:form:when=action=='detach-volume' +optional
    - `azureChaos` GithubComChaosMeshChaosMeshApiV1alpha1AzureChaosSpec
      - `action` 'vm-stop' | 'vm-restart' | 'disk-detach'
      - `diskName` string — DiskName indicates the name of the disk. Needed in disk-detach. +optional
      - `duration` string — Duration represents the duration of the chaos action. +optional
      - `lun` integer — LUN indicates the Logical Unit Number of the data disk. Needed in disk-detach. +optional
      - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
      - `resourceGroupName` string — ResourceGroupName defines the name of ResourceGroup
      - `secretName` string — SecretName defines the name of kubernetes secret. It is used for Azure credentials. +optional
      - `subscriptionID` string — SubscriptionID defines the id of Azure subscription.
      - `vmName` string — VMName defines the name of Virtual Machine
    - `blockChaos` GithubComChaosMeshChaosMeshApiV1alpha1BlockChaosSpec
      - `action` 'delay'
      - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
      - `delay` GithubComChaosMeshChaosMeshApiV1alpha1BlockDelaySpec
        - `correlation` string — +optional
        - `jitter` string — +optional
        - `latency` string — Latency defines the latency of every io request.
      - `duration` string — Duration represents the duration of the chaos action. +optional
      - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
      - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
      - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
        - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
        - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
          - `key` string — key is the label key that the selector applies to.
          - `operator` 'In' | 'NotIn' | 'Exists' | 'DoesNotExist'
          - `values` string[] — values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. +optional +listType=atomic
        - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
        - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
        - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
        - `nodeSelectors` object — Map of string keys and values that can be used to select nodes. Selector which must match a node's labels, and objects must belong to these selected nodes. +optional
        - `nodes` string[] — Nodes is a set of node name and objects must belong to these nodes. +optional
        - `podPhaseSelectors` string[] — PodPhaseSelectors is a set of condition of a pod at the current time. supported value: Pending / Running / Succeeded / Failed / Unknown +optional
        - `pods` object — Pods is a map of string keys and a set values that used to select pods. The key defines the namespace which pods belong, and the each values is a set of pod names. +optional
      - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
      - `volumeName` string
    - `concurrencyPolicy` string — +optional +kubebuilder:default=Forbid +kubebuilder:validation:Enum=Forbid;Allow
    - `dnsChaos` GithubComChaosMeshChaosMeshApiV1alpha1DNSChaosSpec
      - `action` 'error' | 'random'
      - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
      - `duration` string — Duration represents the duration of the chaos action
      - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
      - `patterns` string[] — Choose which domain names to take effect, support the placeholder ? and wildcard *, or the Specified domain name. Note: 1. The wildcard * must be at the end of the string. For example, chaos-*.org is invalid. 2. if the patterns is empty, will take effect on all the domain names. For example: The value is ["google.com", "github.*", "chaos-mes?.org"], will take effect on "google.com", "github.com" and "chaos-mesh.org" +optional
      - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
      - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
        - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
        - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
          - `key` string — key is the label key that the selector applies to.
          - `operator` 'In' | 'NotIn' | 'Exists' | 'DoesNotExist'
          - `values` string[] — values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. +optional +listType=atomic
        - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
        - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
        - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
        - `nodeSelectors` object — Map of string keys and values that can be used to select nodes. Selector which must match a node's labels, and objects must belong to these selected nodes. +optional
        - `nodes` string[] — Nodes is a set of node name and objects must belong to these nodes. +optional
        - `podPhaseSelectors` string[] — PodPhaseSelectors is a set of condition of a pod at the current time. supported value: Pending / Running / Succeeded / Failed / Unknown +optional
        - `pods` object — Pods is a map of string keys and a set values that used to select pods. The key defines the namespace which pods belong, and the each values is a set of pod names. +optional
      - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
    - `gcpChaos` GithubComChaosMeshChaosMeshApiV1alpha1GCPChaosSpec
      - `action` 'node-stop' | 'node-reset' | 'disk-loss'
      - `deviceNames` string[] — The device name of disks to detach. Needed in disk-loss. +ui:form:when=action=='disk-loss' +optional
      - `duration` string — Duration represents the duration of the chaos action. +optional
      - `instance` string — Instance defines the name of the instance
      - `project` string — Project defines the ID of gcp project.
      - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
      - `secretName` string — SecretName defines the name of kubernetes secret. It is used for GCP credentials. +optional
      - `zone` string — Zone defines the zone of gcp project.
    - `historyLimit` integer — +optional +kubebuilder:validation:Minimum=1
    - `httpChaos` GithubComChaosMeshChaosMeshApiV1alpha1HTTPChaosSpec
      - `abort` boolean — Abort is a rule to abort a http session. +optional
      - `code` integer — Code is a rule to select target by http status code in response. +optional
      - `delay` string — Delay represents the delay of the target request/response. A duration string is a possibly unsigned sequence of decimal numbers, each with optional fraction and a unit suffix, such as "300ms", "2h45m". Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h". +optional
      - `duration` string — Duration represents the duration of the chaos action. +optional
      - `method` string — Method is a rule to select target by http method in request. +optional
      - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
      - `patch` GithubComChaosMeshChaosMeshApiV1alpha1PodHttpChaosPatchActions
        - `body` GithubComChaosMeshChaosMeshApiV1alpha1PodHttpChaosPatchBodyAction
          - `type` string — Type represents the patch type, only support `JSON` as [merge patch json](https://tools.ietf.org/html/rfc7396) currently.
          - `value` string — Value is the patch contents.
        - `headers` array[] — Headers is a rule to append http headers of target. For example: `[["Set-Cookie", "<one cookie>"], ["Set-Cookie", "<another cookie>"]]`. +optional
          - string[]
        - `queries` array[] — Queries is a rule to append uri queries of target(Request only). For example: `[["foo", "bar"], ["foo", "unknown"]]`. +optional
          - string[]
      - `path` string — Path is a rule to select target by uri path in http request. +optional
      - `port` integer — Port represents the target port to be proxy of.
      - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
      - `replace` GithubComChaosMeshChaosMeshApiV1alpha1PodHttpChaosReplaceActions
        - `body` integer[] — Body is a rule to replace http message body in target. +optional
        - `code` integer — Code is a rule to replace http status code in response. +optional
        - `headers` object — Headers is a rule to replace http headers of target. The key-value pairs represent header name and header value pairs. +optional
        - `method` string — Method is a rule to replace http method in request. +optional
        - `path` string — Path is rule to to replace uri path in http request. +optional
        - `queries` object — Queries is a rule to replace uri queries in http request. For example, with value `{ "foo": "unknown" }`, the `/?foo=bar` will be altered to `/?foo=unknown`, +optional
      - `request_headers` object — RequestHeaders is a rule to select target by http headers in request. The key-value pairs represent header name and header value pairs. +optional
      - `response_headers` object — ResponseHeaders is a rule to select target by http headers in response. The key-value pairs represent header name and header value pairs. +optional
      - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
        - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
        - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
          - `key` string — key is the label key that the selector applies to.
          - `operator` 'In' | 'NotIn' | 'Exists' | 'DoesNotExist'
          - `values` string[] — values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. +optional +listType=atomic
        - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
        - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
        - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
        - `nodeSelectors` object — Map of string keys and values that can be used to select nodes. Selector which must match a node's labels, and objects must belong to these selected nodes. +optional
        - `nodes` string[] — Nodes is a set of node name and objects must belong to these nodes. +optional
        - `podPhaseSelectors` string[] — PodPhaseSelectors is a set of condition of a pod at the current time. supported value: Pending / Running / Succeeded / Failed / Unknown +optional
        - `pods` object — Pods is a map of string keys and a set values that used to select pods. The key defines the namespace which pods belong, and the each values is a set of pod names. +optional
      - `target` 'Request' | 'Response'
      - `tls` GithubComChaosMeshChaosMeshApiV1alpha1PodHttpChaosTLS
        - `caName` string — CAName represents the data name of ca file in secret, `ca.crt` for example +optional
        - `certName` string — CertName represents the data name of cert file in secret, `tls.crt` for example
        - `keyName` string — KeyName represents the data name of key file in secret, `tls.key` for example
        - `secretName` string — SecretName represents the name of required secret resource
        - `secretNamespace` string — SecretNamespace represents the namespace of required secret resource
      - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
    - `ioChaos` GithubComChaosMeshChaosMeshApiV1alpha1IOChaosSpec
      - `action` 'latency' | 'fault' | 'attrOverride' | 'mistake'
      - `attr` GithubComChaosMeshChaosMeshApiV1alpha1AttrOverrideSpec
        - `atime` GithubComChaosMeshChaosMeshApiV1alpha1Timespec
          - `nsec` integer
          - `sec` integer
        - `blocks` integer — +optional
        - `ctime` GithubComChaosMeshChaosMeshApiV1alpha1Timespec
          - `nsec` integer
          - `sec` integer
        - `gid` integer — +optional
        - `ino` integer — +optional
        - `kind` 'namedPipe' | 'charDevice' | 'blockDevice' | 'directory' | 'regularFile' | 'symlink' | 'socket'
        - `mtime` GithubComChaosMeshChaosMeshApiV1alpha1Timespec
          - `nsec` integer
          - `sec` integer
        - `nlink` integer — +optional
        - `perm` integer — +optional
        - `rdev` integer — +optional
        - `size` integer — +optional
        - `uid` integer — +optional
      - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
      - `delay` string — Delay defines the value of I/O chaos action delay. A delay string is a possibly signed sequence of decimal numbers, each with optional fraction and a unit suffix, such as "300ms". Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h". +ui:form:when=action=='latency' +optional
      - `duration` string — Duration represents the duration of the chaos action. It is required when the action is `PodFailureAction`. A duration string is a possibly signed sequence of decimal numbers, each with optional fraction and a unit suffix, such as "300ms", "-1.5h" or "2h45m". Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h". +optional
      - `errno` integer — Errno defines the error code that returned by I/O action. refer to: https://www-numi.fnal.gov/offline_software/srt_public_context/WebDocs/Errors/unix_system_errors.html +ui:form:when=action=='fault' +optional
      - `methods` GithubComChaosMeshChaosMeshApiV1alpha1IoMethod[] — Methods defines the I/O methods for injecting I/O chaos action. default: all I/O methods. +optional
      - `mistake` GithubComChaosMeshChaosMeshApiV1alpha1MistakeSpec
        - `filling` 'zero' | 'random'
        - `maxLength` integer — Max length of each wrong data segment in bytes +optional +kubebuilder:validation:Minimum=1
        - `maxOccurrences` integer — There will be [1, MaxOccurrences] segments of wrong data. +optional +kubebuilder:validation:Minimum=1
      - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
      - `path` string — Path defines the path of files for injecting I/O chaos action. +optional
      - `percent` integer — Percent defines the percentage of injection errors and provides a number from 0-100. default: 100. +optional +kubebuilder:default=100
      - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
      - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
        - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
        - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
          - `key` string — key is the label key that the selector applies to.
          - `operator` 'In' | 'NotIn' | 'Exists' | 'DoesNotExist'
          - `values` string[] — values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. +optional +listType=atomic
        - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
        - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
        - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
        - `nodeSelectors` object — Map of string keys and values that can be used to select nodes. Selector which must match a node's labels, and objects must belong to these selected nodes. +optional
        - `nodes` string[] — Nodes is a set of node name and objects must belong to these nodes. +optional
        - `podPhaseSelectors` string[] — PodPhaseSelectors is a set of condition of a pod at the current time. supported value: Pending / Running / Succeeded / Failed / Unknown +optional
        - `pods` object — Pods is a map of string keys and a set values that used to select pods. The key defines the namespace which pods belong, and the each values is a set of pod names. +optional
      - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
      - `volumePath` string — VolumePath represents the mount path of injected volume
    - `jvmChaos` GithubComChaosMeshChaosMeshApiV1alpha1JVMChaosSpec
      - `action` 'latency' | 'return' | 'exception' | 'stress' | 'gc' | 'ruleData' | 'mysql'
      - `class` string — Java class +optional
      - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
      - `cpuCount` integer — the CPU core number needs to use, only set it when action is stress +optional
      - `database` string — the match database default value is "", means match all database
      - `duration` string — Duration represents the duration of the chaos action +optional
      - `exception` string — the exception which needs to throw for action `exception` or the exception message needs to throw in action `mysql` +optional
      - `latency` integer — the latency duration for action 'latency', unit ms or the latency duration in action `mysql` +optional
      - `memType` string — the memory type needs to locate, only set it when action is stress, the value can be 'stack' or 'heap' +optional
      - `method` string — the method in Java class +optional
      - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
      - `mysqlConnectorVersion` string — the version of mysql-connector-java, only support 5.X.X(set to "5") and 8.X.X(set to "8") now
      - `name` string — byteman rule name, should be unique, and will generate one if not set +optional
      - `pid` integer — the pid of Java process which needs to attach
      - `port` integer — the port of agent server, default 9277 +optional
      - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
      - `returnValue` string — the return value for action 'return' +optional
      - `ruleData` string — the byteman rule's data for action 'ruleData' +optional
      - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
        - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
        - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
          - `key` string — key is the label key that the selector applies to.
          - `operator` 'In' | 'NotIn' | 'Exists' | 'DoesNotExist'
          - `values` string[] — values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. +optional +listType=atomic
        - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
        - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
        - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
        - `nodeSelectors` object — Map of string keys and values that can be used to select nodes. Selector which must match a node's labels, and objects must belong to these selected nodes. +optional
        - `nodes` string[] — Nodes is a set of node name and objects must belong to these nodes. +optional
        - `podPhaseSelectors` string[] — PodPhaseSelectors is a set of condition of a pod at the current time. supported value: Pending / Running / Succeeded / Failed / Unknown +optional
        - `pods` object — Pods is a map of string keys and a set values that used to select pods. The key defines the namespace which pods belong, and the each values is a set of pod names. +optional
      - `sqlType` string — the match sql type default value is "", means match all SQL type. The value can be 'select', 'insert', 'update', 'delete', 'replace'.
      - `table` string — the match table default value is "", means match all table
      - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
    - `kernelChaos` GithubComChaosMeshChaosMeshApiV1alpha1KernelChaosSpec
      - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
      - `duration` string — Duration represents the duration of the chaos action
      - `failKernRequest` GithubComChaosMeshChaosMeshApiV1alpha1FailKernRequest
        - `callchain` GithubComChaosMeshChaosMeshApiV1alpha1Frame[] — Callchain indicate a special call chain, such as: ext4_mount -> mount_subtree -> ... -> should_failslab With an optional set of predicates and an optional set of parameters, which used with predicates. You can read call chan and predicate examples from https://github.com/chaos-mesh/bpfki/tree/develop/examples to learn more. If no special call chain, just keep Callchain empty, which means it will fail at any call chain with slab alloc (eg: kmalloc).
          - `funcname` string — Funcname can be find from kernel source or `/proc/kallsyms`, such as `ext4_mount`
          - `parameters` string — Parameters is used with predicate, for example, if you want to inject slab error in `d_alloc_parallel(struct dentry *parent, const struct qstr *name)` with a special name `bananas`, you need to set it to `struct dentry *parent, const struct qstr *name` otherwise omit it.
          - `predicate` string — Predicate will access the arguments of this Frame, example with Parameters's, you can set it to `STRNCMP(name->name, "bananas", 8)` to make inject only with it, or omit it to inject for all d_alloc_parallel call chain.
        - `failtype` integer — FailType indicates what to fail, can be set to '0' / '1' / '2' If `0`, indicates slab to fail (should_failslab) If `1`, indicates alloc_page to fail (should_fail_alloc_page) If `2`, indicates bio to fail (should_fail_bio) You can read: 1. https://www.kernel.org/doc/html/latest/fault-injection/fault-injection.html 2. http://github.com/iovisor/bcc/blob/master/tools/inject_example.txt to learn more +kubebuilder:validation:Maximum=2 +kubebuilder:validation:Minimum=0
        - `headers` string[] — Headers indicates the appropriate kernel headers you need. Eg: "linux/mmzone.h", "linux/blkdev.h" and so on
        - `probability` integer — Probability indicates the fails with probability. If you want 1%, please set this field with 1. +kubebuilder:validation:Minimum=0 +kubebuilder:validation:Maximum=100
        - `times` integer — Times indicates the max times of fails. +kubebuilder:validation:Minimum=0
      - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
      - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
      - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
        - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
        - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
          - `key` string — key is the label key that the selector applies to.
          - `operator` 'In' | 'NotIn' | 'Exists' | 'DoesNotExist'
          - `values` string[] — values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. +optional +listType=atomic
        - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
        - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
        - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
        - `nodeSelectors` object — Map of string keys and values that can be used to select nodes. Selector which must match a node's labels, and objects must belong to these selected nodes. +optional
        - `nodes` string[] — Nodes is a set of node name and objects must belong to these nodes. +optional
        - `podPhaseSelectors` string[] — PodPhaseSelectors is a set of condition of a pod at the current time. supported value: Pending / Running / Succeeded / Failed / Unknown +optional
        - `pods` object — Pods is a map of string keys and a set values that used to select pods. The key defines the namespace which pods belong, and the each values is a set of pod names. +optional
      - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
    - `networkChaos` GithubComChaosMeshChaosMeshApiV1alpha1NetworkChaosSpec
      - `action` 'netem' | 'delay' | 'loss' | 'duplicate' | 'corrupt' | 'partition' | 'bandwidth'
      - `bandwidth` GithubComChaosMeshChaosMeshApiV1alpha1BandwidthSpec
        - `buffer` integer — Buffer is the maximum amount of bytes that tokens can be available for instantaneously. +kubebuilder:validation:Minimum=1
        - `limit` integer — Limit is the number of bytes that can be queued waiting for tokens to become available. +kubebuilder:validation:Minimum=1
        - `minburst` integer — Minburst specifies the size of the peakrate bucket. For perfect accuracy, should be set to the MTU of the interface. If a peakrate is needed, but some burstiness is acceptable, this size can be raised. A 3000 byte minburst allows around 3mbit/s of peakrate, given 1000 byte packets. +optional +kubebuilder:validation:Minimum=0
        - `peakrate` integer — Peakrate is the maximum depletion rate of the bucket. The peakrate does not need to be set, it is only necessary if perfect millisecond timescale shaping is required. +optional +kubebuilder:validation:Minimum=0
        - `rate` string — Rate is the speed knob. Allows bit, kbit, mbit, gbit, tbit, bps, kbps, mbps, gbps, tbps unit. bps means bytes per second.
      - `corrupt` GithubComChaosMeshChaosMeshApiV1alpha1CorruptSpec
        - `correlation` string — +optional
        - `corrupt` string
      - `delay` GithubComChaosMeshChaosMeshApiV1alpha1DelaySpec
        - `correlation` string — +optional
        - `jitter` string — +kubebuilder:validation:Pattern="^[0-9]+(\\.[0-9]+)?(ns|us|ms|s|m|h)$" +optional
        - `latency` string — +kubebuilder:validation:Pattern="^[0-9]+(\\.[0-9]+)?(ns|us|ms|s|m|h)$"
        - `reorder` GithubComChaosMeshChaosMeshApiV1alpha1ReorderSpec
          - `correlation` string — +optional
          - `gap` integer
          - `reorder` string
      - `device` string — Device represents the network device to be affected. +optional
      - `direction` 'to' | 'from' | 'both'
      - `duplicate` GithubComChaosMeshChaosMeshApiV1alpha1DuplicateSpec
        - `correlation` string — +optional
        - `duplicate` string
      - `duration` string — Duration represents the duration of the chaos action
      - `externalTargets` string[] — ExternalTargets represents network targets outside k8s +optional
      - `loss` GithubComChaosMeshChaosMeshApiV1alpha1LossSpec
        - `correlation` string — +optional
        - `loss` string
      - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
      - `rate` GithubComChaosMeshChaosMeshApiV1alpha1RateSpec
        - `rate` string — Rate is the speed knob. Allows bit, kbit, mbit, gbit, tbit, bps, kbps, mbps, gbps, tbps unit. bps means bytes per second.
      - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
      - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
        - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
        - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
          - `key` string — key is the label key that the selector applies to.
          - `operator` 'In' | 'NotIn' | 'Exists' | 'DoesNotExist'
          - `values` string[] — values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. +optional +listType=atomic
        - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
        - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
        - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
        - `nodeSelectors` object — Map of string keys and values that can be used to select nodes. Selector which must match a node's labels, and objects must belong to these selected nodes. +optional
        - `nodes` string[] — Nodes is a set of node name and objects must belong to these nodes. +optional
        - `podPhaseSelectors` string[] — PodPhaseSelectors is a set of condition of a pod at the current time. supported value: Pending / Running / Succeeded / Failed / Unknown +optional
        - `pods` object — Pods is a map of string keys and a set values that used to select pods. The key defines the namespace which pods belong, and the each values is a set of pod names. +optional
      - `target` GithubComChaosMeshChaosMeshApiV1alpha1PodSelector
        - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
        - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
          - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
          - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
            - `key` string — key is the label key that the selector applies to.
            - `operator` 'In' | 'NotIn' | 'Exists' | 'DoesNotExist'
            - `values` string[] — values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. +optional +listType=atomic
          - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
          - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
          - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
          - `nodeSelectors` object — Map of string keys and values that can be used to select nodes. Selector which must match a node's labels, and objects must belong to these selected nodes. +optional
          - `nodes` string[] — Nodes is a set of node name and objects must belong to these nodes. +optional
          - `podPhaseSelectors` string[] — PodPhaseSelectors is a set of condition of a pod at the current time. supported value: Pending / Running / Succeeded / Failed / Unknown +optional
          - `pods` object — Pods is a map of string keys and a set values that used to select pods. The key defines the namespace which pods belong, and the each values is a set of pod names. +optional
        - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
      - `targetDevice` string — TargetDevice represents the network device to be affected in target scope. +optional
      - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
    - `physicalmachineChaos` GithubComChaosMeshChaosMeshApiV1alpha1PhysicalMachineChaosSpec
      - `action` string — +kubebuilder:validation:Enum=stress-cpu;stress-mem;disk-read-payload;disk-write-payload;disk-fill;network-corrupt;network-duplicate;network-loss;network-delay;network-partition;network-dns;network-bandwidth;network-flood;network-down;process;jvm-exception;jvm-gc;jvm-latency;jvm-return;jvm-stress;jvm-rule-data;jvm-mysql;clock;redis-expiration;redis-penetration;redis-cacheLimit;redis-restart;redis-stop;kafka-fill;kafka-flood;kafka-io;file-create;file-modify;file-delete;file-rename;file-append;file-replace;vm;user_defined
      - `address` string[] — DEPRECATED: Use Selector instead. Only one of Address and Selector could be specified. +optional
      - `clock` GithubComChaosMeshChaosMeshApiV1alpha1ClockSpec
        - `clock-ids-slice` string — the identifier of the particular clock on which to act. More clock description in linux kernel can be found in man page of clock_getres, clock_gettime, clock_settime. Muti clock ids should be split with ","
        - `pid` integer — the pid of target program.
        - `time-offset` string — specifies the length of time offset.
      - `disk-fill` GithubComChaosMeshChaosMeshApiV1alpha1DiskFillSpec
        - `fill-by-fallocate` boolean — fill disk by fallocate
        - `path` string — specifies the location to fill data in. if path not provided, payload will read/write from/into a temp file, temp file will be deleted after writing
        - `size` string — specifies how many units of data will write into the file path. support unit: c=1, w=2, b=512, kB=1000, K=1024, MB=1000*1000, M=1024*1024, GB=1000*1000*1000, G=1024*1024*1024 BYTES. example : 1M | 512kB
      - `disk-read-payload` GithubComChaosMeshChaosMeshApiV1alpha1DiskPayloadSpec
        - `path` string — specifies the location to fill data in. if path not provided, payload will read/write from/into a temp file, temp file will be deleted after writing
        - `payload-process-num` integer — specifies the number of process work on writing, default 1, only 1-255 is valid value
        - `size` string — specifies how many units of data will write into the file path. support unit: c=1, w=2, b=512, kB=1000, K=1024, MB=1000*1000, M=1024*1024, GB=1000*1000*1000, G=1024*1024*1024 BYTES. example : 1M | 512kB
      - `disk-write-payload` GithubComChaosMeshChaosMeshApiV1alpha1DiskPayloadSpec
        - `path` string — specifies the location to fill data in. if path not provided, payload will read/write from/into a temp file, temp file will be deleted after writing
        - `payload-process-num` integer — specifies the number of process work on writing, default 1, only 1-255 is valid value
        - `size` string — specifies how many units of data will write into the file path. support unit: c=1, w=2, b=512, kB=1000, K=1024, MB=1000*1000, M=1024*1024, GB=1000*1000*1000, G=1024*1024*1024 BYTES. example : 1M | 512kB
      - `duration` string — Duration represents the duration of the chaos action +optional
      - `file-append` GithubComChaosMeshChaosMeshApiV1alpha1FileAppendSpec
        - `count` integer — Count is the number of times to append the data.
        - `data` string — Data is the data for append.
        - `file-name` string — FileName is the name of the file to be created, modified, deleted, renamed, or appended.
      - `file-create` GithubComChaosMeshChaosMeshApiV1alpha1FileCreateSpec
        - `dir-name` string — DirName is the directory name to create or delete.
        - `file-name` string — FileName is the name of the file to be created, modified, deleted, renamed, or appended.
      - `file-delete` GithubComChaosMeshChaosMeshApiV1alpha1FileDeleteSpec
        - `dir-name` string — DirName is the directory name to create or delete.
        - `file-name` string — FileName is the name of the file to be created, modified, deleted, renamed, or appended.
      - `file-modify` GithubComChaosMeshChaosMeshApiV1alpha1FileModifyPrivilegeSpec
        - `file-name` string — FileName is the name of the file to be created, modified, deleted, renamed, or appended.
        - `privilege` integer — Privilege is the file privilege to be set.
      - `file-rename` GithubComChaosMeshChaosMeshApiV1alpha1FileRenameSpec
        - `dest-file` string — DestFile is the name to be renamed.
        - `source-file` string — SourceFile is the name need to be renamed.
      - `file-replace` GithubComChaosMeshChaosMeshApiV1alpha1FileReplaceSpec
        - `dest-string` string — DestStr is the destination string of the file.
        - `file-name` string — FileName is the name of the file to be created, modified, deleted, renamed, or appended.
        - `line` integer — Line is the line number of the file to be replaced.
        - `origin-string` string — OriginStr is the origin string of the file.
      - `http-abort` GithubComChaosMeshChaosMeshApiV1alpha1HTTPAbortSpec
        - `code` string — Code is a rule to select target by http status code in response
        - `method` string — HTTP method
        - `path` string — Match path of Uri with wildcard matches
        - `port` integer — The TCP port that the target service listens on
        - `proxy_ports` integer[] — Composed with one of the port of HTTP connection, we will only attack HTTP connection with port inside proxy_ports
        - `target` string — HTTP target: Request or Response
      - `http-config` GithubComChaosMeshChaosMeshApiV1alpha1HTTPConfigSpec
        - `file_path` string — The config file path
      - `http-delay` GithubComChaosMeshChaosMeshApiV1alpha1HTTPDelaySpec
        - `code` string — Code is a rule to select target by http status code in response
        - `delay` string — Delay represents the delay of the target request/response
        - `method` string — HTTP method
        - `path` string — Match path of Uri with wildcard matches
        - `port` integer — The TCP port that the target service listens on
        - `proxy_ports` integer[] — Composed with one of the port of HTTP connection, we will only attack HTTP connection with port inside proxy_ports
        - `target` string — HTTP target: Request or Response
      - `http-request` GithubComChaosMeshChaosMeshApiV1alpha1HTTPRequestSpec
        - `count` integer — The number of requests to send
        - `enable-conn-pool` boolean — Enable connection pool
        - `url` string — Request to send"
      - `jvm-exception` GithubComChaosMeshChaosMeshApiV1alpha1JVMExceptionSpec
        - `class` string — Java class +optional
        - `exception` string — the exception which needs to throw for action `exception`
        - `method` string — the method in Java class +optional
        - `pid` integer — the pid of Java process which needs to attach
        - `port` integer — the port of agent server, default 9277 +optional
      - `jvm-gc` GithubComChaosMeshChaosMeshApiV1alpha1JVMGCSpec
        - `pid` integer — the pid of Java process which needs to attach
        - `port` integer — the port of agent server, default 9277 +optional
      - `jvm-latency` GithubComChaosMeshChaosMeshApiV1alpha1JVMLatencySpec
        - `class` string — Java class +optional
        - `latency` integer — the latency duration for action 'latency', unit ms
        - `method` string — the method in Java class +optional
        - `pid` integer — the pid of Java process which needs to attach
        - `port` integer — the port of agent server, default 9277 +optional
      - `jvm-mysql` GithubComChaosMeshChaosMeshApiV1alpha1PMJVMMySQLSpec
        - `database` string — the match database default value is "", means match all database
        - `exception` string — The exception which needs to throw for action `exception` or the exception message needs to throw in action `mysql`
        - `latency` integer — The latency duration for action 'latency' or the latency duration in action `mysql`
        - `mysqlConnectorVersion` string — the version of mysql-connector-java, only support 5.X.X(set to "5") and 8.X.X(set to "8") now
        - `pid` integer — the pid of Java process which needs to attach
        - `port` integer — the port of agent server, default 9277 +optional
        - `sqlType` string — the match sql type default value is "", means match all SQL type. The value can be 'select', 'insert', 'update', 'delete', 'replace'.
        - `table` string — the match table default value is "", means match all table
      - `jvm-return` GithubComChaosMeshChaosMeshApiV1alpha1JVMReturnSpec
        - `class` string — Java class +optional
        - `method` string — the method in Java class +optional
        - `pid` integer — the pid of Java process which needs to attach
        - `port` integer — the port of agent server, default 9277 +optional
        - `value` string — the return value for action 'return'
      - `jvm-rule-data` GithubComChaosMeshChaosMeshApiV1alpha1JVMRuleDataSpec
        - `pid` integer — the pid of Java process which needs to attach
        - `port` integer — the port of agent server, default 9277 +optional
        - `rule-data` string — RuleData used to save the rule file's data, will use it when recover
      - `jvm-stress` GithubComChaosMeshChaosMeshApiV1alpha1JVMStressSpec
        - `cpu-count` integer — the CPU core number need to use, only set it when action is stress
        - `mem-type` string — the memory type need to locate, only set it when action is stress, the value can be 'stack' or 'heap'
        - `pid` integer — the pid of Java process which needs to attach
        - `port` integer — the port of agent server, default 9277 +optional
      - `kafka-fill` GithubComChaosMeshChaosMeshApiV1alpha1KafkaFillSpec
        - `host` string — The host of kafka server
        - `maxBytes` integer — The max bytes to fill
        - `messageSize` integer — The size of each message
        - `password` string — The password of kafka client
        - `port` integer — The port of kafka server
        - `reloadCommand` string — The command to reload kafka config
        - `topic` string — The topic to attack
        - `username` string — The username of kafka client
      - `kafka-flood` GithubComChaosMeshChaosMeshApiV1alpha1KafkaFloodSpec
        - `host` string — The host of kafka server
        - `messageSize` integer — The size of each message
        - `password` string — The password of kafka client
        - `port` integer — The port of kafka server
        - `threads` integer — The number of worker threads
        - `topic` string — The topic to attack
        - `username` string — The username of kafka client
      - `kafka-io` GithubComChaosMeshChaosMeshApiV1alpha1KafkaIOSpec
        - `configFile` string — The path of server config
        - `nonReadable` boolean — Make kafka cluster non-readable
        - `nonWritable` boolean — Make kafka cluster non-writable
        - `topic` string — The topic to attack
      - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
      - `network-bandwidth` GithubComChaosMeshChaosMeshApiV1alpha1NetworkBandwidthSpec
        - `buffer` integer — +kubebuilder:validation:Minimum=1
        - `device` string
        - `hostname` string
        - `ip-address` string
        - `limit` integer — +kubebuilder:validation:Minimum=1
        - `minburst` integer
        - `peakrate` integer
        - `rate` string
      - `network-corrupt` GithubComChaosMeshChaosMeshApiV1alpha1NetworkCorruptSpec
        - `correlation` string — correlation is percentage (10 is 10%)
        - `device` string — the network interface to impact
        - `egress-port` string — only impact egress traffic to these destination ports, use a ',' to separate or to indicate the range, such as 80, 8001:8010. it can only be used in conjunction with -p tcp or -p udp
        - `hostname` string — only impact traffic to these hostnames
        - `ip-address` string — only impact egress traffic to these IP addresses
        - `ip-protocol` string — only impact traffic using this IP protocol, supported: tcp, udp, icmp, all
        - `percent` string — percentage of packets to corrupt (10 is 10%)
        - `source-port` string — only impact egress traffic from these source ports, use a ',' to separate or to indicate the range, such as 80, 8001:8010. it can only be used in conjunction with -p tcp or -p udp
      - `network-delay` GithubComChaosMeshChaosMeshApiV1alpha1NetworkDelaySpec
        - `accept-tcp-flags` string — only the packet which match the tcp flag can be accepted, others will be dropped. only set when the IPProtocol is tcp, used for partition.
        - `correlation` string — correlation is percentage (10 is 10%)
        - `device` string — the network interface to impact
        - `egress-port` string — only impact egress traffic to these destination ports, use a ',' to separate or to indicate the range, such as 80, 8001:8010. it can only be used in conjunction with -p tcp or -p udp
        - `hostname` string — only impact traffic to these hostnames
        - `ip-address` string — only impact egress traffic to these IP addresses
        - `ip-protocol` string — only impact traffic using this IP protocol, supported: tcp, udp, icmp, all
        - `jitter` string — jitter time, time units: ns, us (or µs), ms, s, m, h.
        - `latency` string — delay egress time, time units: ns, us (or µs), ms, s, m, h.
        - `source-port` string — only impact egress traffic from these source ports, use a ',' to separate or to indicate the range, such as 80, 8001:8010. it can only be used in conjunction with -p tcp or -p udp
      - `network-dns` GithubComChaosMeshChaosMeshApiV1alpha1NetworkDNSSpec
        - `dns-domain-name` string — map this host to specified IP
        - `dns-ip` string — map specified host to this IP address
        - `dns-server` string — update the DNS server in /etc/resolv.conf with this value
      - `network-down` GithubComChaosMeshChaosMeshApiV1alpha1NetworkDownSpec
        - `device` string — The network interface to impact
        - `duration` string — NIC down time, time units: ns, us (or µs), ms, s, m, h.
      - `network-duplicate` GithubComChaosMeshChaosMeshApiV1alpha1NetworkDuplicateSpec
        - `correlation` string — correlation is percentage (10 is 10%)
        - `device` string — the network interface to impact
        - `egress-port` string — only impact egress traffic to these destination ports, use a ',' to separate or to indicate the range, such as 80, 8001:8010. it can only be used in conjunction with -p tcp or -p udp
        - `hostname` string — only impact traffic to these hostnames
        - `ip-address` string — only impact egress traffic to these IP addresses
        - `ip-protocol` string — only impact traffic using this IP protocol, supported: tcp, udp, icmp, all
        - `percent` string — percentage of packets to duplicate (10 is 10%)
        - `source-port` string — only impact egress traffic from these source ports, use a ',' to separate or to indicate the range, such as 80, 8001:8010. it can only be used in conjunction with -p tcp or -p udp
      - `network-flood` GithubComChaosMeshChaosMeshApiV1alpha1NetworkFloodSpec
        - `duration` string — The number of seconds to run the iperf test
        - `ip-address` string — Generate traffic to this IP address
        - `parallel` integer — The number of iperf parallel client threads to run
        - `port` string — Generate traffic to this port on the IP address
        - `rate` string — The speed of network traffic, allows bps, kbps, mbps, gbps, tbps unit. bps means bytes per second
      - `network-loss` GithubComChaosMeshChaosMeshApiV1alpha1NetworkLossSpec
        - `correlation` string — correlation is percentage (10 is 10%)
        - `device` string — the network interface to impact
        - `egress-port` string — only impact egress traffic to these destination ports, use a ',' to separate or to indicate the range, such as 80, 8001:8010. it can only be used in conjunction with -p tcp or -p udp
        - `hostname` string — only impact traffic to these hostnames
        - `ip-address` string — only impact egress traffic to these IP addresses
        - `ip-protocol` string — only impact traffic using this IP protocol, supported: tcp, udp, icmp, all
        - `percent` string — percentage of packets to loss (10 is 10%)
        - `source-port` string — only impact egress traffic from these source ports, use a ',' to separate or to indicate the range, such as 80, 8001:8010. it can only be used in conjunction with -p tcp or -p udp
      - `network-partition` GithubComChaosMeshChaosMeshApiV1alpha1NetworkPartitionSpec
        - `accept-tcp-flags` string — only the packet which match the tcp flag can be accepted, others will be dropped. only set when the IPProtocol is tcp, used for partition.
        - `device` string — the network interface to impact
        - `direction` string — specifies the partition direction, values can be 'from', 'to'. 'from' means packets coming from the 'IPAddress' or 'Hostname' and going to your server, 'to' means packets originating from your server and going to the 'IPAddress' or 'Hostname'.
        - `hostname` string — only impact traffic to these hostnames
        - `ip-address` string — only impact egress traffic to these IP addresses
        - `ip-protocol` string — only impact egress traffic to these IP addresses
      - `process` GithubComChaosMeshChaosMeshApiV1alpha1ProcessSpec
        - `process` string — the process name or the process ID
        - `recoverCmd` string — the command to be run when recovering experiment
        - `signal` integer — the signal number to send
      - `redis-cacheLimit` GithubComChaosMeshChaosMeshApiV1alpha1RedisCacheLimitSpec
        - `addr` string — The adress of Redis server
        - `cacheSize` string — The size of `maxmemory`
        - `password` string — The password of Redis server
        - `percent` string — Specifies maxmemory as a percentage of the original value
      - `redis-expiration` GithubComChaosMeshChaosMeshApiV1alpha1RedisExpirationSpec
        - `addr` string — The adress of Redis server
        - `expiration` string — The expiration of the keys
        - `key` string — The keys to be expired
        - `option` string — Additional options for `expiration`
        - `password` string — The password of Redis server
      - `redis-penetration` GithubComChaosMeshChaosMeshApiV1alpha1RedisPenetrationSpec
        - `addr` string — The adress of Redis server
        - `password` string — The password of Redis server
        - `requestNum` integer — The number of requests to be sent
      - `redis-restart` GithubComChaosMeshChaosMeshApiV1alpha1RedisSentinelRestartSpec
        - `addr` string — The adress of Redis server
        - `conf` string — The path of Sentinel conf
        - `flushConfig` boolean — The control flag determines whether to flush config
        - `password` string — The password of Redis server
        - `redisPath` boolean — The path of `redis-server` command-line tool
      - `redis-stop` GithubComChaosMeshChaosMeshApiV1alpha1RedisSentinelStopSpec
        - `addr` string — The adress of Redis server
        - `conf` string — The path of Sentinel conf
        - `flushConfig` boolean — The control flag determines whether to flush config
        - `password` string — The password of Redis server
        - `redisPath` boolean — The path of `redis-server` command-line tool
      - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
      - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PhysicalMachineSelectorSpec
        - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
        - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
          - `key` string — key is the label key that the selector applies to.
          - `operator` 'In' | 'NotIn' | 'Exists' | 'DoesNotExist'
          - `values` string[] — values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. +optional +listType=atomic
        - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
        - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
        - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
        - `physicalMachines` object — PhysicalMachines is a map of string keys and a set values that used to select physical machines. The key defines the namespace which physical machine belong, and each value is a set of physical machine names. +optional
      - `stress-cpu` GithubComChaosMeshChaosMeshApiV1alpha1StressCPUSpec
        - `load` integer — specifies P percent loading per CPU worker. 0 is effectively a sleep (no load) and 100 is full loading.
        - `options` string[] — extend stress-ng options
        - `workers` integer — specifies N workers to apply the stressor.
      - `stress-mem` GithubComChaosMeshChaosMeshApiV1alpha1StressMemorySpec
        - `options` string[] — extend stress-ng options
        - `size` string — specifies N bytes consumed per vm worker, default is the total available memory. One can specify the size as % of total available memory or in units of B, KB/KiB, MB/MiB, GB/GiB, TB/TiB..
      - `user_defined` GithubComChaosMeshChaosMeshApiV1alpha1UserDefinedSpec
        - `attackCmd` string — The command to be executed when attack
        - `recoverCmd` string — The command to be executed when recover
      - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of physical machines to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of physical machines the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
      - `vm` GithubComChaosMeshChaosMeshApiV1alpha1VMSpec
        - `vm-name` string — The name of the VM to be injected
    - `podChaos` GithubComChaosMeshChaosMeshApiV1alpha1PodChaosSpec
      - `action` 'pod-kill' | 'pod-failure' | 'container-kill'
      - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
      - `duration` string — Duration represents the duration of the chaos action. It is required when the action is `PodFailureAction`. A duration string is a possibly signed sequence of decimal numbers, each with optional fraction and a unit suffix, such as "300ms", "-1.5h" or "2h45m". Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h". +optional
      - `gracePeriod` integer — GracePeriod is used in pod-kill action. It represents the duration in seconds before the pod should be deleted. Value must be non-negative integer. The default value is zero that indicates delete immediately. +optional +kubebuilder:validation:Minimum=0
      - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
      - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
      - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
        - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
        - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
          - `key` string — key is the label key that the selector applies to.
          - `operator` 'In' | 'NotIn' | 'Exists' | 'DoesNotExist'
          - `values` string[] — values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. +optional +listType=atomic
        - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
        - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
        - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
        - `nodeSelectors` object — Map of string keys and values that can be used to select nodes. Selector which must match a node's labels, and objects must belong to these selected nodes. +optional
        - `nodes` string[] — Nodes is a set of node name and objects must belong to these nodes. +optional
        - `podPhaseSelectors` string[] — PodPhaseSelectors is a set of condition of a pod at the current time. supported value: Pending / Running / Succeeded / Failed / Unknown +optional
        - `pods` object — Pods is a map of string keys and a set values that used to select pods. The key defines the namespace which pods belong, and the each values is a set of pod names. +optional
      - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
    - `schedule` string
    - `startingDeadlineSeconds` integer — +optional +nullable +kubebuilder:validation:Minimum=0 +kubebuilder:validation:ExclusiveMinimum=true
    - `stressChaos` GithubComChaosMeshChaosMeshApiV1alpha1StressChaosSpec
      - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
      - `duration` string — Duration represents the duration of the chaos action +optional
      - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
      - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
      - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
        - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
        - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
          - `key` string — key is the label key that the selector applies to.
          - `operator` 'In' | 'NotIn' | 'Exists' | 'DoesNotExist'
          - `values` string[] — values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. +optional +listType=atomic
        - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
        - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
        - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
        - `nodeSelectors` object — Map of string keys and values that can be used to select nodes. Selector which must match a node's labels, and objects must belong to these selected nodes. +optional
        - `nodes` string[] — Nodes is a set of node name and objects must belong to these nodes. +optional
        - `podPhaseSelectors` string[] — PodPhaseSelectors is a set of condition of a pod at the current time. supported value: Pending / Running / Succeeded / Failed / Unknown +optional
        - `pods` object — Pods is a map of string keys and a set values that used to select pods. The key defines the namespace which pods belong, and the each values is a set of pod names. +optional
      - `stressngStressors` string — StressngStressors defines plenty of stressors just like `Stressors` except that it's an experimental feature and more powerful. You can define stressors in `stress-ng` (see also `man stress-ng`) dialect, however not all of the supported stressors are well tested. It maybe retired in later releases. You should always use `Stressors` to define the stressors and use this only when you want more stressors unsupported by `Stressors`. When both `StressngStressors` and `Stressors` are defined, `StressngStressors` wins. +optional
      - `stressors` GithubComChaosMeshChaosMeshApiV1alpha1Stressors
        - `cpu` GithubComChaosMeshChaosMeshApiV1alpha1CPUStressor
          - `load` integer — Load specifies P percent loading per CPU worker. 0 is effectively a sleep (no load) and 100 is full loading. +kubebuilder:validation:Minimum=0 +kubebuilder:validation:Maximum=100 +optional
          - `options` string[] — extend stress-ng options +optional
          - `workers` integer — Workers specifies N workers to apply the stressor. Maximum 8192 workers can run by stress-ng +kubebuilder:validation:Maximum=8192
        - `memory` GithubComChaosMeshChaosMeshApiV1alpha1MemoryStressor
          - `oomScoreAdj` integer — OOMScoreAdj sets the oom_score_adj of the stress process. See `man 5 proc` to know more about this option. +kubebuilder:validation:Minimum=-1000 +kubebuilder:validation:Maximum=1000 +kubebuilder:default=0 +optional
          - `options` string[] — extend stress-ng options +optional
          - `size` string — Size specifies N bytes consumed per vm worker, default is the total available memory. One can specify the size as % of total available memory or in units of B, KB/KiB, MB/MiB, GB/GiB, TB/TiB. +optional
          - `workers` integer — Workers specifies N workers to apply the stressor. Maximum 8192 workers can run by stress-ng +kubebuilder:validation:Maximum=8192
      - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
    - `timeChaos` GithubComChaosMeshChaosMeshApiV1alpha1TimeChaosSpec
      - `clockIds` string[] — ClockIds defines all affected clock id All available options are ["CLOCK_REALTIME","CLOCK_MONOTONIC","CLOCK_PROCESS_CPUTIME_ID","CLOCK_THREAD_CPUTIME_ID", "CLOCK_MONOTONIC_RAW","CLOCK_REALTIME_COARSE","CLOCK_MONOTONIC_COARSE","CLOCK_BOOTTIME","CLOCK_REALTIME_ALARM", "CLOCK_BOOTTIME_ALARM"] Default value is ["CLOCK_REALTIME"]
      - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
      - `duration` string — Duration represents the duration of the chaos action
      - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
      - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
      - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
        - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
        - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
          - `key` string — key is the label key that the selector applies to.
          - `operator` 'In' | 'NotIn' | 'Exists' | 'DoesNotExist'
          - `values` string[] — values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. +optional +listType=atomic
        - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
        - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
        - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
        - `nodeSelectors` object — Map of string keys and values that can be used to select nodes. Selector which must match a node's labels, and objects must belong to these selected nodes. +optional
        - `nodes` string[] — Nodes is a set of node name and objects must belong to these nodes. +optional
        - `podPhaseSelectors` string[] — PodPhaseSelectors is a set of condition of a pod at the current time. supported value: Pending / Running / Succeeded / Failed / Unknown +optional
        - `pods` object — Pods is a map of string keys and a set values that used to select pods. The key defines the namespace which pods belong, and the each values is a set of pod names. +optional
      - `timeOffset` string — TimeOffset defines the delta time of injected program. It's a possibly signed sequence of decimal numbers, such as "300ms", "-1.5h" or "2h45m". Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h".
      - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
    - `type` 'AWSChaos' | 'AzureChaos' | 'BlockChaos' | 'DNSChaos' | 'GCPChaos' | 'HTTPChaos' | 'IOChaos' | 'JVMChaos' | 'KernelChaos' | 'NetworkChaos' | 'PhysicalMachineChaos' | 'PodChaos' | 'StressChaos' | 'TimeChaos' | 'Workflow'
    - `workflow` GithubComChaosMeshChaosMeshApiV1alpha1WorkflowSpec
      - `entry` string
      - `templates` GithubComChaosMeshChaosMeshApiV1alpha1Template[]
        - `abortWithStatusCheck` boolean — AbortWithStatusCheck describe whether to abort the workflow when the failure threshold of StatusCheck is exceeded. Only used when Type is TypeStatusCheck. +optional
        - `awsChaos` GithubComChaosMeshChaosMeshApiV1alpha1AWSChaosSpec
          - `action` 'ec2-stop' | 'ec2-restart' | 'detach-volume'
          - `awsRegion` string — AWSRegion defines the region of aws.
          - `deviceName` string — DeviceName indicates the name of the device. Needed in detach-volume. +ui:form:when=action=='detach-volume' +optional
          - `duration` string — Duration represents the duration of the chaos action. +optional
          - `ec2Instance` string — Ec2Instance indicates the ID of the ec2 instance.
          - `endpoint` string — Endpoint indicates the endpoint of the aws server. Just used it in test now. +ui:form:ignore +optional
          - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
          - `secretName` string — SecretName defines the name of kubernetes secret. +optional
          - `volumeID` string — EbsVolume indicates the ID of the EBS volume. Needed in detach-volume. +ui:form:when=action=='detach-volume' +optional
        - `azureChaos` GithubComChaosMeshChaosMeshApiV1alpha1AzureChaosSpec
          - `action` 'vm-stop' | 'vm-restart' | 'disk-detach'
          - `diskName` string — DiskName indicates the name of the disk. Needed in disk-detach. +optional
          - `duration` string — Duration represents the duration of the chaos action. +optional
          - `lun` integer — LUN indicates the Logical Unit Number of the data disk. Needed in disk-detach. +optional
          - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
          - `resourceGroupName` string — ResourceGroupName defines the name of ResourceGroup
          - `secretName` string — SecretName defines the name of kubernetes secret. It is used for Azure credentials. +optional
          - `subscriptionID` string — SubscriptionID defines the id of Azure subscription.
          - `vmName` string — VMName defines the name of Virtual Machine
        - `blockChaos` GithubComChaosMeshChaosMeshApiV1alpha1BlockChaosSpec
          - `action` 'delay'
          - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
          - `delay` GithubComChaosMeshChaosMeshApiV1alpha1BlockDelaySpec
            - `correlation` string — +optional
            - `jitter` string — +optional
            - `latency` string — Latency defines the latency of every io request.
          - `duration` string — Duration represents the duration of the chaos action. +optional
          - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
          - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
          - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
            - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
            - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
              - …
            - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
            - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
            - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
            - `nodeSelectors` object — Map of string keys and values that can be used to select nodes. Selector which must match a node's labels, and objects must belong to these selected nodes. +optional
            - `nodes` string[] — Nodes is a set of node name and objects must belong to these nodes. +optional
            - `podPhaseSelectors` string[] — PodPhaseSelectors is a set of condition of a pod at the current time. supported value: Pending / Running / Succeeded / Failed / Unknown +optional
            - `pods` object — Pods is a map of string keys and a set values that used to select pods. The key defines the namespace which pods belong, and the each values is a set of pod names. +optional
          - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
          - `volumeName` string
        - `children` string[] — Children describes the children steps of serial or parallel node. Only used when Type is TypeSerial or TypeParallel. +optional
        - `conditionalBranches` GithubComChaosMeshChaosMeshApiV1alpha1ConditionalBranch[] — ConditionalBranches describes the conditional branches of custom tasks. Only used when Type is TypeTask. +optional
          - `expression` string — Expression is the expression for this conditional branch, expected type of result is boolean. If expression is empty, this branch will always be selected/the template will be spawned. +optional
          - `target` string — Target is the name of other template, if expression is evaluated as true, this template will be spawned.
        - `deadline` string — +optional
        - `dnsChaos` GithubComChaosMeshChaosMeshApiV1alpha1DNSChaosSpec
          - `action` 'error' | 'random'
          - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
          - `duration` string — Duration represents the duration of the chaos action
          - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
          - `patterns` string[] — Choose which domain names to take effect, support the placeholder ? and wildcard *, or the Specified domain name. Note: 1. The wildcard * must be at the end of the string. For example, chaos-*.org is invalid. 2. if the patterns is empty, will take effect on all the domain names. For example: The value is ["google.com", "github.*", "chaos-mes?.org"], will take effect on "google.com", "github.com" and "chaos-mesh.org" +optional
          - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
          - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
            - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
            - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
              - …
            - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
            - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
            - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
            - `nodeSelectors` object — Map of string keys and values that can be used to select nodes. Selector which must match a node's labels, and objects must belong to these selected nodes. +optional
            - `nodes` string[] — Nodes is a set of node name and objects must belong to these nodes. +optional
            - `podPhaseSelectors` string[] — PodPhaseSelectors is a set of condition of a pod at the current time. supported value: Pending / Running / Succeeded / Failed / Unknown +optional
            - `pods` object — Pods is a map of string keys and a set values that used to select pods. The key defines the namespace which pods belong, and the each values is a set of pod names. +optional
          - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
        - `gcpChaos` GithubComChaosMeshChaosMeshApiV1alpha1GCPChaosSpec
          - `action` 'node-stop' | 'node-reset' | 'disk-loss'
          - `deviceNames` string[] — The device name of disks to detach. Needed in disk-loss. +ui:form:when=action=='disk-loss' +optional
          - `duration` string — Duration represents the duration of the chaos action. +optional
          - `instance` string — Instance defines the name of the instance
          - `project` string — Project defines the ID of gcp project.
          - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
          - `secretName` string — SecretName defines the name of kubernetes secret. It is used for GCP credentials. +optional
          - `zone` string — Zone defines the zone of gcp project.
        - `httpChaos` GithubComChaosMeshChaosMeshApiV1alpha1HTTPChaosSpec
          - `abort` boolean — Abort is a rule to abort a http session. +optional
          - `code` integer — Code is a rule to select target by http status code in response. +optional
          - `delay` string — Delay represents the delay of the target request/response. A duration string is a possibly unsigned sequence of decimal numbers, each with optional fraction and a unit suffix, such as "300ms", "2h45m". Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h". +optional
          - `duration` string — Duration represents the duration of the chaos action. +optional
          - `method` string — Method is a rule to select target by http method in request. +optional
          - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
          - `patch` GithubComChaosMeshChaosMeshApiV1alpha1PodHttpChaosPatchActions
            - `body` GithubComChaosMeshChaosMeshApiV1alpha1PodHttpChaosPatchBodyAction
              - …
            - `headers` array[] — Headers is a rule to append http headers of target. For example: `[["Set-Cookie", "<one cookie>"], ["Set-Cookie", "<another cookie>"]]`. +optional
              - …
            - `queries` array[] — Queries is a rule to append uri queries of target(Request only). For example: `[["foo", "bar"], ["foo", "unknown"]]`. +optional
              - …
          - `path` string — Path is a rule to select target by uri path in http request. +optional
          - `port` integer — Port represents the target port to be proxy of.
          - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
          - `replace` GithubComChaosMeshChaosMeshApiV1alpha1PodHttpChaosReplaceActions
            - `body` integer[] — Body is a rule to replace http message body in target. +optional
            - `code` integer — Code is a rule to replace http status code in response. +optional
            - `headers` object — Headers is a rule to replace http headers of target. The key-value pairs represent header name and header value pairs. +optional
            - `method` string — Method is a rule to replace http method in request. +optional
            - `path` string — Path is rule to to replace uri path in http request. +optional
            - `queries` object — Queries is a rule to replace uri queries in http request. For example, with value `{ "foo": "unknown" }`, the `/?foo=bar` will be altered to `/?foo=unknown`, +optional
          - `request_headers` object — RequestHeaders is a rule to select target by http headers in request. The key-value pairs represent header name and header value pairs. +optional
          - `response_headers` object — ResponseHeaders is a rule to select target by http headers in response. The key-value pairs represent header name and header value pairs. +optional
          - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
            - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
            - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
              - …
            - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
            - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
            - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
            - `nodeSelectors` object — Map of string keys and values that can be used to select nodes. Selector which must match a node's labels, and objects must belong to these selected nodes. +optional
            - `nodes` string[] — Nodes is a set of node name and objects must belong to these nodes. +optional
            - `podPhaseSelectors` string[] — PodPhaseSelectors is a set of condition of a pod at the current time. supported value: Pending / Running / Succeeded / Failed / Unknown +optional
            - `pods` object — Pods is a map of string keys and a set values that used to select pods. The key defines the namespace which pods belong, and the each values is a set of pod names. +optional
          - `target` 'Request' | 'Response'
          - `tls` GithubComChaosMeshChaosMeshApiV1alpha1PodHttpChaosTLS
            - `caName` string — CAName represents the data name of ca file in secret, `ca.crt` for example +optional
            - `certName` string — CertName represents the data name of cert file in secret, `tls.crt` for example
            - `keyName` string — KeyName represents the data name of key file in secret, `tls.key` for example
            - `secretName` string — SecretName represents the name of required secret resource
            - `secretNamespace` string — SecretNamespace represents the namespace of required secret resource
          - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
        - `ioChaos` GithubComChaosMeshChaosMeshApiV1alpha1IOChaosSpec
          - `action` 'latency' | 'fault' | 'attrOverride' | 'mistake'
          - `attr` GithubComChaosMeshChaosMeshApiV1alpha1AttrOverrideSpec
            - `atime` GithubComChaosMeshChaosMeshApiV1alpha1Timespec
              - …
            - `blocks` integer — +optional
            - `ctime` GithubComChaosMeshChaosMeshApiV1alpha1Timespec
              - …
            - `gid` integer — +optional
            - `ino` integer — +optional
            - `kind` 'namedPipe' | 'charDevice' | 'blockDevice' | 'directory' | 'regularFile' | 'symlink' | 'socket'
            - `mtime` GithubComChaosMeshChaosMeshApiV1alpha1Timespec
              - …
            - `nlink` integer — +optional
            - `perm` integer — +optional
            - `rdev` integer — +optional
            - `size` integer — +optional
            - `uid` integer — +optional
          - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
          - `delay` string — Delay defines the value of I/O chaos action delay. A delay string is a possibly signed sequence of decimal numbers, each with optional fraction and a unit suffix, such as "300ms". Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h". +ui:form:when=action=='latency' +optional
          - `duration` string — Duration represents the duration of the chaos action. It is required when the action is `PodFailureAction`. A duration string is a possibly signed sequence of decimal numbers, each with optional fraction and a unit suffix, such as "300ms", "-1.5h" or "2h45m". Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h". +optional
          - `errno` integer — Errno defines the error code that returned by I/O action. refer to: https://www-numi.fnal.gov/offline_software/srt_public_context/WebDocs/Errors/unix_system_errors.html +ui:form:when=action=='fault' +optional
          - `methods` GithubComChaosMeshChaosMeshApiV1alpha1IoMethod[] — Methods defines the I/O methods for injecting I/O chaos action. default: all I/O methods. +optional
          - `mistake` GithubComChaosMeshChaosMeshApiV1alpha1MistakeSpec
            - `filling` 'zero' | 'random'
            - `maxLength` integer — Max length of each wrong data segment in bytes +optional +kubebuilder:validation:Minimum=1
            - `maxOccurrences` integer — There will be [1, MaxOccurrences] segments of wrong data. +optional +kubebuilder:validation:Minimum=1
          - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
          - `path` string — Path defines the path of files for injecting I/O chaos action. +optional
          - `percent` integer — Percent defines the percentage of injection errors and provides a number from 0-100. default: 100. +optional +kubebuilder:default=100
          - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
          - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
            - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
            - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
              - …
            - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
            - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
            - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
            - `nodeSelectors` object — Map of string keys and values that can be used to select nodes. Selector which must match a node's labels, and objects must belong to these selected nodes. +optional
            - `nodes` string[] — Nodes is a set of node name and objects must belong to these nodes. +optional
            - `podPhaseSelectors` string[] — PodPhaseSelectors is a set of condition of a pod at the current time. supported value: Pending / Running / Succeeded / Failed / Unknown +optional
            - `pods` object — Pods is a map of string keys and a set values that used to select pods. The key defines the namespace which pods belong, and the each values is a set of pod names. +optional
          - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
          - `volumePath` string — VolumePath represents the mount path of injected volume
        - `jvmChaos` GithubComChaosMeshChaosMeshApiV1alpha1JVMChaosSpec
          - `action` 'latency' | 'return' | 'exception' | 'stress' | 'gc' | 'ruleData' | 'mysql'
          - `class` string — Java class +optional
          - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
          - `cpuCount` integer — the CPU core number needs to use, only set it when action is stress +optional
          - `database` string — the match database default value is "", means match all database
          - `duration` string — Duration represents the duration of the chaos action +optional
          - `exception` string — the exception which needs to throw for action `exception` or the exception message needs to throw in action `mysql` +optional
          - `latency` integer — the latency duration for action 'latency', unit ms or the latency duration in action `mysql` +optional
          - `memType` string — the memory type needs to locate, only set it when action is stress, the value can be 'stack' or 'heap' +optional
          - `method` string — the method in Java class +optional
          - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
          - `mysqlConnectorVersion` string — the version of mysql-connector-java, only support 5.X.X(set to "5") and 8.X.X(set to "8") now
          - `name` string — byteman rule name, should be unique, and will generate one if not set +optional
          - `pid` integer — the pid of Java process which needs to attach
          - `port` integer — the port of agent server, default 9277 +optional
          - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
          - `returnValue` string — the return value for action 'return' +optional
          - `ruleData` string — the byteman rule's data for action 'ruleData' +optional
          - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
            - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
            - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
              - …
            - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
            - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
            - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
            - `nodeSelectors` object — Map of string keys and values that can be used to select nodes. Selector which must match a node's labels, and objects must belong to these selected nodes. +optional
            - `nodes` string[] — Nodes is a set of node name and objects must belong to these nodes. +optional
            - `podPhaseSelectors` string[] — PodPhaseSelectors is a set of condition of a pod at the current time. supported value: Pending / Running / Succeeded / Failed / Unknown +optional
            - `pods` object — Pods is a map of string keys and a set values that used to select pods. The key defines the namespace which pods belong, and the each values is a set of pod names. +optional
          - `sqlType` string — the match sql type default value is "", means match all SQL type. The value can be 'select', 'insert', 'update', 'delete', 'replace'.
          - `table` string — the match table default value is "", means match all table
          - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
        - `kernelChaos` GithubComChaosMeshChaosMeshApiV1alpha1KernelChaosSpec
          - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
          - `duration` string — Duration represents the duration of the chaos action
          - `failKernRequest` GithubComChaosMeshChaosMeshApiV1alpha1FailKernRequest
            - `callchain` GithubComChaosMeshChaosMeshApiV1alpha1Frame[] — Callchain indicate a special call chain, such as: ext4_mount -> mount_subtree -> ... -> should_failslab With an optional set of predicates and an optional set of parameters, which used with predicates. You can read call chan and predicate examples from https://github.com/chaos-mesh/bpfki/tree/develop/examples to learn more. If no special call chain, just keep Callchain empty, which means it will fail at any call chain with slab alloc (eg: kmalloc).
              - …
            - `failtype` integer — FailType indicates what to fail, can be set to '0' / '1' / '2' If `0`, indicates slab to fail (should_failslab) If `1`, indicates alloc_page to fail (should_fail_alloc_page) If `2`, indicates bio to fail (should_fail_bio) You can read: 1. https://www.kernel.org/doc/html/latest/fault-injection/fault-injection.html 2. http://github.com/iovisor/bcc/blob/master/tools/inject_example.txt to learn more +kubebuilder:validation:Maximum=2 +kubebuilder:validation:Minimum=0
            - `headers` string[] — Headers indicates the appropriate kernel headers you need. Eg: "linux/mmzone.h", "linux/blkdev.h" and so on
            - `probability` integer — Probability indicates the fails with probability. If you want 1%, please set this field with 1. +kubebuilder:validation:Minimum=0 +kubebuilder:validation:Maximum=100
            - `times` integer — Times indicates the max times of fails. +kubebuilder:validation:Minimum=0
          - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
          - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
          - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
            - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
            - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
              - …
            - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
            - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
            - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
            - `nodeSelectors` object — Map of string keys and values that can be used to select nodes. Selector which must match a node's labels, and objects must belong to these selected nodes. +optional
            - `nodes` string[] — Nodes is a set of node name and objects must belong to these nodes. +optional
            - `podPhaseSelectors` string[] — PodPhaseSelectors is a set of condition of a pod at the current time. supported value: Pending / Running / Succeeded / Failed / Unknown +optional
            - `pods` object — Pods is a map of string keys and a set values that used to select pods. The key defines the namespace which pods belong, and the each values is a set of pod names. +optional
          - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
        - `name` string
        - `networkChaos` GithubComChaosMeshChaosMeshApiV1alpha1NetworkChaosSpec
          - `action` 'netem' | 'delay' | 'loss' | 'duplicate' | 'corrupt' | 'partition' | 'bandwidth'
          - `bandwidth` GithubComChaosMeshChaosMeshApiV1alpha1BandwidthSpec
            - `buffer` integer — Buffer is the maximum amount of bytes that tokens can be available for instantaneously. +kubebuilder:validation:Minimum=1
            - `limit` integer — Limit is the number of bytes that can be queued waiting for tokens to become available. +kubebuilder:validation:Minimum=1
            - `minburst` integer — Minburst specifies the size of the peakrate bucket. For perfect accuracy, should be set to the MTU of the interface. If a peakrate is needed, but some burstiness is acceptable, this size can be raised. A 3000 byte minburst allows around 3mbit/s of peakrate, given 1000 byte packets. +optional +kubebuilder:validation:Minimum=0
            - `peakrate` integer — Peakrate is the maximum depletion rate of the bucket. The peakrate does not need to be set, it is only necessary if perfect millisecond timescale shaping is required. +optional +kubebuilder:validation:Minimum=0
            - `rate` string — Rate is the speed knob. Allows bit, kbit, mbit, gbit, tbit, bps, kbps, mbps, gbps, tbps unit. bps means bytes per second.
          - `corrupt` GithubComChaosMeshChaosMeshApiV1alpha1CorruptSpec
            - `correlation` string — +optional
            - `corrupt` string
          - `delay` GithubComChaosMeshChaosMeshApiV1alpha1DelaySpec
            - `correlation` string — +optional
            - `jitter` string — +kubebuilder:validation:Pattern="^[0-9]+(\\.[0-9]+)?(ns|us|ms|s|m|h)$" +optional
            - `latency` string — +kubebuilder:validation:Pattern="^[0-9]+(\\.[0-9]+)?(ns|us|ms|s|m|h)$"
            - `reorder` GithubComChaosMeshChaosMeshApiV1alpha1ReorderSpec
              - …
          - `device` string — Device represents the network device to be affected. +optional
          - `direction` 'to' | 'from' | 'both'
          - `duplicate` GithubComChaosMeshChaosMeshApiV1alpha1DuplicateSpec
            - `correlation` string — +optional
            - `duplicate` string
          - `duration` string — Duration represents the duration of the chaos action
          - `externalTargets` string[] — ExternalTargets represents network targets outside k8s +optional
          - `loss` GithubComChaosMeshChaosMeshApiV1alpha1LossSpec
            - `correlation` string — +optional
            - `loss` string
          - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
          - `rate` GithubComChaosMeshChaosMeshApiV1alpha1RateSpec
            - `rate` string — Rate is the speed knob. Allows bit, kbit, mbit, gbit, tbit, bps, kbps, mbps, gbps, tbps unit. bps means bytes per second.
          - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
          - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
            - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
            - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
              - …
            - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
            - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
            - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
            - `nodeSelectors` object — Map of string keys and values that can be used to select nodes. Selector which must match a node's labels, and objects must belong to these selected nodes. +optional
            - `nodes` string[] — Nodes is a set of node name and objects must belong to these nodes. +optional
            - `podPhaseSelectors` string[] — PodPhaseSelectors is a set of condition of a pod at the current time. supported value: Pending / Running / Succeeded / Failed / Unknown +optional
            - `pods` object — Pods is a map of string keys and a set values that used to select pods. The key defines the namespace which pods belong, and the each values is a set of pod names. +optional
          - `target` GithubComChaosMeshChaosMeshApiV1alpha1PodSelector
            - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
            - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
              - …
            - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
          - `targetDevice` string — TargetDevice represents the network device to be affected in target scope. +optional
          - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
        - `physicalmachineChaos` GithubComChaosMeshChaosMeshApiV1alpha1PhysicalMachineChaosSpec
          - `action` string — +kubebuilder:validation:Enum=stress-cpu;stress-mem;disk-read-payload;disk-write-payload;disk-fill;network-corrupt;network-duplicate;network-loss;network-delay;network-partition;network-dns;network-bandwidth;network-flood;network-down;process;jvm-exception;jvm-gc;jvm-latency;jvm-return;jvm-stress;jvm-rule-data;jvm-mysql;clock;redis-expiration;redis-penetration;redis-cacheLimit;redis-restart;redis-stop;kafka-fill;kafka-flood;kafka-io;file-create;file-modify;file-delete;file-rename;file-append;file-replace;vm;user_defined
          - `address` string[] — DEPRECATED: Use Selector instead. Only one of Address and Selector could be specified. +optional
          - `clock` GithubComChaosMeshChaosMeshApiV1alpha1ClockSpec
            - `clock-ids-slice` string — the identifier of the particular clock on which to act. More clock description in linux kernel can be found in man page of clock_getres, clock_gettime, clock_settime. Muti clock ids should be split with ","
            - `pid` integer — the pid of target program.
            - `time-offset` string — specifies the length of time offset.
          - `disk-fill` GithubComChaosMeshChaosMeshApiV1alpha1DiskFillSpec
            - `fill-by-fallocate` boolean — fill disk by fallocate
            - `path` string — specifies the location to fill data in. if path not provided, payload will read/write from/into a temp file, temp file will be deleted after writing
            - `size` string — specifies how many units of data will write into the file path. support unit: c=1, w=2, b=512, kB=1000, K=1024, MB=1000*1000, M=1024*1024, GB=1000*1000*1000, G=1024*1024*1024 BYTES. example : 1M | 512kB
          - `disk-read-payload` GithubComChaosMeshChaosMeshApiV1alpha1DiskPayloadSpec
            - `path` string — specifies the location to fill data in. if path not provided, payload will read/write from/into a temp file, temp file will be deleted after writing
            - `payload-process-num` integer — specifies the number of process work on writing, default 1, only 1-255 is valid value
            - `size` string — specifies how many units of data will write into the file path. support unit: c=1, w=2, b=512, kB=1000, K=1024, MB=1000*1000, M=1024*1024, GB=1000*1000*1000, G=1024*1024*1024 BYTES. example : 1M | 512kB
          - `disk-write-payload` GithubComChaosMeshChaosMeshApiV1alpha1DiskPayloadSpec
            - `path` string — specifies the location to fill data in. if path not provided, payload will read/write from/into a temp file, temp file will be deleted after writing
            - `payload-process-num` integer — specifies the number of process work on writing, default 1, only 1-255 is valid value
            - `size` string — specifies how many units of data will write into the file path. support unit: c=1, w=2, b=512, kB=1000, K=1024, MB=1000*1000, M=1024*1024, GB=1000*1000*1000, G=1024*1024*1024 BYTES. example : 1M | 512kB
          - `duration` string — Duration represents the duration of the chaos action +optional
          - `file-append` GithubComChaosMeshChaosMeshApiV1alpha1FileAppendSpec
            - `count` integer — Count is the number of times to append the data.
            - `data` string — Data is the data for append.
            - `file-name` string — FileName is the name of the file to be created, modified, deleted, renamed, or appended.
          - `file-create` GithubComChaosMeshChaosMeshApiV1alpha1FileCreateSpec
            - `dir-name` string — DirName is the directory name to create or delete.
            - `file-name` string — FileName is the name of the file to be created, modified, deleted, renamed, or appended.
          - `file-delete` GithubComChaosMeshChaosMeshApiV1alpha1FileDeleteSpec
            - `dir-name` string — DirName is the directory name to create or delete.
            - `file-name` string — FileName is the name of the file to be created, modified, deleted, renamed, or appended.
          - `file-modify` GithubComChaosMeshChaosMeshApiV1alpha1FileModifyPrivilegeSpec
            - `file-name` string — FileName is the name of the file to be created, modified, deleted, renamed, or appended.
            - `privilege` integer — Privilege is the file privilege to be set.
          - `file-rename` GithubComChaosMeshChaosMeshApiV1alpha1FileRenameSpec
            - `dest-file` string — DestFile is the name to be renamed.
            - `source-file` string — SourceFile is the name need to be renamed.
          - `file-replace` GithubComChaosMeshChaosMeshApiV1alpha1FileReplaceSpec
            - `dest-string` string — DestStr is the destination string of the file.
            - `file-name` string — FileName is the name of the file to be created, modified, deleted, renamed, or appended.
            - `line` integer — Line is the line number of the file to be replaced.
            - `origin-string` string — OriginStr is the origin string of the file.
          - `http-abort` GithubComChaosMeshChaosMeshApiV1alpha1HTTPAbortSpec
            - `code` string — Code is a rule to select target by http status code in response
            - `method` string — HTTP method
            - `path` string — Match path of Uri with wildcard matches
            - `port` integer — The TCP port that the target service listens on
            - `proxy_ports` integer[] — Composed with one of the port of HTTP connection, we will only attack HTTP connection with port inside proxy_ports
            - `target` string — HTTP target: Request or Response
          - `http-config` GithubComChaosMeshChaosMeshApiV1alpha1HTTPConfigSpec
            - `file_path` string — The config file path
          - `http-delay` GithubComChaosMeshChaosMeshApiV1alpha1HTTPDelaySpec
            - `code` string — Code is a rule to select target by http status code in response
            - `delay` string — Delay represents the delay of the target request/response
            - `method` string — HTTP method
            - `path` string — Match path of Uri with wildcard matches
            - `port` integer — The TCP port that the target service listens on
            - `proxy_ports` integer[] — Composed with one of the port of HTTP connection, we will only attack HTTP connection with port inside proxy_ports
            - `target` string — HTTP target: Request or Response
          - `http-request` GithubComChaosMeshChaosMeshApiV1alpha1HTTPRequestSpec
            - `count` integer — The number of requests to send
            - `enable-conn-pool` boolean — Enable connection pool
            - `url` string — Request to send"
          - `jvm-exception` GithubComChaosMeshChaosMeshApiV1alpha1JVMExceptionSpec
            - `class` string — Java class +optional
            - `exception` string — the exception which needs to throw for action `exception`
            - `method` string — the method in Java class +optional
            - `pid` integer — the pid of Java process which needs to attach
            - `port` integer — the port of agent server, default 9277 +optional
          - `jvm-gc` GithubComChaosMeshChaosMeshApiV1alpha1JVMGCSpec
            - `pid` integer — the pid of Java process which needs to attach
            - `port` integer — the port of agent server, default 9277 +optional
          - `jvm-latency` GithubComChaosMeshChaosMeshApiV1alpha1JVMLatencySpec
            - `class` string — Java class +optional
            - `latency` integer — the latency duration for action 'latency', unit ms
            - `method` string — the method in Java class +optional
            - `pid` integer — the pid of Java process which needs to attach
            - `port` integer — the port of agent server, default 9277 +optional
          - `jvm-mysql` GithubComChaosMeshChaosMeshApiV1alpha1PMJVMMySQLSpec
            - `database` string — the match database default value is "", means match all database
            - `exception` string — The exception which needs to throw for action `exception` or the exception message needs to throw in action `mysql`
            - `latency` integer — The latency duration for action 'latency' or the latency duration in action `mysql`
            - `mysqlConnectorVersion` string — the version of mysql-connector-java, only support 5.X.X(set to "5") and 8.X.X(set to "8") now
            - `pid` integer — the pid of Java process which needs to attach
            - `port` integer — the port of agent server, default 9277 +optional
            - `sqlType` string — the match sql type default value is "", means match all SQL type. The value can be 'select', 'insert', 'update', 'delete', 'replace'.
            - `table` string — the match table default value is "", means match all table
          - `jvm-return` GithubComChaosMeshChaosMeshApiV1alpha1JVMReturnSpec
            - `class` string — Java class +optional
            - `method` string — the method in Java class +optional
            - `pid` integer — the pid of Java process which needs to attach
            - `port` integer — the port of agent server, default 9277 +optional
            - `value` string — the return value for action 'return'
          - `jvm-rule-data` GithubComChaosMeshChaosMeshApiV1alpha1JVMRuleDataSpec
            - `pid` integer — the pid of Java process which needs to attach
            - `port` integer — the port of agent server, default 9277 +optional
            - `rule-data` string — RuleData used to save the rule file's data, will use it when recover
          - `jvm-stress` GithubComChaosMeshChaosMeshApiV1alpha1JVMStressSpec
            - `cpu-count` integer — the CPU core number need to use, only set it when action is stress
            - `mem-type` string — the memory type need to locate, only set it when action is stress, the value can be 'stack' or 'heap'
            - `pid` integer — the pid of Java process which needs to attach
            - `port` integer — the port of agent server, default 9277 +optional
          - `kafka-fill` GithubComChaosMeshChaosMeshApiV1alpha1KafkaFillSpec
            - `host` string — The host of kafka server
            - `maxBytes` integer — The max bytes to fill
            - `messageSize` integer — The size of each message
            - `password` string — The password of kafka client
            - `port` integer — The port of kafka server
            - `reloadCommand` string — The command to reload kafka config
            - `topic` string — The topic to attack
            - `username` string — The username of kafka client
          - `kafka-flood` GithubComChaosMeshChaosMeshApiV1alpha1KafkaFloodSpec
            - `host` string — The host of kafka server
            - `messageSize` integer — The size of each message
            - `password` string — The password of kafka client
            - `port` integer — The port of kafka server
            - `threads` integer — The number of worker threads
            - `topic` string — The topic to attack
            - `username` string — The username of kafka client
          - `kafka-io` GithubComChaosMeshChaosMeshApiV1alpha1KafkaIOSpec
            - `configFile` string — The path of server config
            - `nonReadable` boolean — Make kafka cluster non-readable
            - `nonWritable` boolean — Make kafka cluster non-writable
            - `topic` string — The topic to attack
          - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
          - `network-bandwidth` GithubComChaosMeshChaosMeshApiV1alpha1NetworkBandwidthSpec
            - `buffer` integer — +kubebuilder:validation:Minimum=1
            - `device` string
            - `hostname` string
            - `ip-address` string
            - `limit` integer — +kubebuilder:validation:Minimum=1
            - `minburst` integer
            - `peakrate` integer
            - `rate` string
          - `network-corrupt` GithubComChaosMeshChaosMeshApiV1alpha1NetworkCorruptSpec
            - `correlation` string — correlation is percentage (10 is 10%)
            - `device` string — the network interface to impact
            - `egress-port` string — only impact egress traffic to these destination ports, use a ',' to separate or to indicate the range, such as 80, 8001:8010. it can only be used in conjunction with -p tcp or -p udp
            - `hostname` string — only impact traffic to these hostnames
            - `ip-address` string — only impact egress traffic to these IP addresses
            - `ip-protocol` string — only impact traffic using this IP protocol, supported: tcp, udp, icmp, all
            - `percent` string — percentage of packets to corrupt (10 is 10%)
            - `source-port` string — only impact egress traffic from these source ports, use a ',' to separate or to indicate the range, such as 80, 8001:8010. it can only be used in conjunction with -p tcp or -p udp
          - `network-delay` GithubComChaosMeshChaosMeshApiV1alpha1NetworkDelaySpec
            - `accept-tcp-flags` string — only the packet which match the tcp flag can be accepted, others will be dropped. only set when the IPProtocol is tcp, used for partition.
            - `correlation` string — correlation is percentage (10 is 10%)
            - `device` string — the network interface to impact
            - `egress-port` string — only impact egress traffic to these destination ports, use a ',' to separate or to indicate the range, such as 80, 8001:8010. it can only be used in conjunction with -p tcp or -p udp
            - `hostname` string — only impact traffic to these hostnames
            - `ip-address` string — only impact egress traffic to these IP addresses
            - `ip-protocol` string — only impact traffic using this IP protocol, supported: tcp, udp, icmp, all
            - `jitter` string — jitter time, time units: ns, us (or µs), ms, s, m, h.
            - `latency` string — delay egress time, time units: ns, us (or µs), ms, s, m, h.
            - `source-port` string — only impact egress traffic from these source ports, use a ',' to separate or to indicate the range, such as 80, 8001:8010. it can only be used in conjunction with -p tcp or -p udp
          - `network-dns` GithubComChaosMeshChaosMeshApiV1alpha1NetworkDNSSpec
            - `dns-domain-name` string — map this host to specified IP
            - `dns-ip` string — map specified host to this IP address
            - `dns-server` string — update the DNS server in /etc/resolv.conf with this value
          - `network-down` GithubComChaosMeshChaosMeshApiV1alpha1NetworkDownSpec
            - `device` string — The network interface to impact
            - `duration` string — NIC down time, time units: ns, us (or µs), ms, s, m, h.
          - `network-duplicate` GithubComChaosMeshChaosMeshApiV1alpha1NetworkDuplicateSpec
            - `correlation` string — correlation is percentage (10 is 10%)
            - `device` string — the network interface to impact
            - `egress-port` string — only impact egress traffic to these destination ports, use a ',' to separate or to indicate the range, such as 80, 8001:8010. it can only be used in conjunction with -p tcp or -p udp
            - `hostname` string — only impact traffic to these hostnames
            - `ip-address` string — only impact egress traffic to these IP addresses
            - `ip-protocol` string — only impact traffic using this IP protocol, supported: tcp, udp, icmp, all
            - `percent` string — percentage of packets to duplicate (10 is 10%)
            - `source-port` string — only impact egress traffic from these source ports, use a ',' to separate or to indicate the range, such as 80, 8001:8010. it can only be used in conjunction with -p tcp or -p udp
          - `network-flood` GithubComChaosMeshChaosMeshApiV1alpha1NetworkFloodSpec
            - `duration` string — The number of seconds to run the iperf test
            - `ip-address` string — Generate traffic to this IP address
            - `parallel` integer — The number of iperf parallel client threads to run
            - `port` string — Generate traffic to this port on the IP address
            - `rate` string — The speed of network traffic, allows bps, kbps, mbps, gbps, tbps unit. bps means bytes per second
          - `network-loss` GithubComChaosMeshChaosMeshApiV1alpha1NetworkLossSpec
            - `correlation` string — correlation is percentage (10 is 10%)
            - `device` string — the network interface to impact
            - `egress-port` string — only impact egress traffic to these destination ports, use a ',' to separate or to indicate the range, such as 80, 8001:8010. it can only be used in conjunction with -p tcp or -p udp
            - `hostname` string — only impact traffic to these hostnames
            - `ip-address` string — only impact egress traffic to these IP addresses
            - `ip-protocol` string — only impact traffic using this IP protocol, supported: tcp, udp, icmp, all
            - `percent` string — percentage of packets to loss (10 is 10%)
            - `source-port` string — only impact egress traffic from these source ports, use a ',' to separate or to indicate the range, such as 80, 8001:8010. it can only be used in conjunction with -p tcp or -p udp
          - `network-partition` GithubComChaosMeshChaosMeshApiV1alpha1NetworkPartitionSpec
            - `accept-tcp-flags` string — only the packet which match the tcp flag can be accepted, others will be dropped. only set when the IPProtocol is tcp, used for partition.
            - `device` string — the network interface to impact
            - `direction` string — specifies the partition direction, values can be 'from', 'to'. 'from' means packets coming from the 'IPAddress' or 'Hostname' and going to your server, 'to' means packets originating from your server and going to the 'IPAddress' or 'Hostname'.
            - `hostname` string — only impact traffic to these hostnames
            - `ip-address` string — only impact egress traffic to these IP addresses
            - `ip-protocol` string — only impact egress traffic to these IP addresses
          - `process` GithubComChaosMeshChaosMeshApiV1alpha1ProcessSpec
            - `process` string — the process name or the process ID
            - `recoverCmd` string — the command to be run when recovering experiment
            - `signal` integer — the signal number to send
          - `redis-cacheLimit` GithubComChaosMeshChaosMeshApiV1alpha1RedisCacheLimitSpec
            - `addr` string — The adress of Redis server
            - `cacheSize` string — The size of `maxmemory`
            - `password` string — The password of Redis server
            - `percent` string — Specifies maxmemory as a percentage of the original value
          - `redis-expiration` GithubComChaosMeshChaosMeshApiV1alpha1RedisExpirationSpec
            - `addr` string — The adress of Redis server
            - `expiration` string — The expiration of the keys
            - `key` string — The keys to be expired
            - `option` string — Additional options for `expiration`
            - `password` string — The password of Redis server
          - `redis-penetration` GithubComChaosMeshChaosMeshApiV1alpha1RedisPenetrationSpec
            - `addr` string — The adress of Redis server
            - `password` string — The password of Redis server
            - `requestNum` integer — The number of requests to be sent
          - `redis-restart` GithubComChaosMeshChaosMeshApiV1alpha1RedisSentinelRestartSpec
            - `addr` string — The adress of Redis server
            - `conf` string — The path of Sentinel conf
            - `flushConfig` boolean — The control flag determines whether to flush config
            - `password` string — The password of Redis server
            - `redisPath` boolean — The path of `redis-server` command-line tool
          - `redis-stop` GithubComChaosMeshChaosMeshApiV1alpha1RedisSentinelStopSpec
            - `addr` string — The adress of Redis server
            - `conf` string — The path of Sentinel conf
            - `flushConfig` boolean — The control flag determines whether to flush config
            - `password` string — The password of Redis server
            - `redisPath` boolean — The path of `redis-server` command-line tool
          - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
          - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PhysicalMachineSelectorSpec
            - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
            - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
              - …
            - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
            - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
            - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
            - `physicalMachines` object — PhysicalMachines is a map of string keys and a set values that used to select physical machines. The key defines the namespace which physical machine belong, and each value is a set of physical machine names. +optional
          - `stress-cpu` GithubComChaosMeshChaosMeshApiV1alpha1StressCPUSpec
            - `load` integer — specifies P percent loading per CPU worker. 0 is effectively a sleep (no load) and 100 is full loading.
            - `options` string[] — extend stress-ng options
            - `workers` integer — specifies N workers to apply the stressor.
          - `stress-mem` GithubComChaosMeshChaosMeshApiV1alpha1StressMemorySpec
            - `options` string[] — extend stress-ng options
            - `size` string — specifies N bytes consumed per vm worker, default is the total available memory. One can specify the size as % of total available memory or in units of B, KB/KiB, MB/MiB, GB/GiB, TB/TiB..
          - `user_defined` GithubComChaosMeshChaosMeshApiV1alpha1UserDefinedSpec
            - `attackCmd` string — The command to be executed when attack
            - `recoverCmd` string — The command to be executed when recover
          - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of physical machines to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of physical machines the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
          - `vm` GithubComChaosMeshChaosMeshApiV1alpha1VMSpec
            - `vm-name` string — The name of the VM to be injected
        - `podChaos` GithubComChaosMeshChaosMeshApiV1alpha1PodChaosSpec
          - `action` 'pod-kill' | 'pod-failure' | 'container-kill'
          - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
          - `duration` string — Duration represents the duration of the chaos action. It is required when the action is `PodFailureAction`. A duration string is a possibly signed sequence of decimal numbers, each with optional fraction and a unit suffix, such as "300ms", "-1.5h" or "2h45m". Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h". +optional
          - `gracePeriod` integer — GracePeriod is used in pod-kill action. It represents the duration in seconds before the pod should be deleted. Value must be non-negative integer. The default value is zero that indicates delete immediately. +optional +kubebuilder:validation:Minimum=0
          - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
          - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
          - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
            - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
            - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
              - …
            - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
            - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
            - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
            - `nodeSelectors` object — Map of string keys and values that can be used to select nodes. Selector which must match a node's labels, and objects must belong to these selected nodes. +optional
            - `nodes` string[] — Nodes is a set of node name and objects must belong to these nodes. +optional
            - `podPhaseSelectors` string[] — PodPhaseSelectors is a set of condition of a pod at the current time. supported value: Pending / Running / Succeeded / Failed / Unknown +optional
            - `pods` object — Pods is a map of string keys and a set values that used to select pods. The key defines the namespace which pods belong, and the each values is a set of pod names. +optional
          - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
        - `schedule` GithubComChaosMeshChaosMeshApiV1alpha1ChaosOnlyScheduleSpec
          - `awsChaos` GithubComChaosMeshChaosMeshApiV1alpha1AWSChaosSpec
            - `action` 'ec2-stop' | 'ec2-restart' | 'detach-volume'
            - `awsRegion` string — AWSRegion defines the region of aws.
            - `deviceName` string — DeviceName indicates the name of the device. Needed in detach-volume. +ui:form:when=action=='detach-volume' +optional
            - `duration` string — Duration represents the duration of the chaos action. +optional
            - `ec2Instance` string — Ec2Instance indicates the ID of the ec2 instance.
            - `endpoint` string — Endpoint indicates the endpoint of the aws server. Just used it in test now. +ui:form:ignore +optional
            - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
            - `secretName` string — SecretName defines the name of kubernetes secret. +optional
            - `volumeID` string — EbsVolume indicates the ID of the EBS volume. Needed in detach-volume. +ui:form:when=action=='detach-volume' +optional
          - `azureChaos` GithubComChaosMeshChaosMeshApiV1alpha1AzureChaosSpec
            - `action` 'vm-stop' | 'vm-restart' | 'disk-detach'
            - `diskName` string — DiskName indicates the name of the disk. Needed in disk-detach. +optional
            - `duration` string — Duration represents the duration of the chaos action. +optional
            - `lun` integer — LUN indicates the Logical Unit Number of the data disk. Needed in disk-detach. +optional
            - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
            - `resourceGroupName` string — ResourceGroupName defines the name of ResourceGroup
            - `secretName` string — SecretName defines the name of kubernetes secret. It is used for Azure credentials. +optional
            - `subscriptionID` string — SubscriptionID defines the id of Azure subscription.
            - `vmName` string — VMName defines the name of Virtual Machine
          - `blockChaos` GithubComChaosMeshChaosMeshApiV1alpha1BlockChaosSpec
            - `action` 'delay'
            - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
            - `delay` GithubComChaosMeshChaosMeshApiV1alpha1BlockDelaySpec
              - …
            - `duration` string — Duration represents the duration of the chaos action. +optional
            - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
            - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
            - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
              - …
            - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
            - `volumeName` string
          - `concurrencyPolicy` string — +optional +kubebuilder:validation:Enum=Forbid;Allow
          - `dnsChaos` GithubComChaosMeshChaosMeshApiV1alpha1DNSChaosSpec
            - `action` 'error' | 'random'
            - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
            - `duration` string — Duration represents the duration of the chaos action
            - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
            - `patterns` string[] — Choose which domain names to take effect, support the placeholder ? and wildcard *, or the Specified domain name. Note: 1. The wildcard * must be at the end of the string. For example, chaos-*.org is invalid. 2. if the patterns is empty, will take effect on all the domain names. For example: The value is ["google.com", "github.*", "chaos-mes?.org"], will take effect on "google.com", "github.com" and "chaos-mesh.org" +optional
            - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
            - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
              - …
            - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
          - `gcpChaos` GithubComChaosMeshChaosMeshApiV1alpha1GCPChaosSpec
            - `action` 'node-stop' | 'node-reset' | 'disk-loss'
            - `deviceNames` string[] — The device name of disks to detach. Needed in disk-loss. +ui:form:when=action=='disk-loss' +optional
            - `duration` string — Duration represents the duration of the chaos action. +optional
            - `instance` string — Instance defines the name of the instance
            - `project` string — Project defines the ID of gcp project.
            - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
            - `secretName` string — SecretName defines the name of kubernetes secret. It is used for GCP credentials. +optional
            - `zone` string — Zone defines the zone of gcp project.
          - `historyLimit` integer — +optional +kubebuilder:validation:Minimum=1
          - `httpChaos` GithubComChaosMeshChaosMeshApiV1alpha1HTTPChaosSpec
            - `abort` boolean — Abort is a rule to abort a http session. +optional
            - `code` integer — Code is a rule to select target by http status code in response. +optional
            - `delay` string — Delay represents the delay of the target request/response. A duration string is a possibly unsigned sequence of decimal numbers, each with optional fraction and a unit suffix, such as "300ms", "2h45m". Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h". +optional
            - `duration` string — Duration represents the duration of the chaos action. +optional
            - `method` string — Method is a rule to select target by http method in request. +optional
            - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
            - `patch` GithubComChaosMeshChaosMeshApiV1alpha1PodHttpChaosPatchActions
              - …
            - `path` string — Path is a rule to select target by uri path in http request. +optional
            - `port` integer — Port represents the target port to be proxy of.
            - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
            - `replace` GithubComChaosMeshChaosMeshApiV1alpha1PodHttpChaosReplaceActions
              - …
            - `request_headers` object — RequestHeaders is a rule to select target by http headers in request. The key-value pairs represent header name and header value pairs. +optional
            - `response_headers` object — ResponseHeaders is a rule to select target by http headers in response. The key-value pairs represent header name and header value pairs. +optional
            - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
              - …
            - `target` 'Request' | 'Response'
            - `tls` GithubComChaosMeshChaosMeshApiV1alpha1PodHttpChaosTLS
              - …
            - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
          - `ioChaos` GithubComChaosMeshChaosMeshApiV1alpha1IOChaosSpec
            - `action` 'latency' | 'fault' | 'attrOverride' | 'mistake'
            - `attr` GithubComChaosMeshChaosMeshApiV1alpha1AttrOverrideSpec
              - …
            - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
            - `delay` string — Delay defines the value of I/O chaos action delay. A delay string is a possibly signed sequence of decimal numbers, each with optional fraction and a unit suffix, such as "300ms". Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h". +ui:form:when=action=='latency' +optional
            - `duration` string — Duration represents the duration of the chaos action. It is required when the action is `PodFailureAction`. A duration string is a possibly signed sequence of decimal numbers, each with optional fraction and a unit suffix, such as "300ms", "-1.5h" or "2h45m". Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h". +optional
            - `errno` integer — Errno defines the error code that returned by I/O action. refer to: https://www-numi.fnal.gov/offline_software/srt_public_context/WebDocs/Errors/unix_system_errors.html +ui:form:when=action=='fault' +optional
            - `methods` GithubComChaosMeshChaosMeshApiV1alpha1IoMethod[] — Methods defines the I/O methods for injecting I/O chaos action. default: all I/O methods. +optional
            - `mistake` GithubComChaosMeshChaosMeshApiV1alpha1MistakeSpec
              - …
            - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
            - `path` string — Path defines the path of files for injecting I/O chaos action. +optional
            - `percent` integer — Percent defines the percentage of injection errors and provides a number from 0-100. default: 100. +optional +kubebuilder:default=100
            - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
            - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
              - …
            - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
            - `volumePath` string — VolumePath represents the mount path of injected volume
          - `jvmChaos` GithubComChaosMeshChaosMeshApiV1alpha1JVMChaosSpec
            - `action` 'latency' | 'return' | 'exception' | 'stress' | 'gc' | 'ruleData' | 'mysql'
            - `class` string — Java class +optional
            - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
            - `cpuCount` integer — the CPU core number needs to use, only set it when action is stress +optional
            - `database` string — the match database default value is "", means match all database
            - `duration` string — Duration represents the duration of the chaos action +optional
            - `exception` string — the exception which needs to throw for action `exception` or the exception message needs to throw in action `mysql` +optional
            - `latency` integer — the latency duration for action 'latency', unit ms or the latency duration in action `mysql` +optional
            - `memType` string — the memory type needs to locate, only set it when action is stress, the value can be 'stack' or 'heap' +optional
            - `method` string — the method in Java class +optional
            - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
            - `mysqlConnectorVersion` string — the version of mysql-connector-java, only support 5.X.X(set to "5") and 8.X.X(set to "8") now
            - `name` string — byteman rule name, should be unique, and will generate one if not set +optional
            - `pid` integer — the pid of Java process which needs to attach
            - `port` integer — the port of agent server, default 9277 +optional
            - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
            - `returnValue` string — the return value for action 'return' +optional
            - `ruleData` string — the byteman rule's data for action 'ruleData' +optional
            - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
              - …
            - `sqlType` string — the match sql type default value is "", means match all SQL type. The value can be 'select', 'insert', 'update', 'delete', 'replace'.
            - `table` string — the match table default value is "", means match all table
            - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
          - `kernelChaos` GithubComChaosMeshChaosMeshApiV1alpha1KernelChaosSpec
            - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
            - `duration` string — Duration represents the duration of the chaos action
            - `failKernRequest` GithubComChaosMeshChaosMeshApiV1alpha1FailKernRequest
              - …
            - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
            - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
            - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
              - …
            - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
          - `networkChaos` GithubComChaosMeshChaosMeshApiV1alpha1NetworkChaosSpec
            - `action` 'netem' | 'delay' | 'loss' | 'duplicate' | 'corrupt' | 'partition' | 'bandwidth'
            - `bandwidth` GithubComChaosMeshChaosMeshApiV1alpha1BandwidthSpec
              - …
            - `corrupt` GithubComChaosMeshChaosMeshApiV1alpha1CorruptSpec
              - …
            - `delay` GithubComChaosMeshChaosMeshApiV1alpha1DelaySpec
              - …
            - `device` string — Device represents the network device to be affected. +optional
            - `direction` 'to' | 'from' | 'both'
            - `duplicate` GithubComChaosMeshChaosMeshApiV1alpha1DuplicateSpec
              - …
            - `duration` string — Duration represents the duration of the chaos action
            - `externalTargets` string[] — ExternalTargets represents network targets outside k8s +optional
            - `loss` GithubComChaosMeshChaosMeshApiV1alpha1LossSpec
              - …
            - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
            - `rate` GithubComChaosMeshChaosMeshApiV1alpha1RateSpec
              - …
            - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
            - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
              - …
            - `target` GithubComChaosMeshChaosMeshApiV1alpha1PodSelector
              - …
            - `targetDevice` string — TargetDevice represents the network device to be affected in target scope. +optional
            - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
          - `physicalmachineChaos` GithubComChaosMeshChaosMeshApiV1alpha1PhysicalMachineChaosSpec
            - `action` string — +kubebuilder:validation:Enum=stress-cpu;stress-mem;disk-read-payload;disk-write-payload;disk-fill;network-corrupt;network-duplicate;network-loss;network-delay;network-partition;network-dns;network-bandwidth;network-flood;network-down;process;jvm-exception;jvm-gc;jvm-latency;jvm-return;jvm-stress;jvm-rule-data;jvm-mysql;clock;redis-expiration;redis-penetration;redis-cacheLimit;redis-restart;redis-stop;kafka-fill;kafka-flood;kafka-io;file-create;file-modify;file-delete;file-rename;file-append;file-replace;vm;user_defined
            - `address` string[] — DEPRECATED: Use Selector instead. Only one of Address and Selector could be specified. +optional
            - `clock` GithubComChaosMeshChaosMeshApiV1alpha1ClockSpec
              - …
            - `disk-fill` GithubComChaosMeshChaosMeshApiV1alpha1DiskFillSpec
              - …
            - `disk-read-payload` GithubComChaosMeshChaosMeshApiV1alpha1DiskPayloadSpec
              - …
            - `disk-write-payload` GithubComChaosMeshChaosMeshApiV1alpha1DiskPayloadSpec
              - …
            - `duration` string — Duration represents the duration of the chaos action +optional
            - `file-append` GithubComChaosMeshChaosMeshApiV1alpha1FileAppendSpec
              - …
            - `file-create` GithubComChaosMeshChaosMeshApiV1alpha1FileCreateSpec
              - …
            - `file-delete` GithubComChaosMeshChaosMeshApiV1alpha1FileDeleteSpec
              - …
            - `file-modify` GithubComChaosMeshChaosMeshApiV1alpha1FileModifyPrivilegeSpec
              - …
            - `file-rename` GithubComChaosMeshChaosMeshApiV1alpha1FileRenameSpec
              - …
            - `file-replace` GithubComChaosMeshChaosMeshApiV1alpha1FileReplaceSpec
              - …
            - `http-abort` GithubComChaosMeshChaosMeshApiV1alpha1HTTPAbortSpec
              - …
            - `http-config` GithubComChaosMeshChaosMeshApiV1alpha1HTTPConfigSpec
              - …
            - `http-delay` GithubComChaosMeshChaosMeshApiV1alpha1HTTPDelaySpec
              - …
            - `http-request` GithubComChaosMeshChaosMeshApiV1alpha1HTTPRequestSpec
              - …
            - `jvm-exception` GithubComChaosMeshChaosMeshApiV1alpha1JVMExceptionSpec
              - …
            - `jvm-gc` GithubComChaosMeshChaosMeshApiV1alpha1JVMGCSpec
              - …
            - `jvm-latency` GithubComChaosMeshChaosMeshApiV1alpha1JVMLatencySpec
              - …
            - `jvm-mysql` GithubComChaosMeshChaosMeshApiV1alpha1PMJVMMySQLSpec
              - …
            - `jvm-return` GithubComChaosMeshChaosMeshApiV1alpha1JVMReturnSpec
              - …
            - `jvm-rule-data` GithubComChaosMeshChaosMeshApiV1alpha1JVMRuleDataSpec
              - …
            - `jvm-stress` GithubComChaosMeshChaosMeshApiV1alpha1JVMStressSpec
              - …
            - `kafka-fill` GithubComChaosMeshChaosMeshApiV1alpha1KafkaFillSpec
              - …
            - `kafka-flood` GithubComChaosMeshChaosMeshApiV1alpha1KafkaFloodSpec
              - …
            - `kafka-io` GithubComChaosMeshChaosMeshApiV1alpha1KafkaIOSpec
              - …
            - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
            - `network-bandwidth` GithubComChaosMeshChaosMeshApiV1alpha1NetworkBandwidthSpec
              - …
            - `network-corrupt` GithubComChaosMeshChaosMeshApiV1alpha1NetworkCorruptSpec
              - …
            - `network-delay` GithubComChaosMeshChaosMeshApiV1alpha1NetworkDelaySpec
              - …
            - `network-dns` GithubComChaosMeshChaosMeshApiV1alpha1NetworkDNSSpec
              - …
            - `network-down` GithubComChaosMeshChaosMeshApiV1alpha1NetworkDownSpec
              - …
            - `network-duplicate` GithubComChaosMeshChaosMeshApiV1alpha1NetworkDuplicateSpec
              - …
            - `network-flood` GithubComChaosMeshChaosMeshApiV1alpha1NetworkFloodSpec
              - …
            - `network-loss` GithubComChaosMeshChaosMeshApiV1alpha1NetworkLossSpec
              - …
            - `network-partition` GithubComChaosMeshChaosMeshApiV1alpha1NetworkPartitionSpec
              - …
            - `process` GithubComChaosMeshChaosMeshApiV1alpha1ProcessSpec
              - …
            - `redis-cacheLimit` GithubComChaosMeshChaosMeshApiV1alpha1RedisCacheLimitSpec
              - …
            - `redis-expiration` GithubComChaosMeshChaosMeshApiV1alpha1RedisExpirationSpec
              - …
            - `redis-penetration` GithubComChaosMeshChaosMeshApiV1alpha1RedisPenetrationSpec
              - …
            - `redis-restart` GithubComChaosMeshChaosMeshApiV1alpha1RedisSentinelRestartSpec
              - …
            - `redis-stop` GithubComChaosMeshChaosMeshApiV1alpha1RedisSentinelStopSpec
              - …
            - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
            - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PhysicalMachineSelectorSpec
              - …
            - `stress-cpu` GithubComChaosMeshChaosMeshApiV1alpha1StressCPUSpec
              - …
            - `stress-mem` GithubComChaosMeshChaosMeshApiV1alpha1StressMemorySpec
              - …
            - `user_defined` GithubComChaosMeshChaosMeshApiV1alpha1UserDefinedSpec
              - …
            - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of physical machines to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of physical machines the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
            - `vm` GithubComChaosMeshChaosMeshApiV1alpha1VMSpec
              - …
          - `podChaos` GithubComChaosMeshChaosMeshApiV1alpha1PodChaosSpec
            - `action` 'pod-kill' | 'pod-failure' | 'container-kill'
            - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
            - `duration` string — Duration represents the duration of the chaos action. It is required when the action is `PodFailureAction`. A duration string is a possibly signed sequence of decimal numbers, each with optional fraction and a unit suffix, such as "300ms", "-1.5h" or "2h45m". Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h". +optional
            - `gracePeriod` integer — GracePeriod is used in pod-kill action. It represents the duration in seconds before the pod should be deleted. Value must be non-negative integer. The default value is zero that indicates delete immediately. +optional +kubebuilder:validation:Minimum=0
            - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
            - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
            - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
              - …
            - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
          - `schedule` string
          - `startingDeadlineSeconds` integer — +optional +nullable +kubebuilder:validation:Minimum=0
          - `stressChaos` GithubComChaosMeshChaosMeshApiV1alpha1StressChaosSpec
            - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
            - `duration` string — Duration represents the duration of the chaos action +optional
            - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
            - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
            - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
              - …
            - `stressngStressors` string — StressngStressors defines plenty of stressors just like `Stressors` except that it's an experimental feature and more powerful. You can define stressors in `stress-ng` (see also `man stress-ng`) dialect, however not all of the supported stressors are well tested. It maybe retired in later releases. You should always use `Stressors` to define the stressors and use this only when you want more stressors unsupported by `Stressors`. When both `StressngStressors` and `Stressors` are defined, `StressngStressors` wins. +optional
            - `stressors` GithubComChaosMeshChaosMeshApiV1alpha1Stressors
              - …
            - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
          - `timeChaos` GithubComChaosMeshChaosMeshApiV1alpha1TimeChaosSpec
            - `clockIds` string[] — ClockIds defines all affected clock id All available options are ["CLOCK_REALTIME","CLOCK_MONOTONIC","CLOCK_PROCESS_CPUTIME_ID","CLOCK_THREAD_CPUTIME_ID", "CLOCK_MONOTONIC_RAW","CLOCK_REALTIME_COARSE","CLOCK_MONOTONIC_COARSE","CLOCK_BOOTTIME","CLOCK_REALTIME_ALARM", "CLOCK_BOOTTIME_ALARM"] Default value is ["CLOCK_REALTIME"]
            - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
            - `duration` string — Duration represents the duration of the chaos action
            - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
            - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
            - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
              - …
            - `timeOffset` string — TimeOffset defines the delta time of injected program. It's a possibly signed sequence of decimal numbers, such as "300ms", "-1.5h" or "2h45m". Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h".
            - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
          - `type` 'AWSChaos' | 'AzureChaos' | 'BlockChaos' | 'DNSChaos' | 'GCPChaos' | 'HTTPChaos' | 'IOChaos' | 'JVMChaos' | 'KernelChaos' | 'NetworkChaos' | 'PhysicalMachineChaos' | 'PodChaos' | 'StressChaos' | 'TimeChaos' | 'Workflow'
        - `statusCheck` GithubComChaosMeshChaosMeshApiV1alpha1StatusCheckSpec
          - `duration` string — Duration defines the duration of the whole status check if the number of failed execution does not exceed the failure threshold. Duration is available to both `Synchronous` and `Continuous` mode. A duration string is a possibly signed sequence of decimal numbers, each with optional fraction and a unit suffix, such as "300ms", "-1.5h" or "2h45m". Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h". +optional
          - `failureThreshold` integer — FailureThreshold defines the minimum consecutive failure for the status check to be considered failed. +optional +kubebuilder:default=3 +kubebuilder:validation:Minimum=1
          - `http` GithubComChaosMeshChaosMeshApiV1alpha1HTTPStatusCheck
            - `body` string — +optional
            - `criteria` GithubComChaosMeshChaosMeshApiV1alpha1HTTPCriteria
              - …
            - `headers` HttpHeader
            - `method` string — +optional +kubebuilder:validation:Enum=GET;POST +kubebuilder:default=GET
            - `url` string
          - `intervalSeconds` integer — IntervalSeconds defines how often (in seconds) to perform an execution of status check. +optional +kubebuilder:default=10 +kubebuilder:validation:Minimum=1
          - `mode` 'Synchronous' | 'Continuous'
          - `recordsHistoryLimit` integer — RecordsHistoryLimit defines the number of record to retain. +optional +kubebuilder:default=100 +kubebuilder:validation:Minimum=1 +kubebuilder:validation:Maximum=1000
          - `successThreshold` integer — SuccessThreshold defines the minimum consecutive successes for the status check to be considered successful. SuccessThreshold only works for `Synchronous` mode. +optional +kubebuilder:default=1 +kubebuilder:validation:Minimum=1
          - `timeoutSeconds` integer — TimeoutSeconds defines the number of seconds after which an execution of status check times out. +optional +kubebuilder:default=1 +kubebuilder:validation:Minimum=1
          - `type` 'HTTP'
        - `stressChaos` GithubComChaosMeshChaosMeshApiV1alpha1StressChaosSpec
          - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
          - `duration` string — Duration represents the duration of the chaos action +optional
          - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
          - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
          - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
            - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
            - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
              - …
            - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
            - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
            - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
            - `nodeSelectors` object — Map of string keys and values that can be used to select nodes. Selector which must match a node's labels, and objects must belong to these selected nodes. +optional
            - `nodes` string[] — Nodes is a set of node name and objects must belong to these nodes. +optional
            - `podPhaseSelectors` string[] — PodPhaseSelectors is a set of condition of a pod at the current time. supported value: Pending / Running / Succeeded / Failed / Unknown +optional
            - `pods` object — Pods is a map of string keys and a set values that used to select pods. The key defines the namespace which pods belong, and the each values is a set of pod names. +optional
          - `stressngStressors` string — StressngStressors defines plenty of stressors just like `Stressors` except that it's an experimental feature and more powerful. You can define stressors in `stress-ng` (see also `man stress-ng`) dialect, however not all of the supported stressors are well tested. It maybe retired in later releases. You should always use `Stressors` to define the stressors and use this only when you want more stressors unsupported by `Stressors`. When both `StressngStressors` and `Stressors` are defined, `StressngStressors` wins. +optional
          - `stressors` GithubComChaosMeshChaosMeshApiV1alpha1Stressors
            - `cpu` GithubComChaosMeshChaosMeshApiV1alpha1CPUStressor
              - …
            - `memory` GithubComChaosMeshChaosMeshApiV1alpha1MemoryStressor
              - …
          - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
        - `task` GithubComChaosMeshChaosMeshApiV1alpha1Task
          - `container` K8sIoApiCoreV1Container
            - `args` string[] — Arguments to the entrypoint. The container image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell +optional +listType=atomic
            - `command` string[] — Entrypoint array. Not executed within a shell. The container image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell +optional +listType=atomic
            - `env` V1EnvVar[] — List of environment variables to set in the container. Cannot be updated. +optional +patchMergeKey=name +patchStrategy=merge +listType=map +listMapKey=name
              - …
            - `envFrom` V1EnvFromSource[] — List of sources to populate environment variables in the container. The keys defined within a source may consist of any printable ASCII characters except '='. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated. +optional +listType=atomic
              - …
            - `image` string — Container image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets. +optional
            - `imagePullPolicy` 'Always' | 'Never' | 'IfNotPresent'
            - `lifecycle` V1Lifecycle
              - …
            - `livenessProbe` V1Probe
              - …
            - `name` string — Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.
            - `ports` V1ContainerPort[] — List of ports to expose from the container. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default "0.0.0.0" address inside a container will be accessible from the network. Modifying this array with strategic merge patch may corrupt the data. For more information See https://github.com/kubernetes/kubernetes/issues/108255. Cannot be updated. +optional +patchMergeKey=containerPort +patchStrategy=merge +listType=map +listMapKey=containerPort +listMapKey=protocol
              - …
            - `readinessProbe` V1Probe
              - …
            - `resizePolicy` V1ContainerResizePolicy[] — Resources resize policy for the container. This field cannot be set on ephemeral containers. +featureGate=InPlacePodVerticalScaling +optional +listType=atomic
              - …
            - `resources` V1ResourceRequirements
              - …
            - `restartPolicy` 'Always' | 'Never' | 'OnFailure'
            - `restartPolicyRules` V1ContainerRestartRule[] — Represents a list of rules to be checked to determine if the container should be restarted on exit. The rules are evaluated in order. Once a rule matches a container exit condition, the remaining rules are ignored. If no rule matches the container exit condition, the Container-level restart policy determines the whether the container is restarted or not. Constraints on the rules: - At most 20 rules are allowed. - Rules can have the same action. - Identical rules are not forbidden in validations. When rules are specified, container MUST set RestartPolicy explicitly even it if matches the Pod's RestartPolicy. +featureGate=ContainerRestartRules +optional +listType=atomic
              - …
            - `securityContext` V1SecurityContext
              - …
            - `startupProbe` V1Probe
              - …
            - `stdin` boolean — Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false. +optional
            - `stdinOnce` boolean — Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false +optional
            - `terminationMessagePath` string — Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated. +optional
            - `terminationMessagePolicy` 'File' | 'FallbackToLogsOnError'
            - `tty` boolean — Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false. +optional
            - `volumeDevices` V1VolumeDevice[] — volumeDevices is the list of block devices to be used by the container. +patchMergeKey=devicePath +patchStrategy=merge +listType=map +listMapKey=devicePath +optional
              - …
            - `volumeMounts` V1VolumeMount[] — Pod volumes to mount into the container's filesystem. Cannot be updated. +optional +patchMergeKey=mountPath +patchStrategy=merge +listType=map +listMapKey=mountPath
              - …
            - `workingDir` string — Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated. +optional
          - `labels` object
          - `volumes` V1Volume[] — Volumes is a list of volumes that can be mounted by containers in a template. +patchStrategy=merge +patchMergeKey=name
            - `awsElasticBlockStore` V1AWSElasticBlockStoreVolumeSource
              - …
            - `azureDisk` V1AzureDiskVolumeSource
              - …
            - `azureFile` V1AzureFileVolumeSource
              - …
            - `cephfs` V1CephFSVolumeSource
              - …
            - `cinder` V1CinderVolumeSource
              - …
            - `configMap` V1ConfigMapVolumeSource
              - …
            - `csi` V1CSIVolumeSource
              - …
            - `downwardAPI` V1DownwardAPIVolumeSource
              - …
            - `emptyDir` V1EmptyDirVolumeSource
              - …
            - `ephemeral` V1EphemeralVolumeSource
              - …
            - `fc` V1FCVolumeSource
              - …
            - `flexVolume` V1FlexVolumeSource
              - …
            - `flocker` V1FlockerVolumeSource
              - …
            - `gcePersistentDisk` V1GCEPersistentDiskVolumeSource
              - …
            - `gitRepo` V1GitRepoVolumeSource
              - …
            - `glusterfs` V1GlusterfsVolumeSource
              - …
            - `hostPath` V1HostPathVolumeSource
              - …
            - `image` V1ImageVolumeSource
              - …
            - `iscsi` V1ISCSIVolumeSource
              - …
            - `name` string — name of the volume. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
            - `nfs` V1NFSVolumeSource
              - …
            - `persistentVolumeClaim` V1PersistentVolumeClaimVolumeSource
              - …
            - `photonPersistentDisk` V1PhotonPersistentDiskVolumeSource
              - …
            - `portworxVolume` V1PortworxVolumeSource
              - …
            - `projected` V1ProjectedVolumeSource
              - …
            - `quobyte` V1QuobyteVolumeSource
              - …
            - `rbd` V1RBDVolumeSource
              - …
            - `scaleIO` V1ScaleIOVolumeSource
              - …
            - `secret` V1SecretVolumeSource
              - …
            - `storageos` V1StorageOSVolumeSource
              - …
            - `vsphereVolume` V1VsphereVirtualDiskVolumeSource
              - …
        - `templateType` 'Task' | 'Serial' | 'Parallel' | 'Suspend' | 'StatusCheck' | 'Schedule' | 'AWSChaos' | 'AzureChaos' | 'BlockChaos' | 'DNSChaos' | 'GCPChaos' | 'HTTPChaos' | 'IOChaos' | 'JVMChaos' | 'KernelChaos' | 'NetworkChaos' | 'PhysicalMachineChaos' | 'PodChaos' | 'StressChaos' | 'TimeChaos'
        - `timeChaos` GithubComChaosMeshChaosMeshApiV1alpha1TimeChaosSpec
          - `clockIds` string[] — ClockIds defines all affected clock id All available options are ["CLOCK_REALTIME","CLOCK_MONOTONIC","CLOCK_PROCESS_CPUTIME_ID","CLOCK_THREAD_CPUTIME_ID", "CLOCK_MONOTONIC_RAW","CLOCK_REALTIME_COARSE","CLOCK_MONOTONIC_COARSE","CLOCK_BOOTTIME","CLOCK_REALTIME_ALARM", "CLOCK_BOOTTIME_ALARM"] Default value is ["CLOCK_REALTIME"]
          - `containerNames` string[] — ContainerNames indicates list of the name of affected container. If not set, the first container will be injected +optional
          - `duration` string — Duration represents the duration of the chaos action
          - `mode` 'one' | 'all' | 'fixed' | 'fixed-percent' | 'random-max-percent'
          - `remoteCluster` string — RemoteCluster represents the remote cluster where the chaos will be deployed +optional
          - `selector` GithubComChaosMeshChaosMeshApiV1alpha1PodSelectorSpec
            - `annotationSelectors` object — Map of string keys and values that can be used to select objects. A selector based on annotations. +optional
            - `expressionSelectors` V1LabelSelectorRequirement[] — a slice of label selector expressions that can be used to select objects. A list of selectors based on set-based label expressions. +ui:form:ignore +optional
              - …
            - `fieldSelectors` object — Map of string keys and values that can be used to select objects. A selector based on fields. +optional
            - `labelSelectors` object — Map of string keys and values that can be used to select objects. A selector based on labels. +optional
            - `namespaces` string[] — Namespaces is a set of namespace to which objects belong. +optional
            - `nodeSelectors` object — Map of string keys and values that can be used to select nodes. Selector which must match a node's labels, and objects must belong to these selected nodes. +optional
            - `nodes` string[] — Nodes is a set of node name and objects must belong to these nodes. +optional
            - `podPhaseSelectors` string[] — PodPhaseSelectors is a set of condition of a pod at the current time. supported value: Pending / Running / Succeeded / Failed / Unknown +optional
            - `pods` object — Pods is a map of string keys and a set values that used to select pods. The key defines the namespace which pods belong, and the each values is a set of pod names. +optional
          - `timeOffset` string — TimeOffset defines the delta time of injected program. It's a possibly signed sequence of decimal numbers, such as "300ms", "-1.5h" or "2h45m". Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h".
          - `value` string — Value is required when the mode is set to `FixedMode` / `FixedPercentMode` / `RandomMaxPercentMode`. If `FixedMode`, provide an integer of pods to do chaos action. If `FixedPercentMode`, provide a number from 0-100 to specify the percent of pods the server can do chaos action. IF `RandomMaxPercentMode`, provide a number from 0-100 to specify the max percent of pods to do chaos action +optional
  - `status` GithubComChaosMeshChaosMeshApiV1alpha1ScheduleStatus
    - `active` V1ObjectReference[] — +optional
      - `apiVersion` string — API version of the referent. +optional
      - `fieldPath` string — If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: "spec.containers{name}" (where "name" refers to the name of the container that triggered the event) or if no container name is specified "spec.containers[2]" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object. TODO: this design is not final and this field is subject to change in the future. +optional
      - `kind` string — Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds +optional
      - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names +optional
      - `namespace` string — Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ +optional
      - `resourceVersion` string — Specific resourceVersion to which this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency +optional
      - `uid` string — UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids +optional
    - `time` string — +optional +nullable

## Other responses

- `400` — Bad Request
- `500` — Internal Server Error

---

[API](https://skmtc.net/chaos-mesh/apis/chaos-mesh-dashboard-api.md) · [All operations](https://skmtc.net/chaos-mesh/apis/chaos-mesh-dashboard-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/chaos-mesh/chaos-mesh-dashboard-api/revisions/c965f06ffb38/schema)
