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 EventSourceService API version: 3.6.0 host: localhost:2746 schemes: - http - https consumes: - application/json produces: - application/json security: - BearerToken: [] tags: - name: EventSourceService paths: /api/v1/event-sources/{namespace}: get: tags: - EventSourceService operationId: EventSourceService_ListEventSources 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.EventSourceList' default: description: An unexpected error response. schema: $ref: '#/definitions/grpc.gateway.runtime.Error' x-microcks-operation: delay: 0 dispatcher: FALLBACK post: tags: - EventSourceService operationId: EventSourceService_CreateEventSource parameters: - type: string name: namespace in: path required: true - name: body in: body required: true schema: $ref: '#/definitions/eventsource.CreateEventSourceRequest' responses: '200': description: A successful response. schema: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventSource' default: description: An unexpected error response. schema: $ref: '#/definitions/grpc.gateway.runtime.Error' x-microcks-operation: delay: 0 dispatcher: FALLBACK /api/v1/event-sources/{namespace}/{name}: get: tags: - EventSourceService operationId: EventSourceService_GetEventSource parameters: - type: string name: namespace in: path required: true - type: string name: name in: path required: true responses: '200': description: A successful response. schema: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventSource' default: description: An unexpected error response. schema: $ref: '#/definitions/grpc.gateway.runtime.Error' x-microcks-operation: delay: 0 dispatcher: FALLBACK put: tags: - EventSourceService operationId: EventSourceService_UpdateEventSource 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/eventsource.UpdateEventSourceRequest' responses: '200': description: A successful response. schema: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventSource' default: description: An unexpected error response. schema: $ref: '#/definitions/grpc.gateway.runtime.Error' x-microcks-operation: delay: 0 dispatcher: FALLBACK delete: tags: - EventSourceService operationId: EventSourceService_DeleteEventSource 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/eventsource.EventSourceDeletedResponse' default: description: An unexpected error response. schema: $ref: '#/definitions/grpc.gateway.runtime.Error' x-microcks-operation: delay: 0 dispatcher: FALLBACK /api/v1/stream/event-sources/{namespace}: get: tags: - EventSourceService operationId: EventSourceService_WatchEventSources 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 eventsource.EventSourceWatchEvent properties: error: $ref: '#/definitions/grpc.gateway.runtime.StreamError' result: $ref: '#/definitions/eventsource.EventSourceWatchEvent' default: description: An unexpected error response. schema: $ref: '#/definitions/grpc.gateway.runtime.Error' x-microcks-operation: delay: 0 dispatcher: FALLBACK /api/v1/stream/event-sources/{namespace}/logs: get: tags: - EventSourceService operationId: EventSourceService_EventSourcesLogs parameters: - type: string name: namespace in: path required: true - type: string description: optional - only return entries for this event source. name: name in: query - type: string description: optional - only return entries for this event source type (e.g. `webhook`). name: eventSourceType in: query - type: string description: optional - only return entries for this event name (e.g. `example`). name: eventName in: query - type: string description: optional - only return entries where `msg` matches this regular expression. 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 eventsource.LogEntry properties: error: $ref: '#/definitions/grpc.gateway.runtime.StreamError' result: $ref: '#/definitions/eventsource.LogEntry' default: description: An unexpected error response. schema: $ref: '#/definitions/grpc.gateway.runtime.Error' x-microcks-operation: delay: 0 dispatcher: FALLBACK definitions: github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.WebhookEventSource: type: object title: CalendarEventSource describes an HTTP based EventSource properties: filter: title: 'Filter +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventSourceFilter' webhookContext: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.WebhookContext' 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 github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.SNSEventSource: type: object title: SNSEventSource refers to event-source for AWS SNS related events properties: accessKey: title: AccessKey refers K8s secret containing aws access key $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' endpoint: type: string title: 'Endpoint configures connection to a specific SNS endpoint instead of Amazons servers +optional' filter: title: 'Filter +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventSourceFilter' metadata: type: object title: 'Metadata holds the user defined metadata which will passed along the event payload. +optional' additionalProperties: type: string 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 $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' topicArn: type: string title: TopicArn validateSignature: type: boolean title: 'ValidateSignature is boolean that can be set to true for SNS signature verification +optional' webhook: title: Webhook configuration for http server $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.WebhookContext' 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 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.AMQPExchangeDeclareConfig: type: object title: 'AMQPExchangeDeclareConfig holds the configuration for the exchange on the server +k8s:openapi-gen=true' properties: autoDelete: type: boolean title: 'AutoDelete removes the exchange when no bindings are active +optional' durable: type: boolean title: 'Durable keeps the exchange also after the server restarts +optional' internal: type: boolean title: 'Internal when true does not accept publishings +optional' noWait: type: boolean title: 'NowWait when true does not wait for a confirmation from the server +optional' 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.SlackEventSource: type: object title: SlackEventSource refers to event-source for Slack related events properties: filter: title: 'Filter +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventSourceFilter' metadata: type: object title: 'Metadata holds the user defined metadata which will passed along the event payload. +optional' additionalProperties: type: string signingSecret: title: Slack App signing secret $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' token: title: Token for URL verification handshake $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' webhook: title: Webhook holds configuration for a REST endpoint $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.WebhookContext' 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 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 github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.ResourceEventSource: description: ResourceEventSource refers to a event-source for K8s resource related events. type: object properties: eventTypes: description: 'EventTypes is the list of event type to watch. Possible values are - ADD, UPDATE and DELETE.' type: array items: type: string filter: title: 'Filter is applied on the metadata of the resource If you apply filter, then the internal event informer will only monitor objects that pass the filter. +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.ResourceFilter' groupVersionResource: title: Group of the resource $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.GroupVersionResource' metadata: type: object title: 'Metadata holds the user defined metadata which will passed along the event payload. +optional' additionalProperties: type: string namespace: type: string title: Namespace where resource is deployed 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.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' 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' 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' github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventSourceStatus: type: object title: EventSourceStatus holds the status of the event-source resource properties: status: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.Status' 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.MQTTEventSource: type: object title: MQTTEventSource refers to event-source for MQTT related events properties: auth: title: 'Auth hosts secret selectors for username and password +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.BasicAuth' clientId: type: string title: ClientID is the id of the client connectionBackoff: description: ConnectionBackoff holds backoff applied to connection. $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.Backoff' filter: title: 'Filter +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventSourceFilter' jsonBody: type: boolean title: 'JSONBody specifies that all event body payload coming from this source will be JSON +optional' metadata: type: object title: 'Metadata holds the user defined metadata which will passed along the event payload. +optional' additionalProperties: type: string tls: title: 'TLS configuration for the mqtt client. +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TLSConfig' topic: type: string title: Topic name url: type: string title: URL to connect to broker 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.FileEventSource: description: FileEventSource describes an event-source for file related events. type: object properties: eventType: type: string title: 'Type of file operations to watch Refer https://github.com/fsnotify/fsnotify/blob/master/fsnotify.go for more information' filter: title: 'Filter +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventSourceFilter' metadata: type: object title: 'Metadata holds the user defined metadata which will passed along the event payload. +optional' additionalProperties: type: string polling: type: boolean title: Use polling instead of inotify watchPathConfig: title: WatchPathConfig contains configuration about the file path to watch $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.WatchPathConfig' 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' github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventSourceList: type: object title: 'EventSourceList is the list of eventsource 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.EventSource' metadata: $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta' 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.WebhookContext: type: object title: WebhookContext holds a general purpose REST API context properties: authSecret: title: 'AuthSecret holds a secret selector that contains a bearer token for authentication +optional' $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' endpoint: type: string title: REST API endpoint maxPayloadSize: type: string title: 'MaxPayloadSize is the maximum webhook payload size that the server will accept. Requests exceeding that limit will be rejected with "request too large" response. Default value: 1048576 (1MB). +optional' metadata: type: object title: 'Metadata holds the user defined metadata which will passed along the event payload. +optional' additionalProperties: type: string method: type: string title: 'Method is HTTP request method that indicates the desired action to be performed for a given resource. See RFC7231 Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content' port: description: Port on which HTTP server is listening for incoming events. type: string serverCertSecret: description: ServerCertPath refers the file that contains the cert. $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' serverKeySecret: title: ServerKeyPath refers the file that contains private key $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' url: description: URL is the url of the server. type: string github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.StripeEventSource: type: object title: 'StripeEventSource describes the event source for stripe webhook notifications More info at https://stripe.com/docs/webhooks' properties: apiKey: title: 'APIKey refers to K8s secret that holds Stripe API key. Used only if CreateWebhook is enabled. +optional' $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' createWebhook: type: boolean title: 'CreateWebhook if specified creates a new webhook programmatically. +optional' eventFilter: type: array title: 'EventFilter describes the type of events to listen to. If not specified, all types of events will be processed. More info at https://stripe.com/docs/api/events/list +optional' items: type: string metadata: type: object title: 'Metadata holds the user defined metadata which will passed along the event payload. +optional' additionalProperties: type: string webhook: title: Webhook holds configuration for a REST endpoint $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.WebhookContext' github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventSourceFilter: type: object properties: expression: type: string github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.AMQPConsumeConfig: type: object title: 'AMQPConsumeConfig holds the configuration to immediately starts delivering queued messages +k8s:openapi-gen=true' properties: autoAck: type: boolean title: 'AutoAck when true, the server will acknowledge deliveries to this consumer prior to writing the delivery to the network +optional' consumerTag: type: string title: 'ConsumerTag is the identity of the consumer included in every delivery +optional' exclusive: type: boolean title: 'Exclusive when true, the server will ensure that this is the sole consumer from this queue +optional' noLocal: type: boolean title: 'NoLocal flag is not supported by RabbitMQ +optional' noWait: type: boolean title: 'NowWait when true, do not wait for the server to confirm the request and immediately begin deliveries +optional' 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 github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.StorageGridEventSource: type: object title: StorageGridEventSource refers to event-source for StorageGrid related events properties: apiURL: description: APIURL is the url of the storagegrid api. type: string authToken: title: Auth token for storagegrid api $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' bucket: description: Name of the bucket to register notifications for. type: string events: type: array items: type: string filter: description: Filter on object key which caused the notification. $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.StorageGridFilter' metadata: type: object title: 'Metadata holds the user defined metadata which will passed along the event payload. +optional' additionalProperties: type: string region: type: string title: 'S3 region. Defaults to us-east-1 +optional' tls: title: 'TLS configuration for the service bus client +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TLSConfig' topicArn: type: string title: TopicArn webhook: title: Webhook holds configuration for a REST endpoint $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.WebhookContext' 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 github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.RedisStreamEventSource: type: object title: 'RedisStreamEventSource describes an event source for Redis streams (https://redis.io/topics/streams-intro)' properties: consumerGroup: type: string title: 'ConsumerGroup refers to the Redis stream consumer group that will be created on all redis streams. Messages are read through this group. Defaults to ''argo-events-cg'' +optional' db: type: integer title: 'DB to use. If not specified, default DB 0 will be used. +optional' filter: title: 'Filter +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventSourceFilter' hostAddress: type: string title: HostAddress refers to the address of the Redis host/server (master instance) maxMsgCountPerRead: type: integer title: 'MaxMsgCountPerRead holds the maximum number of messages per stream that will be read in each XREADGROUP of all streams Example: if there are 2 streams and MaxMsgCountPerRead=10, then each XREADGROUP may read upto a total of 20 messages. Same as COUNT option in XREADGROUP(https://redis.io/topics/streams-intro). Defaults to 10 +optional' metadata: type: object title: 'Metadata holds the user defined metadata which will passed along the event payload. +optional' additionalProperties: type: string password: title: 'Password required for authentication if any. +optional' $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' streams: description: Streams to look for entries. XREADGROUP is used on all streams using a single consumer group. type: array items: type: string tls: title: 'TLS configuration for the redis client. +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TLSConfig' username: type: string title: 'Username required for ACL style authentication if any. +optional' github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.AMQPQueueBindConfig: type: object title: 'AMQPQueueBindConfig holds the configuration that binds an exchange to a queue so that publishings to the exchange will be routed to the queue when the publishing routing key matches the binding routing key +k8s:openapi-gen=true' properties: noWait: type: boolean title: 'NowWait false and the queue could not be bound, the channel will be closed with an error +optional' 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' 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 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 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 github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.HDFSEventSource: type: object title: HDFSEventSource refers to event-source for HDFS related events properties: addresses: type: array items: type: string checkInterval: type: string title: CheckInterval is a string that describes an interval duration to check the directory state, e.g. 1s, 30m, 2h... (defaults to 1m) filter: title: 'Filter +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventSourceFilter' hdfsUser: description: 'HDFSUser is the user to access HDFS file system. It is ignored if either ccache or keytab is used.' type: string krbCCacheSecret: description: 'KrbCCacheSecret is the secret selector for Kerberos ccache Either ccache or keytab can be set to use Kerberos.' $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' krbConfigConfigMap: description: 'KrbConfig is the configmap selector for Kerberos config as string It must be set if either ccache or keytab is used.' $ref: '#/definitions/io.k8s.api.core.v1.ConfigMapKeySelector' krbKeytabSecret: description: 'KrbKeytabSecret is the secret selector for Kerberos keytab Either ccache or keytab can be set to use Kerberos.' $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' krbRealm: description: 'KrbRealm is the Kerberos realm used with Kerberos keytab It must be set if keytab is used.' type: string krbServicePrincipalName: description: 'KrbServicePrincipalName is the principal name of Kerberos service It must be set if either ccache or keytab is used.' type: string krbUsername: description: 'KrbUsername is the Kerberos username used with Kerberos keytab It must be set if keytab is used.' type: string metadata: type: object title: 'Metadata holds the user defined metadata which will passed along the event payload. +optional' additionalProperties: type: string type: type: string title: Type of file operations to watch watchPathConfig: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.WatchPathConfig' github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.CalendarEventSource: type: object title: 'CalendarEventSource describes a time based dependency. One of the fields (schedule, interval, or recurrence) must be passed. Schedule takes precedence over interval; interval takes precedence over recurrence' properties: exclusionDates: description: ExclusionDates defines the list of DATE-TIME exceptions for recurring events. type: array items: type: string filter: title: 'Filter +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventSourceFilter' interval: type: string title: 'Interval is a string that describes an interval duration, e.g. 1s, 30m, 2h... +optional' metadata: type: object title: 'Metadata holds the user defined metadata which will passed along the event payload. +optional' additionalProperties: type: string persistence: title: Persistence hold the configuration for event persistence $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventPersistence' schedule: type: string title: 'Schedule is a cron-like expression. For reference, see: https://en.wikipedia.org/wiki/Cron +optional' timezone: type: string title: 'Timezone in which to run the schedule +optional' 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 github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.OwnedRepositories: type: object properties: names: type: array title: Repository names items: type: string owner: type: string title: Organization or user name 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 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.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 github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.AzureEventsHubEventSource: type: object title: 'AzureEventsHubEventSource describes the event source for azure events hub More info at https://docs.microsoft.com/en-us/azure/event-hubs/' properties: filter: title: 'Filter +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventSourceFilter' fqdn: type: string title: 'FQDN of the EventHubs namespace you created More info at https://docs.microsoft.com/en-us/azure/event-hubs/event-hubs-get-connection-string' hubName: type: string title: Event Hub path/name metadata: type: object title: 'Metadata holds the user defined metadata which will passed along the event payload. +optional' additionalProperties: type: string sharedAccessKey: title: 'SharedAccessKey is the generated value of the key. If both this field and SharedAccessKeyName are not provided it will try to access via Azure AD with DefaultAzureCredential, FQDN and HubName. +optional' $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' sharedAccessKeyName: title: 'SharedAccessKeyName is the name you chose for your application''s SAS keys. If both this field and SharedAccessKey are not provided it will try to access via Azure AD with DefaultAzureCredential, FQDN and HubName. +optional' $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' 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.KafkaEventSource: type: object title: KafkaEventSource refers to event-source for Kafka related events properties: config: description: "Yaml format Sarama config for Kafka connection.\nIt follows the struct of sarama.Config. See https://github.com/IBM/sarama/blob/main/config.go\ne.g.\n\nconsumer:\n fetch:\n min: 1\nnet:\n MaxOpenRequests: 5\n\n+optional" type: string connectionBackoff: description: Backoff holds parameters applied to connection. $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.Backoff' consumerGroup: title: 'Consumer group for kafka client +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.KafkaConsumerGroup' filter: title: 'Filter +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventSourceFilter' jsonBody: type: boolean title: 'JSONBody specifies that all event body payload coming from this source will be JSON +optional' limitEventsPerSecond: type: string title: 'Sets a limit on how many events get read from kafka per second. +optional' metadata: type: object title: 'Metadata holds the user defined metadata which will passed along the event payload. +optional' additionalProperties: type: string partition: type: string title: 'Partition name +optional' 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 for consumer message with Avro format +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.SchemaRegistryConfig' tls: title: 'TLS configuration for the kafka client. +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TLSConfig' topic: type: string title: Topic name url: type: string title: URL to kafka cluster, multiple URLs separated by comma version: type: string title: 'Specify what kafka version is being connected to enables certain features in sarama, defaults to 1.0.0 +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.AMQPQueueDeclareConfig: type: object title: 'AMQPQueueDeclareConfig holds the configuration of a queue to hold messages and deliver to consumers. Declaring creates a queue if it doesn''t already exist, or ensures that an existing queue matches the same parameters +k8s:openapi-gen=true' properties: arguments: type: string title: 'Arguments of a queue (also known as "x-arguments") used for optional features and plugins +optional' autoDelete: type: boolean title: 'AutoDelete removes the queue when no consumers are active +optional' durable: type: boolean title: 'Durable keeps the queue also after the server restarts +optional' exclusive: type: boolean title: 'Exclusive sets the queues to be accessible only by the connection that declares them and will be deleted wgen the connection closes +optional' name: type: string title: 'Name of the queue. If empty the server auto-generates a unique name for this queue +optional' noWait: type: boolean title: 'NowWait when true, the queue assumes to be declared on the server +optional' github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.PulsarEventSource: type: object title: PulsarEventSource describes the event source for Apache Pulsar 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' filter: title: 'Filter +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventSourceFilter' jsonBody: type: boolean title: 'JSONBody specifies that all event body payload coming from this source will be JSON +optional' metadata: type: object title: 'Metadata holds the user defined metadata which will passed along the event payload. +optional' additionalProperties: type: string 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' topics: type: array title: 'Name of the topics to subscribe to. +required' items: type: string type: type: string title: 'Type of the subscription. Only "exclusive" and "shared" is supported. Defaults to exclusive. +optional' url: type: string title: 'Configure the service URL for the Pulsar service. +required' github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.NATSEventsSource: type: object title: NATSEventsSource refers to event-source for NATS related events properties: auth: title: 'Auth information +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.NATSAuth' connectionBackoff: description: ConnectionBackoff holds backoff applied to connection. $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.Backoff' filter: title: 'Filter +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventSourceFilter' jsonBody: type: boolean title: 'JSONBody specifies that all event body payload coming from this source will be JSON +optional' metadata: type: object title: 'Metadata holds the user defined metadata which will passed along the event payload. +optional' additionalProperties: type: string queue: type: string title: 'Queue is the name of the queue group to subscribe as if specified. Uses QueueSubscribe logic to subscribe as queue group. If the queue is empty, uses default Subscribe logic. +optional' subject: type: string title: Subject holds the name of the subject onto which messages are published tls: title: 'TLS configuration for the nats client. +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TLSConfig' url: type: string title: URL to connect to NATS cluster 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 github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.Service: type: object title: Service holds the service information eventsource exposes properties: clusterIP: type: string title: 'clusterIP is the IP address of the service and is usually assigned randomly by the master. If an address is specified manually and is not in use by others, it will be allocated to the service; otherwise, creation of the service will fail. This field can not be changed through updates. Valid values are "None", empty string (""), or a valid IP address. "None" can be specified for headless services when proxying is not required. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies +optional' metadata: title: 'Metadata sets the pods''s metadata, i.e. annotations and labels default={annotations: {}, labels: {}}' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.Metadata' ports: type: array title: 'The list of ports that are exposed by this ClusterIP service. +patchMergeKey=port +patchStrategy=merge +listType=map +listMapKey=port +listMapKey=protocol' items: $ref: '#/definitions/io.k8s.api.core.v1.ServicePort' 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 github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.KafkaConsumerGroup: type: object properties: groupName: type: string title: The name for the consumer group to use oldest: type: boolean title: 'When starting up a new group do we want to start from the oldest event (true) or the newest event (false), defaults to false +optional' rebalanceStrategy: type: string title: 'Rebalance strategy can be one of: sticky, roundrobin, range. Range is the default. +optional' 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 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 eventsource.CreateEventSourceRequest: type: object properties: eventSource: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventSource' namespace: 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 github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.WatchPathConfig: type: object properties: directory: type: string title: Directory to watch for events path: type: string title: Path is relative path of object to watch with respect to the directory pathRegexp: type: string title: PathRegexp is regexp of relative path of object to watch with respect to the directory 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.GenericEventSource: description: GenericEventSource refers to a generic event source. It can be used to implement a custom event source. type: object properties: authSecret: title: 'AuthSecret holds a secret selector that contains a bearer token for authentication +optional' $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' config: type: string title: Config is the event source configuration filter: title: 'Filter +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventSourceFilter' insecure: description: Insecure determines the type of connection. type: boolean jsonBody: type: boolean title: 'JSONBody specifies that all event body payload coming from this source will be JSON +optional' metadata: type: object title: 'Metadata holds the user defined metadata which will passed along the event payload. +optional' additionalProperties: type: string url: description: URL of the gRPC server that implements the event source. type: string 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.SFTPEventSource: description: SFTPEventSource describes an event-source for sftp related events. type: object properties: address: description: Address sftp address. $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' eventType: type: string title: 'Type of file operations to watch Refer https://github.com/fsnotify/fsnotify/blob/master/fsnotify.go for more information' filter: title: 'Filter +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventSourceFilter' metadata: type: object title: 'Metadata holds the user defined metadata which will passed along the event payload. +optional' additionalProperties: type: string password: description: Password required for authentication if any. $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' pollIntervalDuration: type: string title: 'PollIntervalDuration the interval at which to poll the SFTP server defaults to 10 seconds +optional' sshKeySecret: description: SSHKeySecret refers to the secret that contains SSH key. Key needs to contain private key and public key. $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' username: description: Username required for authentication if any. $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' watchPathConfig: title: WatchPathConfig contains configuration about the file path to watch $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.WatchPathConfig' 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 github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.BitbucketServerEventSource: type: object title: BitbucketServerEventSource refers to event-source related to Bitbucket Server events properties: accessToken: title: 'AccessToken is reference to K8s secret which holds the bitbucket api access information. +optional' $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' bitbucketserverBaseURL: description: BitbucketServerBaseURL is the base URL for API requests to a custom endpoint. type: string checkInterval: type: string title: 'CheckInterval is a duration in which to wait before checking that the webhooks exist, e.g. 1s, 30m, 2h... (defaults to 1m) +optional' deleteHookOnFinish: type: boolean title: 'DeleteHookOnFinish determines whether to delete the Bitbucket Server hook for the project once the event source is stopped. +optional' events: type: array title: 'Events are bitbucket event to listen to. Refer https://confluence.atlassian.com/bitbucketserver/event-payload-938025882.html +optional' items: type: string filter: title: 'Filter +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventSourceFilter' metadata: type: object title: 'Metadata holds the user defined metadata which will passed along the event payload. +optional' additionalProperties: type: string oneEventPerChange: type: boolean title: 'OneEventPerChange controls whether to process each change in a repo:refs_changed webhook event as a separate io.argoproj.workflow.v1alpha1. This setting is useful when multiple tags are pushed simultaneously for the same commit, and each tag needs to independently trigger an action, such as a distinct workflow in Argo Workflows. When enabled, the BitbucketServerEventSource publishes an individual BitbucketServerEventData for each change, ensuring independent processing of each tag or reference update in a single webhook event. +optional' projectKey: type: string title: 'DeprecatedProjectKey is the key of project for which integration needs to set up. Deprecated: use Repositories instead. Will be unsupported in v1.8. +optional' projects: type: array title: 'Projects holds a list of projects for which integration needs to set up, this will add the webhook to all repositories in the project. +optional' items: type: string repositories: type: array title: 'Repositories holds a list of repositories for which integration needs to set up. +optional' items: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.BitbucketServerRepository' repositorySlug: type: string title: 'DeprecatedRepositorySlug is the slug of the repository for which integration needs to set up. Deprecated: use Repositories instead. Will be unsupported in v1.8. +optional' skipBranchRefsChangedOnOpenPR: type: boolean title: 'SkipBranchRefsChangedOnOpenPR bypasses the event repo:refs_changed for branches whenever there''s an associated open pull request. This helps in optimizing the event handling process by avoiding unnecessary triggers for branch reference changes that are already part of a pull request under review. +optional' tls: title: 'TLS configuration for the bitbucketserver client. +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TLSConfig' webhook: description: Webhook holds configuration to run a http server. $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.WebhookContext' webhookSecret: title: 'WebhookSecret is reference to K8s secret which holds the bitbucket webhook secret (for HMAC validation). +optional' $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' 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.apimachinery.pkg.util.intstr.IntOrString: 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.EventSourceSpec: type: object title: EventSourceSpec refers to specification of event-source resource properties: amqp: type: object title: AMQP event sources additionalProperties: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.AMQPEventSource' azureEventsHub: type: object title: AzureEventsHub event sources additionalProperties: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.AzureEventsHubEventSource' azureQueueStorage: type: object title: AzureQueueStorage event source additionalProperties: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.AzureQueueStorageEventSource' azureServiceBus: type: object title: Azure Service Bus event source additionalProperties: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.AzureServiceBusEventSource' bitbucket: type: object title: Bitbucket event sources additionalProperties: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.BitbucketEventSource' bitbucketserver: type: object title: Bitbucket Server event sources additionalProperties: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.BitbucketServerEventSource' calendar: type: object title: Calendar event sources additionalProperties: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.CalendarEventSource' emitter: type: object title: Emitter event source additionalProperties: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EmitterEventSource' eventBusName: type: string title: EventBusName references to a EventBus name. By default the value is "default" file: type: object title: File event sources additionalProperties: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.FileEventSource' generic: type: object title: Generic event source additionalProperties: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.GenericEventSource' gerrit: type: object title: Gerrit event source additionalProperties: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.GerritEventSource' github: type: object title: Github event sources additionalProperties: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.GithubEventSource' gitlab: type: object title: Gitlab event sources additionalProperties: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.GitlabEventSource' hdfs: type: object title: HDFS event sources additionalProperties: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.HDFSEventSource' kafka: type: object title: Kafka event sources additionalProperties: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.KafkaEventSource' minio: type: object title: Minio event sources additionalProperties: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.S3Artifact' mns: type: object title: MNS event sources additionalProperties: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.MNSEventSource' mqtt: type: object title: MQTT event sources additionalProperties: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.MQTTEventSource' nats: type: object title: NATS event sources additionalProperties: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.NATSEventsSource' nsq: type: object title: NSQ event source additionalProperties: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.NSQEventSource' pubSub: type: object title: PubSub event sources additionalProperties: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.PubSubEventSource' pulsar: type: object title: Pulsar event source additionalProperties: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.PulsarEventSource' redis: type: object title: Redis event source additionalProperties: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.RedisEventSource' redisStream: type: object title: Redis stream source additionalProperties: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.RedisStreamEventSource' replicas: type: integer title: Replicas is the event source deployment replicas resource: type: object title: Resource event sources additionalProperties: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.ResourceEventSource' service: title: 'Service is the specifications of the service to expose the event source +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.Service' sftp: type: object title: SFTP event sources additionalProperties: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.SFTPEventSource' slack: type: object title: Slack event sources additionalProperties: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.SlackEventSource' sns: type: object title: SNS event sources additionalProperties: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.SNSEventSource' sqs: type: object title: SQS event sources additionalProperties: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.SQSEventSource' storageGrid: type: object title: StorageGrid event sources additionalProperties: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.StorageGridEventSource' stripe: type: object title: Stripe event sources additionalProperties: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.StripeEventSource' template: title: 'Template is the pod specification for the event source +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.Template' webhook: type: object title: Webhook event sources additionalProperties: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.WebhookEventSource' github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.AMQPEventSource: type: object title: AMQPEventSource refers to an event-source for AMQP stream events properties: auth: title: 'Auth hosts secret selectors for username and password +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.BasicAuth' connectionBackoff: title: 'Backoff holds parameters applied to connection. +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.Backoff' consume: title: 'Consume holds the configuration to immediately starts delivering queued messages For more information, visit https://pkg.go.dev/github.com/rabbitmq/amqp091-go#Channel.Consume +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.AMQPConsumeConfig' exchangeDeclare: title: 'ExchangeDeclare holds the configuration for the exchange on the server For more information, visit https://pkg.go.dev/github.com/rabbitmq/amqp091-go#Channel.ExchangeDeclare +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.AMQPExchangeDeclareConfig' exchangeName: type: string title: 'ExchangeName is the exchange name For more information, visit https://www.rabbitmq.com/tutorials/amqp-concepts.html' exchangeType: type: string title: ExchangeType is rabbitmq exchange type filter: title: 'Filter +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventSourceFilter' jsonBody: type: boolean title: 'JSONBody specifies that all event body payload coming from this source will be JSON +optional' metadata: type: object title: 'Metadata holds the user defined metadata which will passed along the event payload. +optional' additionalProperties: type: string queueBind: title: 'QueueBind holds the configuration that binds an exchange to a queue so that publishings to the exchange will be routed to the queue when the publishing routing key matches the binding routing key For more information, visit https://pkg.go.dev/github.com/rabbitmq/amqp091-go#Channel.QueueBind +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.AMQPQueueBindConfig' queueDeclare: title: 'QueueDeclare holds the configuration of a queue to hold messages and deliver to consumers. Declaring creates a queue if it doesn''t already exist, or ensures that an existing queue matches the same parameters For more information, visit https://pkg.go.dev/github.com/rabbitmq/amqp091-go#Channel.QueueDeclare +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.AMQPQueueDeclareConfig' routingKey: type: string title: Routing key for bindings tls: title: 'TLS configuration for the amqp client. +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TLSConfig' url: type: string title: URL for rabbitmq service urlSecret: title: URLSecret is secret reference for rabbitmq service URL $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' 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 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 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 github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventPersistence: type: object properties: catchup: title: Catchup enables to triggered the missed schedule when eventsource restarts $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.CatchupConfiguration' configMap: title: ConfigMap holds configmap details for persistence $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.ConfigMapPersistence' 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 github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.StorageGridFilter: type: object title: 'StorageGridFilter represents filters to apply to bucket notifications for specifying constraints on objects +k8s:openapi-gen=true' properties: prefix: type: string suffix: type: string github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.ConfigMapPersistence: type: object properties: createIfNotExist: type: boolean title: CreateIfNotExist will create configmap if it doesn't exists name: type: string title: Name of the configmap eventsource.UpdateEventSourceRequest: type: object properties: eventSource: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventSource' name: type: string namespace: 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 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' github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.NSQEventSource: type: object title: 'NSQEventSource describes the event source for NSQ PubSub More info at https://godoc.org/github.com/nsqio/go-nsq' properties: channel: type: string title: Channel used for subscription connectionBackoff: title: 'Backoff holds parameters applied to connection. +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.Backoff' filter: title: 'Filter +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventSourceFilter' hostAddress: type: string title: HostAddress is the address of the host for NSQ lookup jsonBody: type: boolean title: 'JSONBody specifies that all event body payload coming from this source will be JSON +optional' metadata: type: object title: 'Metadata holds the user defined metadata which will passed along the event payload. +optional' additionalProperties: type: string tls: title: 'TLS configuration for the nsq client. +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TLSConfig' topic: description: Topic to subscribe to. type: string 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 github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.GerritEventSource: type: object title: GerritEventSource refers to event-source related to gerrit events properties: auth: title: 'Auth hosts secret selectors for username and password +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.BasicAuth' deleteHookOnFinish: type: boolean title: 'DeleteHookOnFinish determines whether to delete the Gerrit hook for the project once the event source is stopped. +optional' events: type: array title: 'Events are gerrit event to listen to. Refer https://gerrit-review.googlesource.com/Documentation/cmd-stream-events.html#events' items: type: string filter: title: 'Filter +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventSourceFilter' gerritBaseURL: type: string title: GerritBaseURL is the base URL for API requests to a custom endpoint hookName: type: string title: HookName is the name of the webhook maxTries: type: string title: 'MaxTries is number of attempts when posting an event to the target url +optional' metadata: type: object title: 'Metadata holds the user defined metadata which will passed along the event payload. +optional' additionalProperties: type: string projects: description: List of project namespace paths like "whynowy/test". type: array items: type: string sslVerify: type: boolean title: 'SslVerify to enable ssl verification +optional' webhook: title: Webhook holds configuration to run a http server $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.WebhookContext' 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 github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.AzureQueueStorageEventSource: type: object title: 'AzureQueueStorageEventSource describes the event source for azure queue storage more info at https://learn.microsoft.com/en-us/azure/storage/queues/' properties: connectionString: title: 'ConnectionString is the connection string to access Azure Queue Storage. If this fields is not provided it will try to access via Azure AD with StorageAccountName. +optional' $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' decodeMessage: type: boolean title: 'DecodeMessage specifies if all the messages should be base64 decoded. If set to true the decoding is done before the evaluation of JSONBody +optional' dlq: type: boolean title: 'DLQ specifies if a dead-letter queue is configured for messages that can''t be processed successfully. If set to true, messages with invalid payload won''t be acknowledged to allow to forward them farther to the dead-letter queue. The default value is false. +optional' filter: title: 'Filter +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventSourceFilter' jsonBody: type: boolean title: 'JSONBody specifies that all event body payload coming from this source will be JSON +optional' metadata: type: object title: 'Metadata holds the user defined metadata which will passed along the event payload. +optional' additionalProperties: type: string queueName: type: string title: QueueName is the name of the queue storageAccountName: type: string title: 'StorageAccountName is the name of the storage account where the queue is. This field is necessary to access via Azure AD (managed identity) and it is ignored if ConnectionString is set. +optional' waitTimeInSeconds: type: integer title: 'WaitTimeInSeconds is the duration (in seconds) for which the event source waits between empty results from the queue. The default value is 3 seconds. +optional' 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.RedisEventSource: type: object title: 'RedisEventSource describes an event source for the Redis PubSub. More info at https://godoc.org/github.com/go-redis/redis#example-PubSub' properties: channels: type: array items: type: string db: type: integer title: 'DB to use. If not specified, default DB 0 will be used. +optional' filter: title: 'Filter +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventSourceFilter' hostAddress: type: string title: HostAddress refers to the address of the Redis host/server jsonBody: type: boolean title: 'JSONBody specifies that all event body payload coming from this source will be JSON +optional' metadata: type: object title: 'Metadata holds the user defined metadata which will passed along the event payload. +optional' additionalProperties: type: string namespace: type: string title: 'Namespace to use to retrieve the password from. It should only be specified if password is declared +optional' password: title: 'Password required for authentication if any. +optional' $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' tls: title: 'TLS configuration for the redis client. +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TLSConfig' username: type: string title: 'Username required for ACL style authentication if any. +optional' github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventSource: type: object title: 'EventSource is the definition of a eventsource resource +genclient +kubebuilder:resource:shortName=es +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.EventSourceSpec' status: title: +optional $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventSourceStatus' 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 io.k8s.api.core.v1.ServicePort: description: ServicePort contains information on service's port. type: object required: - port properties: appProtocol: description: "The application protocol for this port. This is used as a hint for implementations to offer richer behavior for protocols that they understand. This field follows standard Kubernetes label syntax. Valid values are either:\n\n* Un-prefixed protocol names - reserved for IANA standard service names (as per RFC-6335 and https://www.iana.org/assignments/service-names).\n\n* Kubernetes-defined prefixed names:\n * 'kubernetes.io/h2c' - HTTP/2 prior knowledge over cleartext as described in https://www.rfc-editor.org/rfc/rfc9113.html#name-starting-http-2-with-prior-\n * 'kubernetes.io/ws' - WebSocket over cleartext as described in https://www.rfc-editor.org/rfc/rfc6455\n * 'kubernetes.io/wss' - WebSocket over TLS as described in https://www.rfc-editor.org/rfc/rfc6455\n\n* Other protocols should use implementation-defined prefixed names such as mycompany.com/my-custom-protocol." type: string name: description: The name of this port within the service. This must be a DNS_LABEL. All ports within a ServiceSpec must have unique names. When considering the endpoints for a Service, this must match the 'name' field in the EndpointPort. Optional if only one ServicePort is defined on this service. type: string nodePort: description: 'The port on each node on which this service is exposed when type is NodePort or LoadBalancer. Usually assigned by the system. If a value is specified, in-range, and not in use it will be used, otherwise the operation will fail. If not specified, a port will be allocated if this Service requires one. If this field is specified when creating a Service which does not need it, creation will fail. This field will be wiped when updating a Service to no longer need it (e.g. changing type from NodePort to ClusterIP). More info: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport' type: integer port: description: The port that will be exposed by this service. type: integer protocol: description: The IP protocol for this port. Supports "TCP", "UDP", and "SCTP". Default is TCP. type: string targetPort: description: 'Number or name of the port to access on the pods targeted by the service. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. If this is a string, it will be looked up as a named port in the target Pod''s container ports. If this is not specified, the value of the ''port'' field is used (an identity map). This field is ignored for services with clusterIP=None, and should be omitted or set equal to the ''port'' field. More info: https://kubernetes.io/docs/concepts/services-networking/service/#defining-a-service' $ref: '#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString' 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 github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.GithubEventSource: type: object title: GithubEventSource refers to event-source for github related events properties: active: type: boolean title: 'Active refers to status of the webhook for event deliveries. https://developer.github.com/webhooks/creating/#active +optional' apiToken: title: 'APIToken refers to a K8s secret containing github api token +optional' $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' contentType: type: string title: ContentType of the event delivery deleteHookOnFinish: type: boolean title: 'DeleteHookOnFinish determines whether to delete the GitHub hook for the repository once the event source is stopped. +optional' events: type: array title: Events refer to Github events to which the event source will subscribe items: type: string filter: title: 'Filter +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventSourceFilter' githubApp: title: 'GitHubApp holds the GitHub app credentials +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.GithubAppCreds' githubBaseURL: type: string title: 'GitHub base URL (for GitHub Enterprise) +optional' githubUploadURL: type: string title: 'GitHub upload URL (for GitHub Enterprise) +optional' id: type: string title: 'Id is the webhook''s id Deprecated: This is not used at all, will be removed in v1.6 +optional' insecure: type: boolean title: Insecure tls verification metadata: type: object title: 'Metadata holds the user defined metadata which will passed along the event payload. +optional' additionalProperties: type: string organizations: description: Organizations holds the names of organizations (used for organization level webhooks). Not required if Repositories is set. type: array items: type: string owner: type: string title: 'DeprecatedOwner refers to GitHub owner name i.e. argoproj Deprecated: use Repositories instead. Will be unsupported in v 1.6 +optional' repositories: description: 'Repositories holds the information of repositories, which uses repo owner as the key, and list of repo names as the value. Not required if Organizations is set.' type: array items: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.OwnedRepositories' repository: type: string title: 'DeprecatedRepository refers to GitHub repo name i.e. argo-events Deprecated: use Repositories instead. Will be unsupported in v 1.6 +optional' webhook: title: Webhook refers to the configuration required to run a http server $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.WebhookContext' webhookSecret: title: 'WebhookSecret refers to K8s secret containing GitHub webhook secret https://developer.github.com/webhooks/securing/ +optional' $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' 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' eventsource.LogEntry: type: object title: structured log entry properties: eventName: type: string title: optional - the event name (e.g. `example`) eventSourceName: type: string eventSourceType: type: string title: optional - the event source type (e.g. `webhook`) level: type: string msg: type: string namespace: type: string time: $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time' github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.ResourceFilter: type: object title: ResourceFilter contains K8s ObjectMeta information to further filter resource event objects properties: afterStart: type: boolean title: 'If the resource is created after the start time then the event is treated as valid. +optional' createdBy: title: 'If resource is created before the specified time then the event is treated as valid. +optional' $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time' fields: type: array title: 'Fields provide field filters similar to K8s field selector (see https://kubernetes.io/docs/concepts/overview/working-with-objects/field-selectors/). Unlike K8s field selector, it supports arbitrary fileds like "spec.serviceAccountName", and the value could be a string or a regex. Same as K8s field selector, operator "=", "==" and "!=" are supported. +optional' items: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.Selector' labels: type: array title: 'Labels provide listing options to K8s API to watch resource/s. Refer https://kubernetes.io/docs/concepts/overview/working-with-objects/label-selectors/ for more io.argoproj.workflow.v1alpha1. Unlike K8s field selector, multiple values are passed as comma separated values instead of list of values. Eg: value: value1,value2. Same as K8s label selector, operator "=", "==", "!=", "exists", "!", "notin", "in", "gt" and "lt" are supported +optional' items: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.Selector' prefix: type: string title: 'Prefix filter is applied on the resource name. +optional' 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.BitbucketAuth: type: object title: BitbucketAuth holds the different auth strategies for connecting to Bitbucket properties: basic: title: 'Basic is BasicAuth auth strategy. +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.BitbucketBasicAuth' oauthToken: title: 'OAuthToken refers to the K8s secret that holds the OAuth Bearer token. +optional' $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.BitbucketServerRepository: type: object properties: projectKey: description: ProjectKey is the key of project for which integration needs to set up. type: string repositorySlug: description: RepositorySlug is the slug of the repository for which integration needs to set up. type: string 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.BitbucketRepository: type: object properties: owner: type: string title: Owner is the owner of the repository repositorySlug: type: string title: RepositorySlug is a URL-friendly version of a repository name, automatically generated by Bitbucket for use in the URL 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' github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.CatchupConfiguration: type: object properties: enabled: type: boolean title: Enabled enables to triggered the missed schedule when eventsource restarts maxDuration: type: string title: MaxDuration holds max catchup duration 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 github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.SQSEventSource: type: object title: SQSEventSource refers to event-source for AWS SQS related events properties: accessKey: title: AccessKey refers K8s secret containing aws access key $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' dlq: type: boolean title: 'DLQ specifies if a dead-letter queue is configured for messages that can''t be processed successfully. If set to true, messages with invalid payload won''t be acknowledged to allow to forward them farther to the dead-letter queue. The default value is false. +optional' endpoint: type: string title: 'Endpoint configures connection to a specific SQS endpoint instead of Amazons servers +optional' filter: title: 'Filter +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventSourceFilter' jsonBody: type: boolean title: 'JSONBody specifies that all event body payload coming from this source will be JSON +optional' metadata: type: object title: 'Metadata holds the user defined metadata which will passed along the event payload. +optional' additionalProperties: type: string queue: type: string title: Queue is AWS SQS queue to listen to for messages queueAccountId: type: string title: 'QueueAccountID is the ID of the account that created the queue to monitor +optional' 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 $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' sessionToken: title: 'SessionToken refers to K8s secret containing AWS temporary credentials(STS) session token +optional' $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' waitTimeSeconds: description: 'WaitTimeSeconds is The duration (in seconds) for which the call waits for a message to arrive in the queue before returning.' 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.GitlabEventSource: type: object title: GitlabEventSource refers to event-source related to Gitlab events properties: accessToken: title: AccessToken references to k8 secret which holds the gitlab api access information $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' deleteHookOnFinish: type: boolean title: 'DeleteHookOnFinish determines whether to delete the GitLab hook for the project once the event source is stopped. +optional' enableSSLVerification: type: boolean title: 'EnableSSLVerification to enable ssl verification +optional' events: description: 'Events are gitlab event to listen to. Refer https://github.com/xanzy/go-gitlab/blob/bf34eca5d13a9f4c3f501d8a97b8ac226d55e4d9/projects.go#L794.' type: array items: type: string filter: title: 'Filter +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventSourceFilter' gitlabBaseURL: type: string title: GitlabBaseURL is the base URL for API requests to a custom endpoint groups: type: array title: 'List of group IDs or group name like "test". Group level hook available in Premium and Ultimate Gitlab. +optional' items: type: string metadata: type: object title: 'Metadata holds the user defined metadata which will passed along the event payload. +optional' additionalProperties: type: string projectID: type: string title: 'DeprecatedProjectID is the id of project for which integration needs to setup Deprecated: use Projects instead. Will be unsupported in v 1.7 +optional' projects: type: array title: 'List of project IDs or project namespace paths like "whynowy/test". If neither a project nor a group is defined, the EventSource will not manage webhooks. +optional' items: type: string secretToken: title: SecretToken references to k8 secret which holds the Secret Token used by webhook config $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' webhook: title: Webhook holds configuration to run a http server $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.WebhookContext' github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.BitbucketEventSource: type: object title: BitbucketEventSource describes the event source for Bitbucket properties: auth: description: Auth information required to connect to Bitbucket. $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.BitbucketAuth' deleteHookOnFinish: type: boolean title: 'DeleteHookOnFinish determines whether to delete the defined Bitbucket hook once the event source is stopped. +optional' events: description: Events this webhook is subscribed to. type: array items: type: string filter: title: 'Filter +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventSourceFilter' metadata: type: object title: 'Metadata holds the user defined metadata which will be passed along the event payload. +optional' additionalProperties: type: string owner: type: string title: 'DeprecatedOwner is the owner of the repository. Deprecated: use Repositories instead. Will be unsupported in v1.9 +optional' projectKey: type: string title: 'DeprecatedProjectKey is the key of the project to which the repository relates Deprecated: use Repositories instead. Will be unsupported in v1.9 +optional' repositories: type: array title: 'Repositories holds a list of repositories for which integration needs to set up +optional' items: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.BitbucketRepository' repositorySlug: type: string title: 'DeprecatedRepositorySlug is a URL-friendly version of a repository name, automatically generated by Bitbucket for use in the URL Deprecated: use Repositories instead. Will be unsupported in v1.9 +optional' webhook: title: Webhook refers to the configuration required to run an http server $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.WebhookContext' 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.EmitterEventSource: type: object title: 'EmitterEventSource describes the event source for emitter More info at https://emitter.io/develop/getting-started/' properties: broker: description: Broker URI to connect to. type: string channelKey: type: string title: ChannelKey refers to the channel key channelName: type: string title: ChannelName refers to the channel name connectionBackoff: title: 'Backoff holds parameters applied to connection. +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.Backoff' filter: title: 'Filter +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventSourceFilter' jsonBody: type: boolean title: 'JSONBody specifies that all event body payload coming from this source will be JSON +optional' metadata: type: object title: 'Metadata holds the user defined metadata which will passed along the event payload. +optional' additionalProperties: type: string password: title: 'Password to use to connect to broker +optional' $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' tls: title: 'TLS configuration for the emitter client. +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.TLSConfig' username: title: 'Username to use to connect to broker +optional' $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.GithubAppCreds: type: object properties: appID: type: string title: AppID refers to the GitHub App ID for the application you created installationID: type: string title: InstallationID refers to the Installation ID of the GitHub app you created and installed privateKey: title: PrivateKey refers to a K8s secret containing the GitHub app private key $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' 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 github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.Selector: description: Selector represents conditional operation to select K8s objects. type: object properties: key: type: string title: Key name operation: type: string title: 'Supported operations like ==, != etc. Defaults to ==. Refer https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors for more io.argoproj.workflow.v1alpha1. +optional' value: type: string title: Value 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.S3Filter: type: object title: S3Filter represents filters to apply to bucket notifications for specifying constraints on objects properties: prefix: type: string suffix: type: string io.k8s.apimachinery.pkg.apis.meta.v1.GroupVersionResource: description: +protobuf.options.(gogoproto.goproto_stringer)=false type: object title: 'GroupVersionResource unambiguously identifies a resource. It doesn''t anonymously include GroupVersion to avoid automatic coercion. It doesn''t use a GroupVersion to avoid custom marshalling' properties: group: type: string resource: type: string version: type: string 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.BitbucketBasicAuth: type: object title: BitbucketBasicAuth holds the information required to authenticate user via basic auth mechanism properties: password: description: Password refers to the K8s secret that holds the password. $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' username: description: Username refers to the K8s secret that holds the username. $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' 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.PubSubEventSource: description: PubSubEventSource refers to event-source for GCP PubSub related events. type: object properties: credentialSecret: title: 'CredentialSecret references to the secret that contains JSON credentials to access GCP. If it is missing, it implicitly uses Workload Identity to access. https://cloud.google.com/kubernetes-engine/docs/how-to/workload-identity +optional' $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' deleteSubscriptionOnFinish: type: boolean title: 'DeleteSubscriptionOnFinish determines whether to delete the GCP PubSub subscription once the event source is stopped. +optional' filter: title: 'Filter +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventSourceFilter' jsonBody: type: boolean title: 'JSONBody specifies that all event body payload coming from this source will be JSON +optional' metadata: type: object title: 'Metadata holds the user defined metadata which will passed along the event payload. +optional' additionalProperties: type: string projectID: type: string title: 'ProjectID is GCP project ID for the subscription. Required if you run Argo Events outside of GKE/GCE. (otherwise, the default value is its project) +optional' subscriptionID: type: string title: 'SubscriptionID is ID of subscription. Required if you use existing subscription. The default value will be auto generated hash based on this eventsource setting, so the subscription might be recreated every time you update the setting, which has a possibility of event loss. +optional' topic: type: string title: 'Topic to which the subscription should belongs. Required if you want the eventsource to create a new subscription. If you specify this field along with an existing subscription, it will be verified whether it actually belongs to the specified topic. +optional' topicProjectID: type: string title: 'TopicProjectID is GCP project ID for the topic. By default, it is same as ProjectID. +optional' 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.MNSEventSource: type: object title: MNSEventSource refers to event-source for AlibabaCloud MNS related events properties: accessKey: title: AccessKey refers K8s secret containing AlibabaCloud access key $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' endpoint: type: string title: 'Endpoint configures connection to a specific AlibabaCloud MNS endpoint +optional' filter: title: 'Filter +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventSourceFilter' jsonBody: type: boolean title: +optional queue: type: string title: Queue is AlibabaCloud MNS queue to listen to for messages secretKey: title: SecretKey refers K8s secret containing AlibabaCloud secret key $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' eventsource.EventSourceWatchEvent: type: object properties: object: $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventSource' type: type: string eventsource.EventSourceDeletedResponse: type: object github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.AzureServiceBusEventSource: type: object title: 'AzureServiceBusEventSource describes the event source for azure service bus More info at https://docs.microsoft.com/en-us/azure/service-bus-messaging/' properties: connectionString: title: 'ConnectionString is the connection string for the Azure Service Bus. If this fields is not provided it will try to access via Azure AD with DefaultAzureCredential and FullyQualifiedNamespace. +optional' $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' deferDelete: description: 'DeferDelete controls when messages are removed from Azure Service Bus. If false (default), messages are received and deleted immediately before processing. If true, messages are locked and only deleted after successful processing, ensuring they are not lost if processing fails.' type: boolean filter: title: 'Filter +optional' $ref: '#/definitions/github.com.argoproj.argo_events.pkg.apis.events.v1alpha1.EventSourceFilter' fullyQualifiedNamespace: type: string title: 'FullyQualifiedNamespace is the Service Bus namespace name (ex: myservicebus.servicebus.windows.net). This field is necessary to access via Azure AD (managed identity) and it is ignored if ConnectionString is set. +optional' jsonBody: type: boolean title: 'JSONBody specifies that all event body payload coming from this source will be JSON +optional' metadata: type: object title: 'Metadata holds the user defined metadata which will passed along the event payload. +optional' additionalProperties: type: string 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 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.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.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 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 securityDefinitions: BearerToken: type: apiKey in: header name: Authorization description: JWT Bearer token