swagger: '2.0' info: description: Argo Workflows is an open source container-native workflow engine for orchestrating parallel jobs on Kubernetes. For more information, please see https://argo-workflows.readthedocs.io/en/latest/ title: Argo Workflows ArchivedWorkflowService SensorService API version: 3.6.0 host: localhost:2746 schemes: - http - https consumes: - application/json produces: - application/json security: - BearerToken: [] tags: - name: SensorService paths: /api/v1/sensors/{namespace}: get: tags: - SensorService operationId: SensorService_ListSensors parameters: - type: string name: namespace in: path required: true - type: string description: 'A selector to restrict the list of returned objects by their labels. Defaults to everything. +optional.' name: listOptions.labelSelector in: query - type: string description: 'A selector to restrict the list of returned objects by their fields. Defaults to everything. +optional.' name: listOptions.fieldSelector in: query - type: boolean description: 'Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. +optional.' name: listOptions.watch in: query - type: boolean description: 'allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server''s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. +optional.' name: listOptions.allowWatchBookmarks in: query - type: string description: 'resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset +optional' name: listOptions.resourceVersion in: query - type: string description: 'resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset +optional' name: listOptions.resourceVersionMatch in: query - type: string format: int64 description: 'Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. +optional.' name: listOptions.timeoutSeconds in: query - type: string format: int64 description: 'limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.' name: listOptions.limit in: query - type: string description: 'The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.' name: listOptions.continue in: query - type: boolean description: "`sendInitialEvents=true` may be set together with `watch=true`.\nIn that case, the watch stream will begin with synthetic events to\nproduce the current state of objects in the collection. Once all such\nevents have been sent, a synthetic \"Bookmark\" event will be sent.\nThe bookmark will report the ResourceVersion (RV) corresponding to the\nset of objects, and be marked with `\"io.k8s.initial-events-end\": \"true\"` annotation.\nAfterwards, the watch stream will proceed as usual, sending watch events\ncorresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch`\noption to also be set. The semantic of the watch request is as following:\n- `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward\ncompatibility reasons) and to false otherwise.\n+optional" name: listOptions.sendInitialEvents in: query responses: '200': description: A successful response. schema: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.SensorList' default: description: An unexpected error response. schema: $ref: '#/definitions/grpc.gateway.runtime.Error' x-microcks-operation: delay: 0 dispatcher: FALLBACK post: tags: - SensorService operationId: SensorService_CreateSensor parameters: - type: string name: namespace in: path required: true - name: body in: body required: true schema: $ref: '#/definitions/sensor.CreateSensorRequest' responses: '200': description: A successful response. schema: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.Sensor' default: description: An unexpected error response. schema: $ref: '#/definitions/grpc.gateway.runtime.Error' x-microcks-operation: delay: 0 dispatcher: FALLBACK /api/v1/sensors/{namespace}/{name}: get: tags: - SensorService operationId: SensorService_GetSensor parameters: - type: string name: namespace in: path required: true - type: string name: name in: path required: true - type: string description: 'resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset +optional' name: getOptions.resourceVersion in: query responses: '200': description: A successful response. schema: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.Sensor' default: description: An unexpected error response. schema: $ref: '#/definitions/grpc.gateway.runtime.Error' x-microcks-operation: delay: 0 dispatcher: FALLBACK put: tags: - SensorService operationId: SensorService_UpdateSensor parameters: - type: string name: namespace in: path required: true - type: string name: name in: path required: true - name: body in: body required: true schema: $ref: '#/definitions/sensor.UpdateSensorRequest' responses: '200': description: A successful response. schema: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.Sensor' default: description: An unexpected error response. schema: $ref: '#/definitions/grpc.gateway.runtime.Error' x-microcks-operation: delay: 0 dispatcher: FALLBACK delete: tags: - SensorService operationId: SensorService_DeleteSensor parameters: - type: string name: namespace in: path required: true - type: string name: name in: path required: true - type: string format: int64 description: 'The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. +optional.' name: deleteOptions.gracePeriodSeconds in: query - type: string description: 'Specifies the target UID. +optional.' name: deleteOptions.preconditions.uid in: query - type: string description: 'Specifies the target ResourceVersion +optional.' name: deleteOptions.preconditions.resourceVersion in: query - type: boolean description: 'Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object''s finalizers list. Either this field or PropagationPolicy may be set, but not both. +optional.' name: deleteOptions.orphanDependents in: query - type: string description: 'Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: ''Orphan'' - orphan the dependents; ''Background'' - allow the garbage collector to delete the dependents in the background; ''Foreground'' - a cascading policy that deletes all dependents in the foreground. +optional.' name: deleteOptions.propagationPolicy in: query - type: array items: type: string collectionFormat: multi description: 'When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed +optional +listType=atomic.' name: deleteOptions.dryRun in: query - type: boolean description: 'if set to true, it will trigger an unsafe deletion of the resource in case the normal deletion flow fails with a corrupt object error. A resource is considered corrupt if it can not be retrieved from the underlying storage successfully because of a) its data can not be transformed e.g. decryption failure, or b) it fails to decode into an object. NOTE: unsafe deletion ignores finalizer constraints, skips precondition checks, and removes the object from the storage. WARNING: This may potentially break the cluster if the workload associated with the resource being unsafe-deleted relies on normal deletion flow. Use only if you REALLY know what you are doing. The default value is false, and the user must opt in to enable it +optional.' name: deleteOptions.ignoreStoreReadErrorWithClusterBreakingPotential in: query responses: '200': description: A successful response. schema: $ref: '#/definitions/sensor.DeleteSensorResponse' default: description: An unexpected error response. schema: $ref: '#/definitions/grpc.gateway.runtime.Error' x-microcks-operation: delay: 0 dispatcher: FALLBACK /api/v1/stream/sensors/{namespace}: get: tags: - SensorService operationId: SensorService_WatchSensors parameters: - type: string name: namespace in: path required: true - type: string description: 'A selector to restrict the list of returned objects by their labels. Defaults to everything. +optional.' name: listOptions.labelSelector in: query - type: string description: 'A selector to restrict the list of returned objects by their fields. Defaults to everything. +optional.' name: listOptions.fieldSelector in: query - type: boolean description: 'Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. +optional.' name: listOptions.watch in: query - type: boolean description: 'allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server''s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. +optional.' name: listOptions.allowWatchBookmarks in: query - type: string description: 'resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset +optional' name: listOptions.resourceVersion in: query - type: string description: 'resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset +optional' name: listOptions.resourceVersionMatch in: query - type: string format: int64 description: 'Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. +optional.' name: listOptions.timeoutSeconds in: query - type: string format: int64 description: 'limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.' name: listOptions.limit in: query - type: string description: 'The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.' name: listOptions.continue in: query - type: boolean description: "`sendInitialEvents=true` may be set together with `watch=true`.\nIn that case, the watch stream will begin with synthetic events to\nproduce the current state of objects in the collection. Once all such\nevents have been sent, a synthetic \"Bookmark\" event will be sent.\nThe bookmark will report the ResourceVersion (RV) corresponding to the\nset of objects, and be marked with `\"io.k8s.initial-events-end\": \"true\"` annotation.\nAfterwards, the watch stream will proceed as usual, sending watch events\ncorresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch`\noption to also be set. The semantic of the watch request is as following:\n- `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward\ncompatibility reasons) and to false otherwise.\n+optional" name: listOptions.sendInitialEvents in: query responses: '200': description: A successful response.(streaming responses) schema: type: object title: Stream result of sensor.SensorWatchEvent properties: error: $ref: '#/definitions/grpc.gateway.runtime.StreamError' result: $ref: '#/definitions/sensor.SensorWatchEvent' default: description: An unexpected error response. schema: $ref: '#/definitions/grpc.gateway.runtime.Error' x-microcks-operation: delay: 0 dispatcher: FALLBACK /api/v1/stream/sensors/{namespace}/logs: get: tags: - SensorService operationId: SensorService_SensorsLogs parameters: - type: string name: namespace in: path required: true - type: string description: optional - only return entries for this sensor name. name: name in: query - type: string description: optional - only return entries for this trigger. name: triggerName in: query - type: string description: option - only return entries where `msg` contains this regular expressions. name: grep in: query - type: string description: 'The container for which to stream logs. Defaults to only container if there is one container in the pod. +optional.' name: podLogOptions.container in: query - type: boolean description: 'Follow the log stream of the pod. Defaults to false. +optional.' name: podLogOptions.follow in: query - type: boolean description: 'Return previous terminated container logs. Defaults to false. +optional.' name: podLogOptions.previous in: query - type: string format: int64 description: 'A relative time in seconds before the current time from which to show logs. If this value precedes the time a pod was started, only logs since the pod start will be returned. If this value is in the future, no logs will be returned. Only one of sinceSeconds or sinceTime may be specified. +optional.' name: podLogOptions.sinceSeconds in: query - type: string format: int64 description: 'Represents seconds of UTC time since Unix epoch 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59Z inclusive.' name: podLogOptions.sinceTime.seconds in: query - type: integer format: int32 description: 'Non-negative fractions of a second at nanosecond resolution. Negative second values with fractions must still have non-negative nanos values that count forward in time. Must be from 0 to 999,999,999 inclusive. This field may be limited in precision depending on context.' name: podLogOptions.sinceTime.nanos in: query - type: boolean description: 'If true, add an RFC3339 or RFC3339Nano timestamp at the beginning of every line of log output. Defaults to false. +optional.' name: podLogOptions.timestamps in: query - type: string format: int64 description: 'If set, the number of lines from the end of the logs to show. If not specified, logs are shown from the creation of the container or sinceSeconds or sinceTime. Note that when "TailLines" is specified, "Stream" can only be set to nil or "All". +optional.' name: podLogOptions.tailLines in: query - type: string format: int64 description: 'If set, the number of bytes to read from the server before terminating the log output. This may not display a complete final line of logging, and may return slightly more or slightly less than the specified limit. +optional.' name: podLogOptions.limitBytes in: query - type: boolean description: 'insecureSkipTLSVerifyBackend indicates that the apiserver should not confirm the validity of the serving certificate of the backend it is connecting to. This will make the HTTPS connection between the apiserver and the backend insecure. This means the apiserver cannot verify the log data it is receiving came from the real kubelet. If the kubelet is configured to verify the apiserver''s TLS credentials, it does not mean the connection to the real kubelet is vulnerable to a man in the middle attack (e.g. an attacker could not intercept the actual log data coming from the real kubelet). +optional.' name: podLogOptions.insecureSkipTLSVerifyBackend in: query - type: string description: 'Specify which container log stream to return to the client. Acceptable values are "All", "Stdout" and "Stderr". If not specified, "All" is used, and both stdout and stderr are returned interleaved. Note that when "TailLines" is specified, "Stream" can only be set to nil or "All". +featureGate=PodLogsQuerySplitStreams +optional.' name: podLogOptions.stream in: query responses: '200': description: A successful response.(streaming responses) schema: type: object title: Stream result of sensor.LogEntry properties: error: $ref: '#/definitions/grpc.gateway.runtime.StreamError' result: $ref: '#/definitions/sensor.LogEntry' default: description: An unexpected error response. schema: $ref: '#/definitions/grpc.gateway.runtime.Error' x-microcks-operation: delay: 0 dispatcher: FALLBACK definitions: grpc.gateway.runtime.StreamError: type: object properties: details: type: array items: $ref: '#/definitions/google.protobuf.Any' grpc_code: type: integer http_code: type: integer http_status: type: string message: type: string io.k8s.api.core.v1.ScaleIOVolumeSource: description: ScaleIOVolumeSource represents a persistent ScaleIO volume type: object required: - gateway - system - secretRef properties: fsType: description: fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Default is "xfs". type: string gateway: description: gateway is the host address of the ScaleIO API Gateway. type: string protectionDomain: description: protectionDomain is the name of the ScaleIO Protection Domain for the configured storage. type: string readOnly: description: readOnly Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. type: boolean secretRef: description: secretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail. $ref: '#/definitions/io.k8s.api.core.v1.LocalObjectReference' sslEnabled: description: sslEnabled Flag enable/disable SSL communication with Gateway, default false type: boolean storageMode: description: storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned. type: string storagePool: description: storagePool is the ScaleIO Storage Pool associated with the protection domain. type: string system: description: system is the name of the storage system as configured in ScaleIO. type: string volumeName: description: volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source. type: string github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventDependency: type: object title: EventDependency describes a dependency properties: eventName: type: string title: EventName is the name of the event eventSourceName: type: string title: EventSourceName is the name of EventSource that Sensor depends on filters: title: Filters and rules governing toleration of success and constraints on the context and data of an event $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventDependencyFilter' filtersLogicalOperator: description: 'FiltersLogicalOperator defines how different filters are evaluated together. Available values: and (&&), or (||) Is optional and if left blank treated as and (&&).' type: string name: type: string title: Name is a unique name of this dependency transform: title: Transform transforms the event data $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventDependencyTransformer' io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource: description: Represents a Photon Controller persistent disk resource. type: object required: - pdID properties: fsType: description: fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. type: string pdID: description: pdID is the ID that identifies Photon Controller persistent disk type: string io.k8s.api.core.v1.Volume: description: Volume represents a named volume in a pod that may be accessed by any container in the pod. type: object required: - name properties: awsElasticBlockStore: description: 'awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet''s host machine and then exposed to the pod. Deprecated: AWSElasticBlockStore is deprecated. All operations for the in-tree awsElasticBlockStore type are redirected to the ebs.csi.aws.com CSI driver. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore' $ref: '#/definitions/io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource' azureDisk: description: 'azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. Deprecated: AzureDisk is deprecated. All operations for the in-tree azureDisk type are redirected to the disk.csi.azure.com CSI driver.' $ref: '#/definitions/io.k8s.api.core.v1.AzureDiskVolumeSource' azureFile: description: 'azureFile represents an Azure File Service mount on the host and bind mount to the pod. Deprecated: AzureFile is deprecated. All operations for the in-tree azureFile type are redirected to the file.csi.azure.com CSI driver.' $ref: '#/definitions/io.k8s.api.core.v1.AzureFileVolumeSource' cephfs: description: 'cephFS represents a Ceph FS mount on the host that shares a pod''s lifetime. Deprecated: CephFS is deprecated and the in-tree cephfs type is no longer supported.' $ref: '#/definitions/io.k8s.api.core.v1.CephFSVolumeSource' cinder: description: 'cinder represents a cinder volume attached and mounted on kubelets host machine. Deprecated: Cinder is deprecated. All operations for the in-tree cinder type are redirected to the cinder.csi.openstack.org CSI driver. More info: https://examples.k8s.io/mysql-cinder-pd/README.md' $ref: '#/definitions/io.k8s.api.core.v1.CinderVolumeSource' configMap: description: configMap represents a configMap that should populate this volume $ref: '#/definitions/io.k8s.api.core.v1.ConfigMapVolumeSource' csi: description: csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers. $ref: '#/definitions/io.k8s.api.core.v1.CSIVolumeSource' downwardAPI: description: downwardAPI represents downward API about the pod that should populate this volume $ref: '#/definitions/io.k8s.api.core.v1.DownwardAPIVolumeSource' emptyDir: description: 'emptyDir represents a temporary directory that shares a pod''s lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir' $ref: '#/definitions/io.k8s.api.core.v1.EmptyDirVolumeSource' ephemeral: description: "ephemeral represents a volume that is handled by a cluster storage driver. The volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removed.\n\nUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity\n tracking are needed,\nc) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through\n a PersistentVolumeClaim (see EphemeralVolumeSource for more\n information on the connection between this volume type\n and PersistentVolumeClaim).\n\nUse PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual pod.\n\nUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more information.\n\nA pod can use both types of ephemeral volumes and persistent volumes at the same time." $ref: '#/definitions/io.k8s.api.core.v1.EphemeralVolumeSource' fc: description: fc represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod. $ref: '#/definitions/io.k8s.api.core.v1.FCVolumeSource' flexVolume: description: 'flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin. Deprecated: FlexVolume is deprecated. Consider using a CSIDriver instead.' $ref: '#/definitions/io.k8s.api.core.v1.FlexVolumeSource' flocker: description: 'flocker represents a Flocker volume attached to a kubelet''s host machine. This depends on the Flocker control service being running. Deprecated: Flocker is deprecated and the in-tree flocker type is no longer supported.' $ref: '#/definitions/io.k8s.api.core.v1.FlockerVolumeSource' gcePersistentDisk: description: 'gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet''s host machine and then exposed to the pod. Deprecated: GCEPersistentDisk is deprecated. All operations for the in-tree gcePersistentDisk type are redirected to the pd.csi.storage.gke.io CSI driver. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' $ref: '#/definitions/io.k8s.api.core.v1.GCEPersistentDiskVolumeSource' gitRepo: description: 'gitRepo represents a git repository at a particular revision. Deprecated: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod''s container.' $ref: '#/definitions/io.k8s.api.core.v1.GitRepoVolumeSource' glusterfs: description: 'glusterfs represents a Glusterfs mount on the host that shares a pod''s lifetime. Deprecated: Glusterfs is deprecated and the in-tree glusterfs type is no longer supported.' $ref: '#/definitions/io.k8s.api.core.v1.GlusterfsVolumeSource' hostPath: description: 'hostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath' $ref: '#/definitions/io.k8s.api.core.v1.HostPathVolumeSource' image: description: 'image represents an OCI object (a container image or artifact) pulled and mounted on the kubelet''s host machine. The volume is resolved at pod startup depending on which PullPolicy value is provided: - Always: the kubelet always attempts to pull the reference. Container creation will fail If the pull fails. - Never: the kubelet never pulls the reference and only uses a local image or artifact. Container creation will fail if the reference isn''t present. - IfNotPresent: the kubelet pulls if the reference isn''t already present on disk. Container creation will fail if the reference isn''t present and the pull fails. The volume gets re-resolved if the pod gets deleted and recreated, which means that new remote content will become available on pod recreation. A failure to resolve or pull the image during pod startup will block containers from starting and may add significant latency. Failures will be retried using normal volume backoff and will be reported on the pod reason and message. The types of objects that may be mounted by this volume are defined by the container runtime implementation on a host machine and at minimum must include all valid types supported by the container image field. The OCI object gets mounted in a single directory (spec.containers[*].volumeMounts.mountPath) by merging the manifest layers in the same way as for container images. The volume will be mounted read-only (ro) and non-executable files (noexec). Sub path mounts for containers are not supported (spec.containers[*].volumeMounts.subpath) before 1.33. The field spec.securityContext.fsGroupChangePolicy has no effect on this volume type.' $ref: '#/definitions/io.k8s.api.core.v1.ImageVolumeSource' iscsi: description: 'iscsi represents an ISCSI Disk resource that is attached to a kubelet''s host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes/#iscsi' $ref: '#/definitions/io.k8s.api.core.v1.ISCSIVolumeSource' name: description: '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' type: string nfs: description: 'nfs represents an NFS mount on the host that shares a pod''s lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs' $ref: '#/definitions/io.k8s.api.core.v1.NFSVolumeSource' persistentVolumeClaim: description: 'persistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims' $ref: '#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimVolumeSource' photonPersistentDisk: description: 'photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine. Deprecated: PhotonPersistentDisk is deprecated and the in-tree photonPersistentDisk type is no longer supported.' $ref: '#/definitions/io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource' portworxVolume: description: 'portworxVolume represents a portworx volume attached and mounted on kubelets host machine. Deprecated: PortworxVolume is deprecated. All operations for the in-tree portworxVolume type are redirected to the pxd.portworx.com CSI driver when the CSIMigrationPortworx feature-gate is on.' $ref: '#/definitions/io.k8s.api.core.v1.PortworxVolumeSource' projected: description: projected items for all in one resources secrets, configmaps, and downward API $ref: '#/definitions/io.k8s.api.core.v1.ProjectedVolumeSource' quobyte: description: 'quobyte represents a Quobyte mount on the host that shares a pod''s lifetime. Deprecated: Quobyte is deprecated and the in-tree quobyte type is no longer supported.' $ref: '#/definitions/io.k8s.api.core.v1.QuobyteVolumeSource' rbd: description: 'rbd represents a Rados Block Device mount on the host that shares a pod''s lifetime. Deprecated: RBD is deprecated and the in-tree rbd type is no longer supported.' $ref: '#/definitions/io.k8s.api.core.v1.RBDVolumeSource' scaleIO: description: 'scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes. Deprecated: ScaleIO is deprecated and the in-tree scaleIO type is no longer supported.' $ref: '#/definitions/io.k8s.api.core.v1.ScaleIOVolumeSource' secret: description: 'secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret' $ref: '#/definitions/io.k8s.api.core.v1.SecretVolumeSource' storageos: description: 'storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes. Deprecated: StorageOS is deprecated and the in-tree storageos type is no longer supported.' $ref: '#/definitions/io.k8s.api.core.v1.StorageOSVolumeSource' vsphereVolume: description: 'vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine. Deprecated: VsphereVolume is deprecated. All operations for the in-tree vsphereVolume type are redirected to the csi.vsphere.vmware.com CSI driver.' $ref: '#/definitions/io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource' github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.Sensor: type: object title: 'Sensor is the definition of a sensor resource +genclient +genclient:noStatus +kubebuilder:resource:shortName=sn +kubebuilder:subresource:status +k8s:deepcopy-gen:interfaces=io.k8s.apimachinery/pkg/runtime.Object +k8s:openapi-gen=true' properties: metadata: $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta' spec: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.SensorSpec' status: title: +optional $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.SensorStatus' io.k8s.api.core.v1.GCEPersistentDiskVolumeSource: description: 'Represents a Persistent Disk resource in Google Compute Engine. A GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling.' type: object required: - pdName properties: fsType: description: 'fsType is filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' type: string partition: description: 'partition is the partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' type: integer pdName: description: 'pdName is unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' type: string readOnly: description: 'readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' type: boolean io.k8s.api.core.v1.DownwardAPIVolumeSource: description: DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling. type: object properties: defaultMode: description: 'Optional: mode bits to use on created files by default. Must be a Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' type: integer items: description: Items is a list of downward API volume file type: array items: $ref: '#/definitions/io.k8s.api.core.v1.DownwardAPIVolumeFile' x-kubernetes-list-type: atomic io.k8s.api.core.v1.NodeAffinity: description: Node affinity is a group of node affinity scheduling rules. type: object properties: preferredDuringSchedulingIgnoredDuringExecution: description: The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.PreferredSchedulingTerm' x-kubernetes-list-type: atomic requiredDuringSchedulingIgnoredDuringExecution: description: If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node. $ref: '#/definitions/io.k8s.api.core.v1.NodeSelector' github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.SchemaRegistryConfig: type: object title: SchemaRegistryConfig refers to configuration for a client properties: auth: title: 'SchemaRegistry - basic authentication +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.BasicAuth' schemaId: type: integer title: 'Schema ID +optional' url: description: Schema Registry URL. type: string io.k8s.api.core.v1.EmptyDirVolumeSource: description: Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling. type: object properties: medium: description: 'medium represents what type of storage medium should back this directory. The default is "" which means to use the node''s default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir' type: string sizeLimit: description: 'sizeLimit is the total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir' $ref: '#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity' github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.LogTrigger: type: object properties: intervalSeconds: type: string format: uint64 title: 'Only print messages every interval. Useful to prevent logging too much data for busy events. +optional' github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.SecureHeader: type: object title: SecureHeader refers to HTTP Headers with auth tokens as values properties: name: type: string valueFrom: title: Values can be read from either secrets or configmaps $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.ValueFromSource' github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.KafkaTrigger: description: KafkaTrigger refers to the specification of the Kafka trigger. type: object properties: compress: type: boolean title: 'Compress determines whether to compress message or not. Defaults to false. If set to true, compresses message using snappy compression. +optional' flushFrequency: type: integer title: 'FlushFrequency refers to the frequency in milliseconds to flush batches. Defaults to 500 milliseconds. +optional' headers: type: object title: 'Headers for the Kafka Messages. +optional' additionalProperties: type: string parameters: description: Parameters is the list of parameters that is applied to resolved Kafka trigger object. type: array items: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TriggerParameter' partition: type: integer title: '+optional DEPRECATED' partitioningKey: description: 'The partitioning key for the messages put on the Kafka topic. +optional.' type: string payload: description: Payload is the list of key-value extracted from an event payload to construct the request payload. type: array items: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TriggerParameter' requiredAcks: description: 'RequiredAcks used in producer to tell the broker how many replica acknowledgements Defaults to 1 (Only wait for the leader to ack). +optional.' type: integer sasl: title: 'SASL configuration for the kafka client +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.SASLConfig' schemaRegistry: title: 'Schema Registry configuration to producer message with avro format +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.SchemaRegistryConfig' secureHeaders: type: array title: 'Secure Headers stored in Kubernetes Secrets for the Kafka messages. +optional' items: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.SecureHeader' tls: title: 'TLS configuration for the Kafka producer. +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TLSConfig' topic: type: string title: 'Name of the topic. More info at https://kafka.apache.org/documentation/#intro_topics' url: description: URL of the Kafka broker, multiple URLs separated by comma. type: string version: type: string title: 'Specify what kafka version is being connected to enables certain features in sarama, defaults to 1.0.0 +optional' github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.AzureEventHubsTrigger: type: object title: AzureEventHubsTrigger refers to specification of the Azure Event Hubs Trigger properties: fqdn: type: string title: FQDN refers to the namespace dns of Azure Event Hubs to be used i.e. .servicebus.windows.net hubName: type: string title: HubName refers to the Azure Event Hub to send events to parameters: type: array title: 'Parameters is the list of key-value extracted from event''s payload that are applied to the trigger resource. +optional' items: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TriggerParameter' payload: description: Payload is the list of key-value extracted from an event payload to construct the request payload. type: array items: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TriggerParameter' sharedAccessKey: title: SharedAccessKey refers to a K8s secret containing the primary key for the $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' sharedAccessKeyName: title: SharedAccessKeyName refers to the name of the Shared Access Key $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' io.k8s.api.core.v1.ServiceAccountTokenProjection: description: ServiceAccountTokenProjection represents a projected service account token volume. This projection can be used to insert a service account token into the pods runtime filesystem for use against APIs (Kubernetes API Server or otherwise). type: object required: - path properties: audience: description: audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver. type: string expirationSeconds: description: expirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes. type: integer path: description: path is the path relative to the mount point of the file to project the token into. type: string github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.Metadata: type: object title: Metadata holds the annotations and labels of an event source pod properties: annotations: type: object additionalProperties: type: string labels: type: object additionalProperties: type: string io.k8s.api.core.v1.Sysctl: description: Sysctl defines a kernel parameter to be set type: object required: - name - value properties: name: description: Name of a property to set type: string value: description: Value of a property to set type: string github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.DataFilter: description: DataFilter describes constraints and filters for event data. type: object properties: comparator: description: 'Comparator compares the event data with a user given value. Can be ">=", ">", "=", "!=", "<", or "<=". Is optional, and if left blank treated as equality "=".' type: string path: description: 'Path is the JSONPath of the event''s (JSON decoded) data key. Path is a series of keys separated by a dot. A key may contain wildcard characters ''*'' and ''?''. To access an array value use the index as the key. The dot and wildcard characters can be escaped with ''\\''. See https://github.com/tidwall/gjson#path-syntax for more information on how to use this.' type: string template: type: string title: 'Template is a go-template for extracting a string from the event''s data. A Template is evaluated with provided path, type and value. The templating follows the standard go-template syntax as well as sprig''s extra functions. See https://pkg.go.dev/text/template and https://masterminds.github.io/sprig/' type: type: string title: Type contains the JSON type of the data value: description: 'Value is the allowed string values for this key. Booleans are parsed using strconv.ParseBool(), Numbers are parsed as float64 using strconv.ParseFloat(), Strings are treated as regular expressions, Nils value is ignored.' type: array items: type: string io.k8s.api.core.v1.ClusterTrustBundleProjection: description: ClusterTrustBundleProjection describes how to select a set of ClusterTrustBundle objects and project their contents into the pod filesystem. type: object required: - path properties: labelSelector: description: Select all ClusterTrustBundles that match this label selector. Only has effect if signerName is set. Mutually-exclusive with name. If unset, interpreted as "match nothing". If set but empty, interpreted as "match everything". $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector' name: description: Select a single ClusterTrustBundle by object name. Mutually-exclusive with signerName and labelSelector. type: string optional: description: If true, don't block pod startup if the referenced ClusterTrustBundle(s) aren't available. If using name, then the named ClusterTrustBundle is allowed not to exist. If using signerName, then the combination of signerName and labelSelector is allowed to match zero ClusterTrustBundles. type: boolean path: description: Relative path from the volume root to write the bundle. type: string signerName: description: Select all ClusterTrustBundles that match this signer name. Mutually-exclusive with name. The contents of all selected ClusterTrustBundles will be unified and deduplicated. type: string io.k8s.api.core.v1.VolumeProjection: description: Projection that may be projected along with other supported volume types. Exactly one of these fields must be set. type: object properties: clusterTrustBundle: description: 'ClusterTrustBundle allows a pod to access the `.spec.trustBundle` field of ClusterTrustBundle objects in an auto-updating file. Alpha, gated by the ClusterTrustBundleProjection feature gate. ClusterTrustBundle objects can either be selected by name, or by the combination of signer name and a label selector. Kubelet performs aggressive normalization of the PEM contents written into the pod filesystem. Esoteric PEM features such as inter-block comments and block headers are stripped. Certificates are deduplicated. The ordering of certificates within the file is arbitrary, and Kubelet may change the order over time.' $ref: '#/definitions/io.k8s.api.core.v1.ClusterTrustBundleProjection' configMap: description: configMap information about the configMap data to project $ref: '#/definitions/io.k8s.api.core.v1.ConfigMapProjection' downwardAPI: description: downwardAPI information about the downwardAPI data to project $ref: '#/definitions/io.k8s.api.core.v1.DownwardAPIProjection' podCertificate: description: 'Projects an auto-rotating credential bundle (private key and certificate chain) that the pod can use either as a TLS client or server. Kubelet generates a private key and uses it to send a PodCertificateRequest to the named signer. Once the signer approves the request and issues a certificate chain, Kubelet writes the key and certificate chain to the pod filesystem. The pod does not start until certificates have been issued for each podCertificate projected volume source in its spec. Kubelet will begin trying to rotate the certificate at the time indicated by the signer using the PodCertificateRequest.Status.BeginRefreshAt timestamp. Kubelet can write a single file, indicated by the credentialBundlePath field, or separate files, indicated by the keyPath and certificateChainPath fields. The credential bundle is a single file in PEM format. The first PEM entry is the private key (in PKCS#8 format), and the remaining PEM entries are the certificate chain issued by the signer (typically, signers will return their certificate chain in leaf-to-root order). Prefer using the credential bundle format, since your application code can read it atomically. If you use keyPath and certificateChainPath, your application must make two separate file reads. If these coincide with a certificate rotation, it is possible that the private key and leaf certificate you read may not correspond to each other. Your application will need to check for this condition, and re-read until they are consistent. The named signer controls chooses the format of the certificate it issues; consult the signer implementation''s documentation to learn how to use the certificates it issues.' $ref: '#/definitions/io.k8s.api.core.v1.PodCertificateProjection' secret: description: secret information about the secret data to project $ref: '#/definitions/io.k8s.api.core.v1.SecretProjection' serviceAccountToken: description: serviceAccountToken is information about the serviceAccountToken data to project $ref: '#/definitions/io.k8s.api.core.v1.ServiceAccountTokenProjection' github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.SensorStatus: description: SensorStatus contains information about the status of a sensor. type: object properties: status: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.Status' github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.StatusPolicy: type: object title: StatusPolicy refers to the policy used to check the state of the trigger using response status properties: allow: type: array items: type: integer format: int32 github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.Backoff: type: object title: Backoff for an operation properties: duration: title: 'The initial duration in nanoseconds or strings like "1s", "3m" +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.Int64OrString' factor: title: 'Duration is multiplied by factor each iteration +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.Amount' jitter: title: 'The amount of jitter applied each iteration +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.Amount' steps: type: integer title: 'Exit with error after this many steps +optional' github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.NATSAuth: type: object title: NATSAuth refers to the auth info for NATS EventSource properties: basic: title: 'Baisc auth with username and password +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.BasicAuth' credential: title: 'credential used to connect +optional' $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' nkey: title: 'NKey used to connect +optional' $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' token: title: 'Token used to connect +optional' $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' io.k8s.api.core.v1.EnvFromSource: description: EnvFromSource represents the source of a set of ConfigMaps or Secrets type: object properties: configMapRef: description: The ConfigMap to select from $ref: '#/definitions/io.k8s.api.core.v1.ConfigMapEnvSource' prefix: description: Optional text to prepend to the name of each environment variable. May consist of any printable ASCII characters except '='. type: string secretRef: description: The Secret to select from $ref: '#/definitions/io.k8s.api.core.v1.SecretEnvSource' io.k8s.api.core.v1.WeightedPodAffinityTerm: description: The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s) type: object required: - weight - podAffinityTerm properties: podAffinityTerm: description: Required. A pod affinity term, associated with the corresponding weight. $ref: '#/definitions/io.k8s.api.core.v1.PodAffinityTerm' weight: description: weight associated with matching the corresponding podAffinityTerm, in the range 1-100. type: integer io.k8s.api.core.v1.SecretProjection: description: 'Adapts a secret into a projected volume. The contents of the target Secret''s Data field will be presented in a projected volume as files using the keys in the Data field as the file names. Note that this is identical to a secret volume source without the default mode.' type: object properties: items: description: items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.KeyToPath' x-kubernetes-list-type: atomic name: description: 'Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' type: string optional: description: optional field specify whether the Secret or its key must be defined type: boolean io.k8s.api.core.v1.TypedLocalObjectReference: description: TypedLocalObjectReference contains enough information to let you locate the typed referenced object inside the same namespace. type: object required: - kind - name properties: apiGroup: description: APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required. type: string kind: description: Kind is the type of resource being referenced type: string name: description: Name is the name of resource being referenced type: string x-kubernetes-map-type: atomic io.k8s.api.core.v1.PreferredSchedulingTerm: description: An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op). type: object required: - weight - preference properties: preference: description: A node selector term, associated with the corresponding weight. $ref: '#/definitions/io.k8s.api.core.v1.NodeSelectorTerm' weight: description: Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100. type: integer github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TLSConfig: description: TLSConfig refers to TLS configuration for a client. type: object properties: caCertSecret: title: CACertSecret refers to the secret that contains the CA cert $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' clientCertSecret: title: ClientCertSecret refers to the secret that contains the client cert $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' clientKeySecret: title: ClientKeySecret refers to the secret that contains the client key $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' enabled: type: boolean title: 'Enabled indicates if TLS is enabled. Added for compatibility proposes for Brokers that needs TLS without key authentication +optional' insecureSkipVerify: type: boolean title: 'If true, skips creation of TLSConfig with certs and creates an empty TLSConfig. (Defaults to false) +optional' github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.Status: description: Status is a common structure which can be used for Status field. type: object properties: conditions: type: array title: 'Conditions are the latest available observations of a resource''s current state. +optional +patchMergeKey=type +patchStrategy=merge' items: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.Condition' sensor.UpdateSensorRequest: type: object properties: name: type: string namespace: type: string sensor: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.Sensor' github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TriggerParameter: type: object title: TriggerParameter indicates a passed parameter to a service template properties: dest: description: 'Dest is the JSONPath of a resource key. A path is a series of keys separated by a dot. The colon character can be escaped with ''.'' The -1 key can be used to append a value to an existing array. See https://github.com/tidwall/sjson#path-syntax for more information about how this is used.' type: string operation: description: 'Operation is what to do with the existing value at Dest, whether to ''prepend'', ''overwrite'', or ''append'' it.' type: string src: title: Src contains a source reference to the value of the parameter from a dependency $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TriggerParameterSource' github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.ValueFromSource: type: object title: ValueFromSource allows you to reference keys from either a Configmap or Secret properties: configMapKeyRef: $ref: '#/definitions/io.k8s.api.core.v1.ConfigMapKeySelector' secretKeyRef: $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' io.k8s.api.core.v1.PodSecurityContext: description: PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext. type: object properties: appArmorProfile: description: appArmorProfile is the AppArmor options to use by the containers in this pod. Note that this field cannot be set when spec.os.name is windows. $ref: '#/definitions/io.k8s.api.core.v1.AppArmorProfile' fsGroup: description: 'A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod: 1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR''d with rw-rw---- If unset, the Kubelet will not modify the ownership and permissions of any volume. Note that this field cannot be set when spec.os.name is windows.' type: integer fsGroupChangePolicy: description: 'fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod. This field will only apply to volume types which support fsGroup based ownership(and permissions). It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir. Valid values are "OnRootMismatch" and "Always". If not specified, "Always" is used. Note that this field cannot be set when spec.os.name is windows.' type: string runAsGroup: description: The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. Note that this field cannot be set when spec.os.name is windows. type: integer runAsNonRoot: description: Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. type: boolean runAsUser: description: The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. Note that this field cannot be set when spec.os.name is windows. type: integer seLinuxChangePolicy: description: 'seLinuxChangePolicy defines how the container''s SELinux label is applied to all volumes used by the Pod. It has no effect on nodes that do not support SELinux or to volumes does not support SELinux. Valid values are "MountOption" and "Recursive". "Recursive" means relabeling of all files on all Pod volumes by the container runtime. This may be slow for large volumes, but allows mixing privileged and unprivileged Pods sharing the same volume on the same node. "MountOption" mounts all eligible Pod volumes with `-o context` mount option. This requires all Pods that share the same volume to use the same SELinux label. It is not possible to share the same volume among privileged and unprivileged Pods. Eligible volumes are in-tree FibreChannel and iSCSI volumes, and all CSI volumes whose CSI driver announces SELinux support by setting spec.seLinuxMount: true in their CSIDriver instance. Other volumes are always re-labelled recursively. "MountOption" value is allowed only when SELinuxMount feature gate is enabled. If not specified and SELinuxMount feature gate is enabled, "MountOption" is used. If not specified and SELinuxMount feature gate is disabled, "MountOption" is used for ReadWriteOncePod volumes and "Recursive" for all other volumes. This field affects only Pods that have SELinux label set, either in PodSecurityContext or in SecurityContext of all containers. All Pods that use the same volume should use the same seLinuxChangePolicy, otherwise some pods can get stuck in ContainerCreating state. Note that this field cannot be set when spec.os.name is windows.' type: string seLinuxOptions: description: The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. Note that this field cannot be set when spec.os.name is windows. $ref: '#/definitions/io.k8s.api.core.v1.SELinuxOptions' seccompProfile: description: The seccomp options to use by the containers in this pod. Note that this field cannot be set when spec.os.name is windows. $ref: '#/definitions/io.k8s.api.core.v1.SeccompProfile' supplementalGroups: description: A list of groups applied to the first process run in each container, in addition to the container's primary GID and fsGroup (if specified). If the SupplementalGroupsPolicy feature is enabled, the supplementalGroupsPolicy field determines whether these are in addition to or instead of any group memberships defined in the container image. If unspecified, no additional groups are added, though group memberships defined in the container image may still be used, depending on the supplementalGroupsPolicy field. Note that this field cannot be set when spec.os.name is windows. type: array items: type: integer format: int64 x-kubernetes-list-type: atomic supplementalGroupsPolicy: description: Defines how supplemental groups of the first container processes are calculated. Valid values are "Merge" and "Strict". If not specified, "Merge" is used. (Alpha) Using the field requires the SupplementalGroupsPolicy feature gate to be enabled and the container runtime must implement support for this feature. Note that this field cannot be set when spec.os.name is windows. type: string sysctls: description: Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch. Note that this field cannot be set when spec.os.name is windows. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.Sysctl' x-kubernetes-list-type: atomic windowsOptions: description: The Windows specific settings applied to all containers. If unspecified, the options within a container's SecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is linux. $ref: '#/definitions/io.k8s.api.core.v1.WindowsSecurityContextOptions' io.k8s.api.core.v1.Capabilities: description: Adds and removes POSIX capabilities from running containers. type: object properties: add: description: Added capabilities type: array items: type: string x-kubernetes-list-type: atomic drop: description: Removed capabilities type: array items: type: string x-kubernetes-list-type: atomic io.k8s.api.core.v1.DownwardAPIProjection: description: Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode. type: object properties: items: description: Items is a list of DownwardAPIVolume file type: array items: $ref: '#/definitions/io.k8s.api.core.v1.DownwardAPIVolumeFile' x-kubernetes-list-type: atomic github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.OpenWhiskTrigger: description: OpenWhiskTrigger refers to the specification of the OpenWhisk trigger. type: object properties: actionName: description: Name of the action/function. type: string authToken: title: 'AuthToken for authentication. +optional' $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' host: description: Host URL of the OpenWhisk. type: string namespace: description: 'Namespace for the action. Defaults to "_". +optional.' type: string parameters: type: array title: 'Parameters is the list of key-value extracted from event''s payload that are applied to the trigger resource. +optional' items: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TriggerParameter' payload: description: Payload is the list of key-value extracted from an event payload to construct the request payload. type: array items: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TriggerParameter' version: type: string title: 'Version for the API. Defaults to v1. +optional' github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventDependencyTransformer: type: object title: EventDependencyTransformer transforms the event properties: jq: type: string title: 'JQ holds the jq command applied for transformation +optional' script: type: string title: 'Script refers to a Lua script used to transform the event +optional' io.k8s.apimachinery.pkg.apis.meta.v1.CreateOptions: description: CreateOptions may be provided when creating an API object. type: object properties: dryRun: type: array title: 'When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed +optional +listType=atomic' items: type: string fieldManager: type: string title: 'fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. +optional' fieldValidation: type: string title: 'fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. +optional' github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.GitRemoteConfig: type: object title: GitRemoteConfig contains the configuration of a Git remote properties: name: description: Name of the remote to fetch from. type: string urls: description: 'URLs the URLs of a remote repository. It must be non-empty. Fetch will always use the first URL, while push will use all of them.' type: array items: type: string io.k8s.api.core.v1.TypedObjectReference: description: TypedObjectReference contains enough information to let you locate the typed referenced object type: object required: - kind - name properties: apiGroup: description: APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required. type: string kind: description: Kind is the type of resource being referenced type: string name: description: Name is the name of resource being referenced type: string namespace: description: Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details. (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled. type: string io.k8s.api.core.v1.CSIVolumeSource: description: Represents a source location of a volume to mount, managed by an external CSI driver type: object required: - driver properties: driver: description: driver is the name of the CSI driver that handles this volume. Consult with your admin for the correct name as registered in the cluster. type: string fsType: description: fsType to mount. Ex. "ext4", "xfs", "ntfs". If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply. type: string nodePublishSecretRef: description: nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secret references are passed. $ref: '#/definitions/io.k8s.api.core.v1.LocalObjectReference' readOnly: description: readOnly specifies a read-only configuration for the volume. Defaults to false (read/write). type: boolean volumeAttributes: description: volumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver's documentation for supported values. type: object additionalProperties: type: string io.k8s.api.core.v1.ObjectFieldSelector: description: ObjectFieldSelector selects an APIVersioned field of an object. type: object required: - fieldPath properties: apiVersion: description: Version of the schema the FieldPath is written in terms of, defaults to "v1". type: string fieldPath: description: Path of the field to select in the specified API version. type: string x-kubernetes-map-type: atomic io.k8s.api.core.v1.PodAffinity: description: Pod affinity is a group of inter pod affinity scheduling rules. type: object properties: preferredDuringSchedulingIgnoredDuringExecution: description: The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.WeightedPodAffinityTerm' x-kubernetes-list-type: atomic requiredDuringSchedulingIgnoredDuringExecution: description: If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.PodAffinityTerm' x-kubernetes-list-type: atomic github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.Condition: type: object title: Condition contains details about resource state properties: lastTransitionTime: title: 'Last time the condition transitioned from one status to another. +optional' $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time' message: type: string title: 'Human-readable message indicating details about last transition. +optional' reason: type: string title: 'Unique, this should be a short, machine understandable string that gives the reason for condition''s last transition. For example, "ImageNotFound" +optional' status: type: string title: 'Condition status, True, False or Unknown. +required' type: type: string title: 'Condition type. +required' github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.Trigger: type: object title: Trigger is an action taken, output produced, an event created, a message sent properties: atLeastOnce: type: boolean title: 'AtLeastOnce determines the trigger execution semantics. Defaults to false. Trigger execution will use at-most-once semantics. If set to true, Trigger execution will switch to at-least-once semantics. +kubebuilder:default=false +optional' dlqTrigger: title: 'If the trigger fails, it will retry up to the configured number of retries. If the maximum retries are reached and the trigger is set to execute atLeastOnce, the dead letter queue (DLQ) trigger will be invoked if specified. Invoking the dead letter queue trigger helps prevent data loss. +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.Trigger' parameters: type: array title: Parameters is the list of parameters applied to the trigger template definition items: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TriggerParameter' policy: title: 'Policy to configure backoff and execution criteria for the trigger +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TriggerPolicy' rateLimit: title: 'Rate limit, default unit is Second +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.RateLimit' retryStrategy: title: 'Retry strategy, defaults to no retry +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.Backoff' template: description: Template describes the trigger specification. $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TriggerTemplate' io.k8s.api.core.v1.ISCSIVolumeSource: description: Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling. type: object required: - targetPortal - iqn - lun properties: chapAuthDiscovery: description: chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication type: boolean chapAuthSession: description: chapAuthSession defines whether support iSCSI Session CHAP authentication type: boolean fsType: description: 'fsType is the filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi' type: string initiatorName: description: initiatorName is the custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface : will be created for the connection. type: string iqn: description: iqn is the target iSCSI Qualified Name. type: string iscsiInterface: description: iscsiInterface is the interface Name that uses an iSCSI transport. Defaults to 'default' (tcp). type: string lun: description: lun represents iSCSI Target Lun number. type: integer portals: description: portals is the iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260). type: array items: type: string x-kubernetes-list-type: atomic readOnly: description: readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. type: boolean secretRef: description: secretRef is the CHAP Secret for iSCSI target and initiator authentication $ref: '#/definitions/io.k8s.api.core.v1.LocalObjectReference' targetPortal: description: targetPortal is iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260). type: string github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.ExprFilter: type: object properties: expr: description: Expr refers to the expression that determines the outcome of the filter. type: string fields: description: Fields refers to set of keys that refer to the paths within event payload. type: array items: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.PayloadField' io.k8s.api.core.v1.ConfigMapProjection: description: 'Adapts a ConfigMap into a projected volume. The contents of the target ConfigMap''s Data field will be presented in a projected volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. Note that this is identical to a configmap volume source without the default mode.' type: object properties: items: description: items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.KeyToPath' x-kubernetes-list-type: atomic name: description: 'Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' type: string optional: description: optional specify whether the ConfigMap or its keys must be defined type: boolean io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1: description: 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format. Each key is either a ''.'' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: ''f:'', where is the name of a field in a struct, or key in a map ''v:'', where is the exact json formatted value of a list item ''i:'', where is position of a item in a list ''k:'', where is a map of a list item''s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set. The exact format is defined in sigs.k8s.io/structured-merge-diff' type: object github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.AWSLambdaTrigger: type: object title: AWSLambdaTrigger refers to specification of the trigger to invoke an AWS Lambda function properties: accessKey: title: 'AccessKey refers K8s secret containing aws access key +optional' $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' functionName: description: FunctionName refers to the name of the function to invoke. type: string invocationType: description: "Choose from the following options.\n\n * RequestResponse (default) - Invoke the function synchronously. Keep\n the connection open until the function returns a response or times out.\n The API response includes the function response and additional data.\n\n * Event - Invoke the function asynchronously. Send events that fail multiple\n times to the function's dead-letter queue (if it's configured). The API\n response only includes a status code.\n\n * DryRun - Validate parameter values and verify that the user or role\n has permission to invoke the function.\n+optional" type: string parameters: type: array title: 'Parameters is the list of key-value extracted from event''s payload that are applied to the trigger resource. +optional' items: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TriggerParameter' payload: description: Payload is the list of key-value extracted from an event payload to construct the request payload. type: array items: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TriggerParameter' region: type: string title: Region is AWS region roleARN: type: string title: 'RoleARN is the Amazon Resource Name (ARN) of the role to assume. +optional' secretKey: title: 'SecretKey refers K8s secret containing aws secret key +optional' $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' io.k8s.api.core.v1.FlexVolumeSource: description: FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin. type: object required: - driver properties: driver: description: driver is the name of the driver to use for this volume. type: string fsType: description: fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". The default filesystem depends on FlexVolume script. type: string options: description: 'options is Optional: this field holds extra command options if any.' type: object additionalProperties: type: string readOnly: description: 'readOnly is Optional: defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.' type: boolean secretRef: description: 'secretRef is Optional: secretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts.' $ref: '#/definitions/io.k8s.api.core.v1.LocalObjectReference' io.k8s.api.core.v1.StorageOSVolumeSource: description: Represents a StorageOS persistent volume resource. type: object properties: fsType: description: fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. type: string readOnly: description: readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. type: boolean secretRef: description: secretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted. $ref: '#/definitions/io.k8s.api.core.v1.LocalObjectReference' volumeName: description: volumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace. type: string volumeNamespace: description: volumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to "default" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created. type: string io.k8s.api.core.v1.EnvVar: description: EnvVar represents an environment variable present in a Container. type: object required: - name properties: name: description: Name of the environment variable. May consist of any printable ASCII characters except '='. type: string value: description: 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables. 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. Defaults to "".' type: string valueFrom: description: Source for the environment variable's value. Cannot be used if value is not empty. $ref: '#/definitions/io.k8s.api.core.v1.EnvVarSource' github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.S3Bucket: type: object title: S3Bucket contains information to describe an S3 Bucket properties: key: type: string name: type: string github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.SASLConfig: type: object title: SASLConfig refers to SASL configuration for a client properties: mechanism: type: string title: 'SASLMechanism is the name of the enabled SASL mechanism. Possible values: OAUTHBEARER, PLAIN (defaults to PLAIN). +optional' passwordSecret: title: Password for SASL/PLAIN authentication $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' userSecret: title: 'User is the authentication identity (authcid) to present for SASL/PLAIN or SASL/SCRAM authentication' $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' io.k8s.api.core.v1.NodeSelector: description: A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms. type: object required: - nodeSelectorTerms properties: nodeSelectorTerms: description: Required. A list of node selector terms. The terms are ORed. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.NodeSelectorTerm' x-kubernetes-list-type: atomic x-kubernetes-map-type: atomic io.k8s.api.core.v1.FileKeySelector: description: FileKeySelector selects a key of the env file. type: object required: - volumeName - path - key properties: key: description: The key within the env file. An invalid key will prevent the pod from starting. The keys defined within a source may consist of any printable ASCII characters except '='. During Alpha stage of the EnvFiles feature gate, the key size is limited to 128 characters. type: string optional: description: 'Specify whether the file or its key must be defined. If the file or key does not exist, then the env var is not published. If optional is set to true and the specified key does not exist, the environment variable will not be set in the Pod''s containers. If optional is set to false and the specified key does not exist, an error will be returned during Pod creation.' type: boolean path: description: The path within the volume from which to select the file. Must be relative and may not contain the '..' path or start with '..'. type: string volumeName: description: The name of the volume mount containing the env file. type: string x-kubernetes-map-type: atomic io.k8s.api.core.v1.EphemeralVolumeSource: description: Represents an ephemeral volume that is handled by a normal storage driver. type: object properties: volumeClaimTemplate: description: 'Will be used to create a stand-alone PVC to provision the volume. The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, i.e. the PVC will be deleted together with the pod. The name of the PVC will be `-` where `` is the name from the `PodSpec.Volumes` array entry. Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long). An existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake. Starting the pod is then blocked until the unrelated PVC is removed. If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists. Normally this should not be necessary, but it may be useful when manually reconstructing a broken cluster. This field is read-only and no changes will be made by Kubernetes to the PVC after it has been created. Required, must not be nil.' $ref: '#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimTemplate' github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.Template: type: object title: Template holds the information of a deployment template properties: affinity: title: 'If specified, the pod''s scheduling constraints +optional' $ref: '#/definitions/io.k8s.api.core.v1.Affinity' container: title: 'Container is the main container image to run in the sensor pod +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.Container' imagePullSecrets: type: array title: 'ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod +optional +patchMergeKey=name +patchStrategy=merge' items: $ref: '#/definitions/io.k8s.api.core.v1.LocalObjectReference' metadata: title: Metadata sets the pods's metadata, i.e. annotations and labels $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.Metadata' nodeSelector: type: object title: 'NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node''s labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/ +optional' additionalProperties: type: string priority: type: integer title: 'The priority value. Various system components use this field to find the priority of the EventSource pod. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority. More info: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/ +optional' priorityClassName: type: string title: 'If specified, indicates the EventSource pod''s priority. "system-node-critical" and "system-cluster-critical" are two special keywords which indicate the highest priorities with the former being the highest priority. Any other name must be defined by creating a PriorityClass object with that name. If not specified, the pod priority will be default or zero if there is no default. More info: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/ +optional' securityContext: title: 'SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field. +optional' $ref: '#/definitions/io.k8s.api.core.v1.PodSecurityContext' serviceAccountName: type: string title: 'ServiceAccountName is the name of the ServiceAccount to use to run sensor pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ +optional' tolerations: type: array title: 'If specified, the pod''s tolerations. +optional' items: $ref: '#/definitions/io.k8s.api.core.v1.Toleration' volumes: type: array title: 'Volumes is a list of volumes that can be mounted by containers in a io.argoproj.workflow.v1alpha1. +patchStrategy=merge +patchMergeKey=name +optional' items: $ref: '#/definitions/io.k8s.api.core.v1.Volume' github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EmailTrigger: description: EmailTrigger refers to the specification of the email notification trigger. type: object properties: body: type: string title: 'Body refers to the body/content of the email send. +optional' from: type: string title: 'From refers to the address from which the email is send from. +optional' host: description: Host refers to the smtp host url to which email is send. type: string parameters: type: array title: 'Parameters is the list of key-value extracted from event''s payload that are applied to the trigger resource. +optional' items: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TriggerParameter' port: type: integer title: 'Port refers to the smtp server port to which email is send. Defaults to 0. +optional' smtpPassword: title: 'SMTPPassword refers to the Kubernetes secret that holds the smtp password used to connect to smtp server. +optional' $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' subject: type: string title: 'Subject refers to the subject line for the email send. +optional' to: type: array title: 'To refers to the email addresses to which the emails are send. +optional' items: type: string username: type: string title: 'Username refers to the username used to connect to the smtp server. +optional' io.k8s.api.core.v1.VolumeMount: description: VolumeMount describes a mounting of a Volume within a container. type: object required: - name - mountPath properties: mountPath: description: Path within the container at which the volume should be mounted. Must not contain ':'. type: string mountPropagation: description: mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10. When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None). type: string name: description: This must match the Name of a Volume. type: string readOnly: description: Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false. type: boolean recursiveReadOnly: description: 'RecursiveReadOnly specifies whether read-only mounts should be handled recursively. If ReadOnly is false, this field has no meaning and must be unspecified. If ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only. If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime. If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reason. If this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None). If this field is not specified, it is treated as an equivalent of Disabled.' type: string subPath: description: Path within the volume from which the container's volume should be mounted. Defaults to "" (volume's root). type: string subPathExpr: description: Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to "" (volume's root). SubPathExpr and SubPath are mutually exclusive. type: string io.k8s.api.core.v1.PersistentVolumeClaimTemplate: description: PersistentVolumeClaimTemplate is used to produce PersistentVolumeClaim objects as part of an EphemeralVolumeSource. type: object required: - spec properties: metadata: description: May contain labels and annotations that will be copied into the PVC when creating it. No other fields are allowed and will be rejected during validation. $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta' spec: description: The specification for the PersistentVolumeClaim. The entire content is copied unchanged into the PVC that gets created from this template. The same fields as in a PersistentVolumeClaim are also valid here. $ref: '#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimSpec' github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.GitArtifact: type: object title: GitArtifact contains information about an artifact stored in git properties: branch: type: string title: 'Branch to use to pull trigger resource +optional' cloneDirectory: description: 'Directory to clone the repository. We clone complete directory because GitArtifact is not limited to any specific Git service providers. Hence we don''t use any specific git provider client.' type: string creds: title: 'Creds contain reference to git username and password +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.GitCreds' filePath: type: string title: Path to file that contains trigger resource definition insecureIgnoreHostKey: type: boolean title: 'Whether to ignore host key +optional' ref: type: string title: 'Ref to use to pull trigger resource. Will result in a shallow clone and fetch. +optional' remote: title: 'Remote to manage set of tracked repositories. Defaults to "origin". Refer https://git-scm.com/docs/git-remote +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.GitRemoteConfig' sshKeySecret: title: SSHKeySecret refers to the secret that contains SSH key $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' tag: type: string title: 'Tag to use to pull trigger resource +optional' url: type: string title: Git URL grpc.gateway.runtime.Error: type: object properties: code: type: integer details: type: array items: $ref: '#/definitions/google.protobuf.Any' error: type: string message: type: string io.k8s.api.core.v1.SecretEnvSource: description: 'SecretEnvSource selects a Secret to populate the environment variables with. The contents of the target Secret''s Data field will represent the key-value pairs as environment variables.' type: object properties: name: description: 'Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' type: string optional: description: Specify whether the Secret must be defined type: boolean io.k8s.api.core.v1.AppArmorProfile: description: AppArmorProfile defines a pod or container's AppArmor settings. type: object required: - type properties: localhostProfile: description: localhostProfile indicates a profile loaded on the node that should be used. The profile must be preconfigured on the node to work. Must match the loaded name of the profile. Must be set if and only if type is "Localhost". type: string type: description: "type indicates which kind of AppArmor profile will be applied. Valid options are:\n Localhost - a profile pre-loaded on the node.\n RuntimeDefault - the container runtime's default profile.\n Unconfined - no AppArmor enforcement." type: string x-kubernetes-unions: - discriminator: type fields-to-discriminateBy: localhostProfile: LocalhostProfile io.k8s.api.core.v1.SecurityContext: description: SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence. type: object properties: allowPrivilegeEscalation: description: 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when spec.os.name is windows.' type: boolean appArmorProfile: description: appArmorProfile is the AppArmor options to use by this container. If set, this profile overrides the pod's appArmorProfile. Note that this field cannot be set when spec.os.name is windows. $ref: '#/definitions/io.k8s.api.core.v1.AppArmorProfile' capabilities: description: The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime. Note that this field cannot be set when spec.os.name is windows. $ref: '#/definitions/io.k8s.api.core.v1.Capabilities' privileged: description: Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false. Note that this field cannot be set when spec.os.name is windows. type: boolean procMount: description: procMount denotes the type of proc mount to use for the containers. The default value is Default which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled. Note that this field cannot be set when spec.os.name is windows. type: string readOnlyRootFilesystem: description: Whether this container has a read-only root filesystem. Default is false. Note that this field cannot be set when spec.os.name is windows. type: boolean runAsGroup: description: The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows. type: integer runAsNonRoot: description: Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. type: boolean runAsUser: description: The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows. type: integer seLinuxOptions: description: The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows. $ref: '#/definitions/io.k8s.api.core.v1.SELinuxOptions' seccompProfile: description: The seccomp options to use by this container. If seccomp options are provided at both the pod & container level, the container options override the pod options. Note that this field cannot be set when spec.os.name is windows. $ref: '#/definitions/io.k8s.api.core.v1.SeccompProfile' windowsOptions: description: The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is linux. $ref: '#/definitions/io.k8s.api.core.v1.WindowsSecurityContextOptions' io.k8s.api.core.v1.PersistentVolumeClaimSpec: description: PersistentVolumeClaimSpec describes the common attributes of storage devices and allows a Source for provider-specific attributes type: object properties: accessModes: description: 'accessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1' type: array items: type: string x-kubernetes-list-type: atomic dataSource: description: 'dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source. When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified. If the namespace is specified, then dataSourceRef will not be copied to dataSource.' $ref: '#/definitions/io.k8s.api.core.v1.TypedLocalObjectReference' dataSourceRef: description: "dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired. This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object. When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner. This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value. For backwards compatibility, when namespace isn't specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty. When namespace is specified in dataSourceRef, dataSource isn't set to the same value and must be empty. There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef\n allows any non-core object, as well as PersistentVolumeClaim objects.\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\n preserves all values, and generates an error if a disallowed value is\n specified.\n* While dataSource only allows local objects, dataSourceRef allows objects\n in any namespaces.\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled. (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled." $ref: '#/definitions/io.k8s.api.core.v1.TypedObjectReference' resources: description: 'resources represents the minimum resources the volume should have. Users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources' $ref: '#/definitions/io.k8s.api.core.v1.VolumeResourceRequirements' selector: description: selector is a label query over volumes to consider for binding. $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector' storageClassName: description: 'storageClassName is the name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1' type: string volumeAttributesClassName: description: 'volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim. If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass. This has a different purpose than storageClassName, it can be changed after the claim is created. An empty string or nil value indicates that no VolumeAttributesClass will be applied to the claim. If the claim enters an Infeasible error state, this field can be reset to its previous value (including nil) to cancel the modification. If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists. More info: https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/' type: string volumeMode: description: volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec. type: string volumeName: description: volumeName is the binding reference to the PersistentVolume backing this claim. type: string github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TriggerPolicy: type: object title: TriggerPolicy dictates the policy for the trigger retries properties: k8s: title: K8SResourcePolicy refers to the policy used to check the state of K8s based triggers using using labels $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.K8SResourcePolicy' status: title: Status refers to the policy used to check the state of the trigger using response status $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.StatusPolicy' io.k8s.api.core.v1.HostPathVolumeSource: description: Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling. type: object required: - path properties: path: description: 'path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath' type: string type: description: 'type for HostPath Volume Defaults to "" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath' type: string io.k8s.api.core.v1.ResourceClaim: description: ResourceClaim references one entry in PodSpec.ResourceClaims. type: object required: - name properties: name: description: Name must match the name of one entry in pod.spec.resourceClaims of the Pod where this field is used. It makes that resource available inside a container. type: string request: description: Request is the name chosen for a request in the referenced claim. If empty, everything from the claim is made available, otherwise only the result of this request. type: string github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.Amount: description: Amount represent a numeric amount. type: object properties: value: type: string format: byte io.k8s.api.core.v1.CephFSVolumeSource: description: Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling. type: object required: - monitors properties: monitors: description: 'monitors is Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' type: array items: type: string x-kubernetes-list-type: atomic path: description: 'path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /' type: string readOnly: description: 'readOnly is Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' type: boolean secretFile: description: 'secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' type: string secretRef: description: 'secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' $ref: '#/definitions/io.k8s.api.core.v1.LocalObjectReference' user: description: 'user is optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' type: string github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.Container: type: object title: Container defines customized spec for a container properties: env: type: array title: +optional items: $ref: '#/definitions/io.k8s.api.core.v1.EnvVar' envFrom: type: array title: +optional items: $ref: '#/definitions/io.k8s.api.core.v1.EnvFromSource' imagePullPolicy: type: string title: +optional resources: title: +optional $ref: '#/definitions/io.k8s.api.core.v1.ResourceRequirements' securityContext: title: +optional $ref: '#/definitions/io.k8s.api.core.v1.SecurityContext' volumeMounts: type: array title: +optional items: $ref: '#/definitions/io.k8s.api.core.v1.VolumeMount' github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.AzureServiceBusTrigger: type: object properties: connectionString: title: ConnectionString is the connection string for the Azure Service Bus $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' parameters: type: array title: 'Parameters is the list of key-value extracted from event''s payload that are applied to the trigger resource. +optional' items: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TriggerParameter' payload: description: Payload is the list of key-value extracted from an event payload to construct the request payload. type: array items: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TriggerParameter' queueName: type: string title: QueueName is the name of the Azure Service Bus Queue subscriptionName: type: string title: SubscriptionName is the name of the Azure Service Bus Topic Subscription tls: title: 'TLS configuration for the service bus client +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TLSConfig' topicName: type: string title: TopicName is the name of the Azure Service Bus Topic io.k8s.api.core.v1.WindowsSecurityContextOptions: description: WindowsSecurityContextOptions contain Windows-specific options and credentials. type: object properties: gmsaCredentialSpec: description: GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field. type: string gmsaCredentialSpecName: description: GMSACredentialSpecName is the name of the GMSA credential spec to use. type: string hostProcess: description: HostProcess determines if a container should be run as a 'Host Process' container. All of a Pod's containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). In addition, if HostProcess is true then HostNetwork must also be set to true. type: boolean runAsUserName: description: The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. type: string github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.Int64OrString: type: object properties: int64Val: type: string strVal: type: string type: type: string github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.CustomTrigger: description: CustomTrigger refers to the specification of the custom trigger. type: object properties: certSecret: description: CertSecret refers to the secret that contains cert for secure connection between sensor and custom trigger gRPC server. $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' parameters: description: Parameters is the list of parameters that is applied to resolved custom trigger trigger object. type: array items: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TriggerParameter' payload: description: Payload is the list of key-value extracted from an event payload to construct the request payload. type: array items: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TriggerParameter' secure: type: boolean title: Secure refers to type of the connection between sensor to custom trigger gRPC serverNameOverride: description: ServerNameOverride for the secure connection between sensor and custom trigger gRPC server. type: string serverURL: type: string title: ServerURL is the url of the gRPC server that executes custom trigger spec: description: Spec is the custom trigger resource specification that custom trigger gRPC server knows how to interpret. type: object additionalProperties: type: string github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TriggerTemplate: description: TriggerTemplate is the template that describes trigger specification. type: object properties: argoWorkflow: title: 'ArgoWorkflow refers to the trigger that can perform various operations on an Argo io.argoproj.workflow.v1alpha1. +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.ArgoWorkflowTrigger' awsLambda: title: 'AWSLambda refers to the trigger designed to invoke AWS Lambda function with with on-the-fly constructable payload. +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.AWSLambdaTrigger' azureEventHubs: title: 'AzureEventHubs refers to the trigger send an event to an Azure Event Hub. +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.AzureEventHubsTrigger' azureServiceBus: title: 'AzureServiceBus refers to the trigger designed to place messages on Azure Service Bus +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.AzureServiceBusTrigger' conditions: type: string title: 'Conditions is the conditions to execute the trigger. For example: "(dep01 || dep02) && dep04" +optional' conditionsReset: type: array title: 'Criteria to reset the conditons +optional' items: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.ConditionsResetCriteria' custom: title: 'CustomTrigger refers to the trigger designed to connect to a gRPC trigger server and execute a custom trigger. +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.CustomTrigger' email: title: 'Email refers to the trigger designed to send an email notification +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EmailTrigger' http: title: 'HTTP refers to the trigger designed to dispatch a HTTP request with on-the-fly constructable payload. +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.HTTPTrigger' k8s: title: 'StandardK8STrigger refers to the trigger designed to create or update a generic Kubernetes resource. +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.StandardK8STrigger' kafka: description: 'Kafka refers to the trigger designed to place messages on Kafka topic. +optional.' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.KafkaTrigger' log: title: 'Log refers to the trigger designed to invoke log the io.argoproj.workflow.v1alpha1. +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.LogTrigger' name: description: Name is a unique name of the action to take. type: string nats: description: 'NATS refers to the trigger designed to place message on NATS subject. +optional.' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.NATSTrigger' openWhisk: title: 'OpenWhisk refers to the trigger designed to invoke OpenWhisk action. +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.OpenWhiskTrigger' pulsar: title: 'Pulsar refers to the trigger designed to place messages on Pulsar topic. +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.PulsarTrigger' slack: title: 'Slack refers to the trigger designed to send slack notification message. +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.SlackTrigger' github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.SensorSpec: type: object title: SensorSpec represents desired sensor state properties: dependencies: description: Dependencies is a list of the events that this sensor is dependent on. type: array items: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventDependency' errorOnFailedRound: description: 'ErrorOnFailedRound if set to true, marks sensor state as `error` if the previous trigger round fails. Once sensor state is set to `error`, no further triggers will be processed.' type: boolean eventBusName: type: string title: EventBusName references to a EventBus name. By default the value is "default" loggingFields: type: object title: 'LoggingFields add additional key-value pairs when logging happens +optional' additionalProperties: type: string replicas: type: integer title: Replicas is the sensor deployment replicas revisionHistoryLimit: type: integer title: 'RevisionHistoryLimit specifies how many old deployment revisions to retain +optional' template: title: 'Template is the pod specification for the sensor +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.Template' triggers: description: Triggers is a list of the things that this sensor evokes. These are the outputs from this sensor. type: array items: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.Trigger' io.k8s.api.core.v1.ConfigMapKeySelector: description: Selects a key from a ConfigMap. type: object required: - key properties: key: description: The key to select. type: string name: description: 'Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' type: string optional: description: Specify whether the ConfigMap or its key must be defined type: boolean x-kubernetes-map-type: atomic io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource: description: 'Represents a Persistent Disk resource in AWS. An AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.' type: object required: - volumeID properties: fsType: description: 'fsType is the filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore' type: string partition: description: 'partition is the partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty).' type: integer readOnly: description: 'readOnly value true will force the readOnly setting in VolumeMounts. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore' type: boolean volumeID: description: 'volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore' type: string io.k8s.api.core.v1.CinderVolumeSource: description: Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling. type: object required: - volumeID properties: fsType: description: 'fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md' type: string readOnly: description: 'readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md' type: boolean secretRef: description: 'secretRef is optional: points to a secret object containing parameters used to connect to OpenStack.' $ref: '#/definitions/io.k8s.api.core.v1.LocalObjectReference' volumeID: description: 'volumeID used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md' type: string io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta: description: ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}. type: object properties: continue: description: continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message. type: string remainingItemCount: description: remainingItemCount is the number of subsequent items in the list which are not included in this list response. If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization. If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization. Servers older than v1.15 do not set this field. The intended use of the remainingItemCount is *estimating* the size of a collection. Clients should not rely on the remainingItemCount to be set or to be exact. type: integer resourceVersion: description: 'String that identifies the server''s internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency' type: string selfLink: description: 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.' type: string github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.HTTPTrigger: type: object title: HTTPTrigger is the trigger for the HTTP request properties: basicAuth: title: 'BasicAuth configuration for the http request. +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.BasicAuth' dynamicHeaders: type: array title: 'Dynamic Headers for the request, sourced from the io.argoproj.workflow.v1alpha1. Same spec as Parameters. +optional' items: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TriggerParameter' headers: type: object title: 'Headers for the HTTP request. +optional' additionalProperties: type: string host: type: string title: 'Host refers to the domain name of the server (for virtual hosting). +optional' method: type: string title: 'Method refers to the type of the HTTP request. Refer https://golang.org/src/net/http/method.go for more io.argoproj.workflow.v1alpha1. Default value is POST. +optional' parameters: description: 'Parameters is the list of key-value extracted from event''s payload that are applied to the HTTP trigger resource.' type: array items: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TriggerParameter' payload: type: array items: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TriggerParameter' secureHeaders: type: array title: 'Secure Headers stored in Kubernetes Secrets for the HTTP requests. +optional' items: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.SecureHeader' timeout: type: string title: 'Timeout refers to the HTTP request timeout in seconds. Default value is 60 seconds. +optional' tls: title: 'TLS configuration for the HTTP client. +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TLSConfig' url: description: URL refers to the URL to send HTTP request to. type: string io.k8s.api.core.v1.ResourceFieldSelector: description: ResourceFieldSelector represents container resources (cpu, memory) and their output format type: object required: - resource properties: containerName: description: 'Container name: required for volumes, optional for env vars' type: string divisor: description: Specifies the output format of the exposed resources, defaults to "1" $ref: '#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity' resource: description: 'Required: resource to select' type: string x-kubernetes-map-type: atomic io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector: description: A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects. type: object properties: matchExpressions: description: matchExpressions is a list of label selector requirements. The requirements are ANDed. type: array items: $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelectorRequirement' x-kubernetes-list-type: atomic matchLabels: description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. type: object additionalProperties: type: string x-kubernetes-map-type: atomic github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.GitCreds: type: object title: GitCreds contain reference to git username and password properties: password: $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' username: $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' io.k8s.api.core.v1.FlockerVolumeSource: description: Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling. type: object properties: datasetName: description: datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated type: string datasetUUID: description: datasetUUID is the UUID of the dataset. This is unique identifier of a Flocker dataset type: string io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta: description: ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. type: object properties: annotations: description: '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' type: object additionalProperties: type: string creationTimestamp: description: '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' $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time' deletionGracePeriodSeconds: description: 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. type: integer deletionTimestamp: description: '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' $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time' finalizers: description: 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. type: array items: type: string x-kubernetes-list-type: set x-kubernetes-patch-strategy: merge generateName: description: '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' type: string generation: description: A sequence number representing a specific generation of the desired state. Populated by the system. Read-only. type: integer labels: description: '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' type: object additionalProperties: type: string managedFields: description: 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. type: array items: $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry' x-kubernetes-list-type: atomic name: description: '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' type: string namespace: description: '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' type: string ownerReferences: description: 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. type: array items: $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference' x-kubernetes-list-map-keys: - uid x-kubernetes-list-type: map x-kubernetes-patch-merge-key: uid x-kubernetes-patch-strategy: merge resourceVersion: description: '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' type: string selfLink: description: 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.' type: string uid: description: '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' type: string io.k8s.apimachinery.pkg.apis.meta.v1.Time: description: Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers. type: string format: date-time io.k8s.api.core.v1.ConfigMapVolumeSource: description: 'Adapts a ConfigMap into a volume. The contents of the target ConfigMap''s Data field will be presented in a volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. ConfigMap volumes support ownership management and SELinux relabeling.' type: object properties: defaultMode: description: 'defaultMode is optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' type: integer items: description: items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.KeyToPath' x-kubernetes-list-type: atomic name: description: 'Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' type: string optional: description: optional specify whether the ConfigMap or its keys must be defined type: boolean github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.SlackThread: type: object properties: broadcastMessageToChannel: type: boolean title: 'BroadcastMessageToChannel allows to also broadcast the message from the thread to the channel +optional' messageAggregationKey: type: string title: 'MessageAggregationKey allows to aggregate the messages to a thread by some key. +optional' io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource: description: Represents a vSphere volume resource. type: object required: - volumePath properties: fsType: description: fsType is filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. type: string storagePolicyID: description: storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName. type: string storagePolicyName: description: storagePolicyName is the storage Policy Based Management (SPBM) profile name. type: string volumePath: description: volumePath is the path that identifies vSphere volume vmdk type: string io.k8s.api.core.v1.NFSVolumeSource: description: Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling. type: object required: - server - path properties: path: description: 'path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs' type: string readOnly: description: 'readOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs' type: boolean server: description: 'server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs' type: string io.k8s.api.core.v1.KeyToPath: description: Maps a string key to a path within a volume. type: object required: - key - path properties: key: description: key is the key to project. type: string mode: description: 'mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' type: integer path: description: path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. type: string io.k8s.api.core.v1.FCVolumeSource: description: Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling. type: object properties: fsType: description: fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. type: string lun: description: 'lun is Optional: FC target lun number' type: integer readOnly: description: 'readOnly is Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.' type: boolean targetWWNs: description: 'targetWWNs is Optional: FC target worldwide names (WWNs)' type: array items: type: string x-kubernetes-list-type: atomic wwids: description: 'wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.' type: array items: type: string x-kubernetes-list-type: atomic sensor.SensorWatchEvent: type: object properties: object: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.Sensor' type: type: string io.k8s.api.core.v1.ResourceRequirements: description: ResourceRequirements describes the compute resource requirements. type: object properties: claims: description: 'Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. This field depends on the DynamicResourceAllocation feature gate. This field is immutable. It can only be set for containers.' type: array items: $ref: '#/definitions/io.k8s.api.core.v1.ResourceClaim' x-kubernetes-list-map-keys: - name x-kubernetes-list-type: map limits: description: 'Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' type: object additionalProperties: $ref: '#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity' requests: description: 'Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. Requests cannot exceed Limits. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' type: object additionalProperties: $ref: '#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity' io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference: description: OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field. type: object required: - apiVersion - kind - name - uid properties: apiVersion: description: API version of the referent. type: string blockOwnerDeletion: description: 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. type: boolean controller: description: If true, this reference points to the managing controller. type: boolean kind: description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' type: string name: description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names' type: string uid: description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids' type: string x-kubernetes-map-type: atomic io.k8s.api.core.v1.PodAffinityTerm: description: Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running type: object required: - topologyKey properties: labelSelector: description: A label query over a set of resources, in this case pods. If it's null, this PodAffinityTerm matches with no Pods. $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector' matchLabelKeys: description: MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration. The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)` to select the group of existing pods which pods will be taken into consideration for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming pod labels will be ignored. The default value is empty. The same key is forbidden to exist in both matchLabelKeys and labelSelector. Also, matchLabelKeys cannot be set when labelSelector isn't set. type: array items: type: string x-kubernetes-list-type: atomic mismatchLabelKeys: description: MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration. The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)` to select the group of existing pods which pods will be taken into consideration for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming pod labels will be ignored. The default value is empty. The same key is forbidden to exist in both mismatchLabelKeys and labelSelector. Also, mismatchLabelKeys cannot be set when labelSelector isn't set. type: array items: type: string x-kubernetes-list-type: atomic namespaceSelector: description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector' namespaces: description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace". type: array items: type: string x-kubernetes-list-type: atomic topologyKey: description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. type: string io.k8s.api.core.v1.SeccompProfile: description: SeccompProfile defines a pod/container's seccomp profile settings. Only one profile source may be set. type: object required: - type properties: localhostProfile: description: localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must be set if type is "Localhost". Must NOT be set for any other type. type: string type: description: 'type indicates which kind of seccomp profile will be applied. Valid options are: Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied.' type: string x-kubernetes-unions: - discriminator: type fields-to-discriminateBy: localhostProfile: LocalhostProfile io.k8s.api.core.v1.GlusterfsVolumeSource: description: Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling. type: object required: - endpoints - path properties: endpoints: description: endpoints is the endpoint name that details Glusterfs topology. type: string path: description: 'path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod' type: string readOnly: description: 'readOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod' type: boolean io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelectorRequirement: description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. type: object required: - key - operator properties: key: description: key is the label key that the selector applies to. type: string operator: description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. type: string values: description: 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. type: array items: type: string x-kubernetes-list-type: atomic github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.NATSTrigger: description: NATSTrigger refers to the specification of the NATS trigger. type: object properties: auth: title: 'AuthInformation +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.NATSAuth' parameters: type: array items: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TriggerParameter' payload: type: array items: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TriggerParameter' subject: description: Name of the subject to put message on. type: string tls: title: 'TLS configuration for the NATS producer. +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TLSConfig' url: description: URL of the NATS cluster. type: string io.k8s.api.core.v1.ConfigMapEnvSource: description: 'ConfigMapEnvSource selects a ConfigMap to populate the environment variables with. The contents of the target ConfigMap''s Data field will represent the key-value pairs as environment variables.' type: object properties: name: description: 'Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' type: string optional: description: Specify whether the ConfigMap must be defined type: boolean io.k8s.api.core.v1.Toleration: description: The pod this Toleration is attached to tolerates any taint that matches the triple using the matching operator . type: object properties: effect: description: Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute. type: string key: description: Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys. type: string operator: description: Operator represents a key's relationship to the value. Valid operators are Exists, Equal, Lt, and Gt. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category. Lt and Gt perform numeric comparisons (requires feature gate TaintTolerationComparisonOperators). type: string tolerationSeconds: description: TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system. type: integer value: description: Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string. type: string github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.ArtifactLocation: type: object title: ArtifactLocation describes the source location for an external artifact properties: configmap: title: Configmap that stores the artifact $ref: '#/definitions/io.k8s.api.core.v1.ConfigMapKeySelector' file: title: File artifact is artifact stored in a file $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.FileArtifact' git: title: Git repository hosting the artifact $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.GitArtifact' inline: type: string title: Inline artifact is embedded in sensor spec as a string resource: title: Resource is generic template for K8s resource $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.K8SResource' s3: title: S3 compliant artifact $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.S3Artifact' url: title: URL to fetch the artifact from $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.URLArtifact' io.k8s.api.core.v1.GitRepoVolumeSource: description: 'Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod''s container.' type: object required: - repository properties: directory: description: directory is the target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name. type: string repository: description: repository is the URL type: string revision: description: revision is the commit hash for the specified revision. type: string io.k8s.api.core.v1.ProjectedVolumeSource: description: Represents a projected volume source type: object properties: defaultMode: description: defaultMode are the mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. type: integer sources: description: sources is the list of volume projections. Each entry in this list handles one source. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.VolumeProjection' x-kubernetes-list-type: atomic io.k8s.api.core.v1.DownwardAPIVolumeFile: description: DownwardAPIVolumeFile represents information to create the file containing the pod field type: object required: - path properties: fieldRef: description: 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported.' $ref: '#/definitions/io.k8s.api.core.v1.ObjectFieldSelector' mode: description: 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' type: integer path: description: 'Required: Path is the relative path name of the file to be created. Must not be absolute or contain the ''..'' path. Must be utf-8 encoded. The first item of the relative path must not start with ''..''' type: string resourceFieldRef: description: 'Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.' $ref: '#/definitions/io.k8s.api.core.v1.ResourceFieldSelector' io.k8s.api.core.v1.VolumeResourceRequirements: description: VolumeResourceRequirements describes the storage resource requirements for a volume. type: object properties: limits: description: 'Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' type: object additionalProperties: $ref: '#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity' requests: description: 'Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. Requests cannot exceed Limits. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' type: object additionalProperties: $ref: '#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity' github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.PulsarTrigger: description: PulsarTrigger refers to the specification of the Pulsar trigger. type: object properties: authAthenzParams: type: object title: 'Authentication athenz parameters for the pulsar client. Refer https://github.com/apache/pulsar-client-go/blob/master/pulsar/auth/athenz.go Either token or athenz can be set to use auth. +optional' additionalProperties: type: string authAthenzSecret: title: 'Authentication athenz privateKey secret for the pulsar client. AuthAthenzSecret must be set if AuthAthenzParams is used. +optional' $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' authTokenSecret: title: 'Authentication token for the pulsar client. Either token or athenz can be set to use auth. +optional' $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' connectionBackoff: title: 'Backoff holds parameters applied to connection. +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.Backoff' parameters: description: Parameters is the list of parameters that is applied to resolved Kafka trigger object. type: array items: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TriggerParameter' payload: description: Payload is the list of key-value extracted from an event payload to construct the request payload. type: array items: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TriggerParameter' tls: title: 'TLS configuration for the pulsar client. +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TLSConfig' tlsAllowInsecureConnection: type: boolean title: 'Whether the Pulsar client accept untrusted TLS certificate from broker. +optional' tlsTrustCertsSecret: title: 'Trusted TLS certificate secret. +optional' $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' tlsValidateHostname: type: boolean title: 'Whether the Pulsar client verify the validity of the host name from broker. +optional' topic: type: string title: 'Name of the topic. See https://pulsar.apache.org/docs/en/concepts-messaging/' url: type: string title: 'Configure the service URL for the Pulsar service. +required' github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.ArgoWorkflowTrigger: type: object title: ArgoWorkflowTrigger is the trigger for the Argo Workflow properties: args: type: array title: Args is the list of arguments to pass to the argo CLI items: type: string operation: type: string title: 'Operation refers to the type of operation performed on the argo workflow resource. Default value is Submit. +optional' parameters: type: array title: Parameters is the list of parameters to pass to resolved Argo Workflow object items: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TriggerParameter' source: title: Source of the K8s resource file(s) $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.ArtifactLocation' github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.URLArtifact: description: URLArtifact contains information about an artifact at an HTTP endpoint. type: object properties: path: type: string title: Path is the complete URL verifyCert: type: boolean title: VerifyCert decides whether the connection is secure or not io.k8s.api.core.v1.PodCertificateProjection: description: PodCertificateProjection provides a private key and X.509 certificate in the pod filesystem. type: object required: - signerName - keyType properties: certificateChainPath: description: 'Write the certificate chain at this path in the projected volume. Most applications should use credentialBundlePath. When using keyPath and certificateChainPath, your application needs to check that the key and leaf certificate are consistent, because it is possible to read the files mid-rotation.' type: string credentialBundlePath: description: 'Write the credential bundle at this path in the projected volume. The credential bundle is a single file that contains multiple PEM blocks. The first PEM block is a PRIVATE KEY block, containing a PKCS#8 private key. The remaining blocks are CERTIFICATE blocks, containing the issued certificate chain from the signer (leaf and any intermediates). Using credentialBundlePath lets your Pod''s application code make a single atomic read that retrieves a consistent key and certificate chain. If you project them to separate files, your application code will need to additionally check that the leaf certificate was issued to the key.' type: string keyPath: description: 'Write the key at this path in the projected volume. Most applications should use credentialBundlePath. When using keyPath and certificateChainPath, your application needs to check that the key and leaf certificate are consistent, because it is possible to read the files mid-rotation.' type: string keyType: description: 'The type of keypair Kubelet will generate for the pod. Valid values are "RSA3072", "RSA4096", "ECDSAP256", "ECDSAP384", "ECDSAP521", and "ED25519".' type: string maxExpirationSeconds: description: 'maxExpirationSeconds is the maximum lifetime permitted for the certificate. Kubelet copies this value verbatim into the PodCertificateRequests it generates for this projection. If omitted, kube-apiserver will set it to 86400(24 hours). kube-apiserver will reject values shorter than 3600 (1 hour). The maximum allowable value is 7862400 (91 days). The signer implementation is then free to issue a certificate with any lifetime *shorter* than MaxExpirationSeconds, but no shorter than 3600 seconds (1 hour). This constraint is enforced by kube-apiserver. `kubernetes.io` signers will never issue certificates with a lifetime longer than 24 hours.' type: integer signerName: description: Kubelet's generated CSRs will be addressed to this signer. type: string userAnnotations: description: 'userAnnotations allow pod authors to pass additional information to the signer implementation. Kubernetes does not restrict or validate this metadata in any way. These values are copied verbatim into the `spec.unverifiedUserAnnotations` field of the PodCertificateRequest objects that Kubelet creates. Entries are subject to the same validation as object metadata annotations, with the addition that all keys must be domain-prefixed. No restrictions are placed on values, except an overall size limitation on the entire field. Signers should document the keys and values they support. Signers should deny requests that contain keys they do not recognize.' type: object additionalProperties: type: string io.k8s.api.core.v1.NodeSelectorRequirement: description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. type: object required: - key - operator properties: key: description: The label key that the selector applies to. type: string operator: description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. type: string values: description: 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. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. type: array items: type: string x-kubernetes-list-type: atomic github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TriggerParameterSource: type: object title: TriggerParameterSource defines the source for a parameter from a event event properties: contextKey: description: 'ContextKey is the JSONPath of the event''s (JSON decoded) context key ContextKey is a series of keys separated by a dot. A key may contain wildcard characters ''*'' and ''?''. To access an array value use the index as the key. The dot and wildcard characters can be escaped with ''\\''. See https://github.com/tidwall/gjson#path-syntax for more information on how to use this.' type: string contextTemplate: type: string title: 'ContextTemplate is a go-template for extracting a string from the event''s context. If a ContextTemplate is provided with a ContextKey, the template will be evaluated first and fallback to the ContextKey. The templating follows the standard go-template syntax as well as sprig''s extra functions. See https://pkg.go.dev/text/template and https://masterminds.github.io/sprig/' dataKey: description: 'DataKey is the JSONPath of the event''s (JSON decoded) data key DataKey is a series of keys separated by a dot. A key may contain wildcard characters ''*'' and ''?''. To access an array value use the index as the key. The dot and wildcard characters can be escaped with ''\\''. See https://github.com/tidwall/gjson#path-syntax for more information on how to use this.' type: string dataTemplate: type: string title: 'DataTemplate is a go-template for extracting a string from the event''s data. If a DataTemplate is provided with a DataKey, the template will be evaluated first and fallback to the DataKey. The templating follows the standard go-template syntax as well as sprig''s extra functions. See https://pkg.go.dev/text/template and https://masterminds.github.io/sprig/' dependencyName: description: 'DependencyName refers to the name of the dependency. The event which is stored for this dependency is used as payload for the parameterization. Make sure to refer to one of the dependencies you have defined under Dependencies list.' type: string useRawData: type: boolean title: 'UseRawData indicates if the value in an event at data key should be used without converting to string. When true, a number, boolean, json or string parameter may be extracted. When the field is unspecified, or explicitly false, the behavior is to turn the extracted field into a string. (e.g. when set to true, the parameter 123 will resolve to the numerical type, but when false, or not provided, the string "123" will be resolved) +optional' value: description: 'Value is the default literal value to use for this parameter source This is only used if the DataKey is invalid. If the DataKey is invalid and this is not defined, this param source will produce an error.' type: string io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry: description: ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to. type: object properties: apiVersion: description: 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. type: string fieldsType: description: 'FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: "FieldsV1"' type: string fieldsV1: description: FieldsV1 holds the first JSON version format as described in the "FieldsV1" type. $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1' manager: description: Manager is an identifier of the workflow managing these fields. type: string operation: description: Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'. type: string subresource: description: 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. type: string time: description: 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. $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time' io.k8s.api.core.v1.EnvVarSource: description: EnvVarSource represents a source for the value of an EnvVar. type: object properties: configMapKeyRef: description: Selects a key of a ConfigMap. $ref: '#/definitions/io.k8s.api.core.v1.ConfigMapKeySelector' fieldRef: description: 'Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['''']`, `metadata.annotations['''']`, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.' $ref: '#/definitions/io.k8s.api.core.v1.ObjectFieldSelector' fileKeyRef: description: FileKeyRef selects a key of the env file. Requires the EnvFiles feature gate to be enabled. $ref: '#/definitions/io.k8s.api.core.v1.FileKeySelector' resourceFieldRef: description: 'Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.' $ref: '#/definitions/io.k8s.api.core.v1.ResourceFieldSelector' secretKeyRef: description: Selects a key of a secret in the pod's namespace $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' io.k8s.api.core.v1.RBDVolumeSource: description: Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling. type: object required: - monitors - image properties: fsType: description: 'fsType is the filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd' type: string image: description: 'image is the rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' type: string keyring: description: 'keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' type: string monitors: description: 'monitors is a collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' type: array items: type: string x-kubernetes-list-type: atomic pool: description: 'pool is the rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' type: string readOnly: description: 'readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' type: boolean secretRef: description: 'secretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' $ref: '#/definitions/io.k8s.api.core.v1.LocalObjectReference' user: description: 'user is the rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' type: string io.k8s.api.core.v1.Affinity: description: Affinity is a group of affinity scheduling rules. type: object properties: nodeAffinity: description: Describes node affinity scheduling rules for the pod. $ref: '#/definitions/io.k8s.api.core.v1.NodeAffinity' podAffinity: description: Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)). $ref: '#/definitions/io.k8s.api.core.v1.PodAffinity' podAntiAffinity: description: Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)). $ref: '#/definitions/io.k8s.api.core.v1.PodAntiAffinity' github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.ConditionsResetCriteria: type: object properties: byTime: title: 'Schedule is a cron-like expression. For reference, see: https://en.wikipedia.org/wiki/Cron' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.ConditionsResetByTime' github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TimeFilter: description: 'TimeFilter describes a window in time. It filters out events that occur outside the time limits. In other words, only events that occur after Start and before Stop will pass this filter.' type: object properties: start: description: 'Start is the beginning of a time window in UTC. Before this time, events for this dependency are ignored. Format is hh:mm:ss.' type: string stop: description: 'Stop is the end of a time window in UTC. After or equal to this time, events for this dependency are ignored and Format is hh:mm:ss. If it is smaller than Start, it is treated as next day of Start (e.g.: 22:00:00-01:00:00 means 22:00:00-25:00:00).' type: string timezone: type: string title: 'Timezone specifies the timezone for the time window. If not specified, defaults to UTC. Format should be a valid IANA timezone name (e.g., "America/New_York", "Europe/London"). +optional' github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventContext: type: object title: 'EventContext holds the context of the cloudevent received from an event source. +protobuf.options.(gogoproto.goproto_stringer)=false' properties: datacontenttype: description: DataContentType - A MIME (RFC2046) string describing the media type of `data`. type: string id: description: ID of the event; must be non-empty and unique within the scope of the producer. type: string source: description: Source - A URI describing the event producer. type: string specversion: description: SpecVersion - The version of the CloudEvents specification used by the io.argoproj.workflow.v1alpha1. type: string subject: type: string title: Subject - The subject of the event in the context of the event producer time: description: Time - A Timestamp when the event happened. $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time' type: description: Type - The type of the occurrence which has happened. type: string io.k8s.api.core.v1.SecretVolumeSource: description: 'Adapts a Secret into a volume. The contents of the target Secret''s Data field will be presented in a volume as files using the keys in the Data field as the file names. Secret volumes support ownership management and SELinux relabeling.' type: object properties: defaultMode: description: 'defaultMode is Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' type: integer items: description: items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.KeyToPath' x-kubernetes-list-type: atomic optional: description: optional field specify whether the Secret or its keys must be defined type: boolean secretName: description: 'secretName is the name of the secret in the pod''s namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret' type: string github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.K8SResource: description: K8SResource represent arbitrary structured data. type: object properties: value: type: string format: byte github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.StandardK8STrigger: type: object title: StandardK8STrigger is the standard Kubernetes resource trigger properties: liveObject: type: boolean title: 'LiveObject specifies whether the resource should be directly fetched from K8s instead of being marshaled from the resource artifact. If set to true, the resource artifact must contain the information required to uniquely identify the resource in the cluster, that is, you must specify "apiVersion", "kind" as well as "name" and "namespace" meta data. Only valid for operation type `update` +optional' operation: type: string title: 'Operation refers to the type of operation performed on the k8s resource. Default value is Create. +optional' parameters: description: Parameters is the list of parameters that is applied to resolved K8s trigger object. type: array items: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TriggerParameter' patchStrategy: type: string title: 'PatchStrategy controls the K8s object patching strategy when the trigger operation is specified as patch. possible values: "application/json-patch+json" "application/merge-patch+json" "application/strategic-merge-patch+json" "application/apply-patch+yaml". Defaults to "application/merge-patch+json" +optional' source: title: Source of the K8s resource file(s) $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.ArtifactLocation' io.k8s.api.core.v1.ImageVolumeSource: description: ImageVolumeSource represents a image volume resource. type: object properties: pullPolicy: description: 'Policy for pulling OCI objects. Possible values are: Always: the kubelet always attempts to pull the reference. Container creation will fail If the pull fails. Never: the kubelet never pulls the reference and only uses a local image or artifact. Container creation will fail if the reference isn''t present. IfNotPresent: the kubelet pulls if the reference isn''t already present on disk. Container creation will fail if the reference isn''t present and the pull fails. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise.' type: string reference: description: 'Required: Image or artifact reference to be used. Behaves in the same way as pod.spec.containers[*].image. Pull secrets will be assembled in the same way as for the container image by looking up node credentials, SA image pull secrets, and pod spec image pull secrets. 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.' type: string sensor.LogEntry: type: object title: structured log entry properties: dependencyName: type: string title: optional - trigger dependency name eventContext: type: string title: optional - Cloud Event context level: type: string msg: type: string namespace: type: string sensorName: type: string time: $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time' triggerName: type: string title: optional - any trigger name io.k8s.api.core.v1.LocalObjectReference: description: LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace. type: object properties: name: description: 'Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' type: string x-kubernetes-map-type: atomic github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.ConditionsResetByTime: type: object properties: cron: type: string title: 'Cron is a cron-like expression. For reference, see: https://en.wikipedia.org/wiki/Cron' timezone: type: string title: +optional github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.RateLimit: type: object properties: requestsPerUnit: type: integer unit: type: string title: Defaults to Second github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.K8SResourcePolicy: type: object title: K8SResourcePolicy refers to the policy used to check the state of K8s based triggers using labels properties: backoff: title: Backoff before checking resource state $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.Backoff' errorOnBackoffTimeout: type: boolean title: 'ErrorOnBackoffTimeout determines whether sensor should transition to error state if the trigger policy is unable to determine the state of the resource' labels: type: object title: Labels required to identify whether a resource is in success state additionalProperties: type: string github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.S3Filter: type: object title: S3Filter represents filters to apply to bucket notifications for specifying constraints on objects properties: prefix: type: string suffix: type: string sensor.DeleteSensorResponse: type: object sensor.CreateSensorRequest: type: object properties: createOptions: $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.CreateOptions' namespace: type: string sensor: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.Sensor' io.k8s.apimachinery.pkg.api.resource.Quantity: description: "Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and AsInt64() accessors.\n\nThe serialization format is:\n\n``` ::= \n\n\t(Note that may be empty, from the \"\" case in .)\n\n ::= 0 | 1 | ... | 9 ::= | ::= | . | . | . ::= \"+\" | \"-\" ::= | ::= | | ::= Ki | Mi | Gi | Ti | Pi | Ei\n\n\t(International System of units; See: http://physics.nist.gov/cuu/Units/binary.html)\n\n ::= m | \"\" | k | M | G | T | P | E\n\n\t(Note that 1024 = 1Ki but 1000 = 1k; I didn't choose the capitalization.)\n\n ::= \"e\" | \"E\" ```\n\nNo matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities.\n\nWhen a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized.\n\nBefore serializing, Quantity will be put in \"canonical form\". This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that:\n\n- No precision is lost - No fractional digits will be emitted - The exponent (or suffix) is as large as possible.\n\nThe sign will be omitted unless the number is negative.\n\nExamples:\n\n- 1.5 will be serialized as \"1500m\" - 1.5Gi will be serialized as \"1536Mi\"\n\nNote that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise.\n\nNon-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don't diff.)\n\nThis format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation." type: string google.protobuf.Any: type: object properties: type_url: type: string value: type: string format: byte github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.SlackSender: type: object properties: icon: type: string title: 'Icon is the Slack application''s icon, e.g. :robot_face: or https://example.com/image.png +optional' username: type: string title: 'Username is the Slack application''s username +optional' io.k8s.api.core.v1.AzureDiskVolumeSource: description: AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. type: object required: - diskName - diskURI properties: cachingMode: description: 'cachingMode is the Host Caching mode: None, Read Only, Read Write.' type: string diskName: description: diskName is the Name of the data disk in the blob storage type: string diskURI: description: diskURI is the URI of data disk in the blob storage type: string fsType: description: fsType is Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. type: string kind: description: 'kind expected values are Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared' type: string readOnly: description: readOnly Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. type: boolean github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.FileArtifact: type: object title: FileArtifact contains information about an artifact in a filesystem properties: path: type: string io.k8s.api.core.v1.SecretKeySelector: description: SecretKeySelector selects a key of a Secret. type: object required: - key properties: key: description: The key of the secret to select from. Must be a valid secret key. type: string name: description: 'Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' type: string optional: description: Specify whether the Secret or its key must be defined type: boolean x-kubernetes-map-type: atomic io.k8s.api.core.v1.SELinuxOptions: description: SELinuxOptions are the labels to be applied to the container type: object properties: level: description: Level is SELinux level label that applies to the container. type: string role: description: Role is a SELinux role label that applies to the container. type: string type: description: Type is a SELinux type label that applies to the container. type: string user: description: User is a SELinux user label that applies to the container. type: string io.k8s.api.core.v1.NodeSelectorTerm: description: A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm. type: object properties: matchExpressions: description: A list of node selector requirements by node's labels. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.NodeSelectorRequirement' x-kubernetes-list-type: atomic matchFields: description: A list of node selector requirements by node's fields. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.NodeSelectorRequirement' x-kubernetes-list-type: atomic x-kubernetes-map-type: atomic github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventDependencyFilter: description: EventDependencyFilter defines filters and constraints for a io.argoproj.workflow.v1alpha1. type: object properties: context: title: Context filter constraints $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventContext' data: type: array title: Data filter constraints with escalation items: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.DataFilter' dataLogicalOperator: description: 'DataLogicalOperator defines how multiple Data filters (if defined) are evaluated together. Available values: and (&&), or (||) Is optional and if left blank treated as and (&&).' type: string exprLogicalOperator: description: 'ExprLogicalOperator defines how multiple Exprs filters (if defined) are evaluated together. Available values: and (&&), or (||) Is optional and if left blank treated as and (&&).' type: string exprs: description: Exprs contains the list of expressions evaluated against the event payload. type: array items: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.ExprFilter' script: description: Script refers to a Lua script evaluated to determine the validity of an io.argoproj.workflow.v1alpha1. type: string time: title: Time filter on the event with escalation $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TimeFilter' github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.PayloadField: description: PayloadField binds a value at path within the event payload against a name. type: object properties: name: description: Name acts as key that holds the value at the path. type: string path: description: 'Path is the JSONPath of the event''s (JSON decoded) data key Path is a series of keys separated by a dot. A key may contain wildcard characters ''*'' and ''?''. To access an array value use the index as the key. The dot and wildcard characters can be escaped with ''\\''. See https://github.com/tidwall/gjson#path-syntax for more information on how to use this.' type: string github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.S3Artifact: type: object title: S3Artifact contains information about an S3 connection and bucket properties: accessKey: $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' bucket: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.S3Bucket' caCertificate: $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' endpoint: type: string events: type: array items: type: string filter: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.S3Filter' insecure: type: boolean metadata: type: object additionalProperties: type: string region: type: string secretKey: $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' io.k8s.api.core.v1.QuobyteVolumeSource: description: Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling. type: object required: - registry - volume properties: group: description: group to map volume access to Default is no group type: string readOnly: description: readOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false. type: boolean registry: description: registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes type: string tenant: description: tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin type: string user: description: user to map volume access to Defaults to serivceaccount user type: string volume: description: volume is a string that references an already created Quobyte volume by name. type: string io.k8s.api.core.v1.PersistentVolumeClaimVolumeSource: description: PersistentVolumeClaimVolumeSource references the user's PVC in the same namespace. This volume finds the bound PV and mounts that volume for the pod. A PersistentVolumeClaimVolumeSource is, essentially, a wrapper around another type of volume that is owned by someone else (the system). type: object required: - claimName properties: claimName: description: 'claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims' type: string readOnly: description: readOnly Will force the ReadOnly setting in VolumeMounts. Default false. type: boolean io.k8s.api.core.v1.PodAntiAffinity: description: Pod anti affinity is a group of inter pod anti affinity scheduling rules. type: object properties: preferredDuringSchedulingIgnoredDuringExecution: description: The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and subtracting "weight" from the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.WeightedPodAffinityTerm' x-kubernetes-list-type: atomic requiredDuringSchedulingIgnoredDuringExecution: description: If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.PodAffinityTerm' x-kubernetes-list-type: atomic github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.SensorList: type: object title: 'SensorList is the list of Sensor resources +k8s:deepcopy-gen:interfaces=io.k8s.apimachinery/pkg/runtime.Object' properties: items: type: array items: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.Sensor' metadata: $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta' io.k8s.api.core.v1.AzureFileVolumeSource: description: AzureFile represents an Azure File Service mount on the host and bind mount to the pod. type: object required: - secretName - shareName properties: readOnly: description: readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. type: boolean secretName: description: secretName is the name of secret that contains Azure Storage Account Name and Key type: string shareName: description: shareName is the azure share Name type: string github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.BasicAuth: type: object title: BasicAuth contains the reference to K8s secrets that holds the username and password properties: password: description: Password refers to the Kubernetes secret that holds the password required for basic auth. $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' username: description: Username refers to the Kubernetes secret that holds the username required for basic auth. $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' io.k8s.api.core.v1.PortworxVolumeSource: description: PortworxVolumeSource represents a Portworx volume resource. type: object required: - volumeID properties: fsType: description: fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs". Implicitly inferred to be "ext4" if unspecified. type: string readOnly: description: readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. type: boolean volumeID: description: volumeID uniquely identifies a Portworx volume type: string github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.SlackTrigger: description: SlackTrigger refers to the specification of the slack notification trigger. type: object properties: attachments: type: string title: 'Attachments is a JSON format string that represents an array of Slack attachments according to the attachments API: https://api.slack.com/reference/messaging/attachments . +optional' blocks: type: string title: 'Blocks is a JSON format string that represents an array of Slack blocks according to the blocks API: https://api.slack.com/reference/block-kit/blocks . +optional' channel: type: string title: 'Channel refers to which Slack channel to send Slack message. +optional' message: type: string title: 'Message refers to the message to send to the Slack channel. +optional' parameters: type: array title: 'Parameters is the list of key-value extracted from event''s payload that are applied to the trigger resource. +optional' items: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TriggerParameter' sender: title: 'Sender refers to additional configuration of the Slack application that sends the message. +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.SlackSender' slackToken: description: SlackToken refers to the Kubernetes secret that holds the slack token required to send messages. $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' thread: title: 'Thread refers to additional options for sending messages to a Slack thread. +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.SlackThread' securityDefinitions: BearerToken: type: apiKey in: header name: Authorization description: JWT Bearer token