- Eventing API
- duck.knative.dev/v1
- duck.knative.dev/v1alpha1
- duck.knative.dev/v1beta1
- eventing.knative.dev/v1
- eventing.knative.dev/v1alpha1
- eventing.knative.dev/v1beta1
- eventing.knative.dev/v1beta2
- eventing.knative.dev/v1beta3
- flows.knative.dev/v1
- messaging.knative.dev/v1
- sinks.knative.dev/v1alpha1
- sources.knative.dev/v1
- sources.knative.dev/v1beta2
Eventing API
Packages:
- duck.knative.dev/v1
- duck.knative.dev/v1alpha1
- duck.knative.dev/v1beta1
- eventing.knative.dev/v1
- eventing.knative.dev/v1alpha1
- eventing.knative.dev/v1beta1
- eventing.knative.dev/v1beta2
- eventing.knative.dev/v1beta3
- flows.knative.dev/v1
- messaging.knative.dev/v1
- sinks.knative.dev/v1alpha1
- sources.knative.dev/v1
- sources.knative.dev/v1beta2
duck.knative.dev/v1
Package v1 is the v1 version of the API.
Resource Types:
AppliedEventPoliciesStatus
(Appears on:ChannelableStatus, BrokerStatus, ParallelStatus, SequenceStatus, JobSinkStatus)
AppliedEventPoliciesStatus contains the list of policies which apply to a resource. This type is intended to be embedded into a status struct.
Field | Description |
---|---|
policies []AppliedEventPolicyRef | (Optional) Policies holds the list of applied EventPolicies |
AppliedEventPolicyRef
(Appears on:AppliedEventPoliciesStatus)
AppliedEventPolicyRef is the reference to an EventPolicy
Field | Description |
---|---|
apiVersion string | APIVersion of the applied EventPolicy. This indicates, which version of EventPolicy is supported by the resource. |
name string | Name of the applied EventPolicy |
BackoffPolicyType (string
alias)
(Appears on:DeliverySpec)
BackoffPolicyType is the type for backoff policies
Value | Description |
---|---|
“exponential” | Exponential backoff policy |
“linear” | Linear backoff policy |
Channelable
Channelable is a skeleton type wrapping Subscribable and Addressable in the manner we expect resource writers defining compatible resources to embed it. We will typically use this type to deserialize Channelable ObjectReferences and access their subscription and address data. This is not a real resource.
Field | Description | ||||
---|---|---|---|---|---|
metadata Kubernetes meta/v1.ObjectMeta | Refer to the Kubernetes API documentation for the fields of the metadata field. | ||||
spec ChannelableSpec | Spec is the part where the Channelable fulfills the Subscribable contract.
| ||||
status ChannelableStatus |
ChannelableSpec
(Appears on:Channelable, ChannelSpec, InMemoryChannelSpec)
ChannelableSpec contains Spec of the Channelable object
Field | Description |
---|---|
SubscribableSpec SubscribableSpec | (Members of |
delivery DeliverySpec | (Optional) DeliverySpec contains the default delivery spec for each subscription to this Channelable. Each subscription delivery spec, if any, overrides this global delivery spec. |
ChannelableStatus
(Appears on:Channelable, ChannelStatus, InMemoryChannelStatus)
ChannelableStatus contains the Status of a Channelable object.
Field | Description |
---|---|
Status knative.dev/pkg/apis/duck/v1.Status | (Members of inherits duck/v1 Status, which currently provides: ObservedGeneration - the ‘Generation’ of the Service that was last processed by the controller. Conditions - the latest available observations of a resource’s current state. |
AddressStatus knative.dev/pkg/apis/duck/v1.AddressStatus | (Members of AddressStatus is the part where the Channelable fulfills the Addressable contract. |
SubscribableStatus SubscribableStatus | (Members of Subscribers is populated with the statuses of each of the Channelable’s subscribers. |
DeliveryStatus DeliveryStatus | (Members of DeliveryStatus contains a resolved URL to the dead letter sink address, and any other resolved delivery options. |
AppliedEventPoliciesStatus AppliedEventPoliciesStatus | (Members of AppliedEventPoliciesStatus contains the list of EventPolicies which apply to this Channel |
DeliverySpec
(Appears on:ChannelableSpec, SubscriberSpec, BrokerSpec, TriggerSpec, ParallelBranch, SequenceStep, SubscriptionSpec)
DeliverySpec contains the delivery options for event senders, such as channelable and source.
Field | Description |
---|---|
deadLetterSink knative.dev/pkg/apis/duck/v1.Destination | (Optional) DeadLetterSink is the sink receiving event that could not be sent to a destination. |
retry int32 | (Optional) Retry is the minimum number of retries the sender should attempt when sending an event before moving it to the dead letter sink. |
timeout string | (Optional) Timeout is the timeout of each single request. The value must be greater than 0. More information on Duration format: - https://www.iso.org/iso-8601-date-and-time-format.html - https://en.wikipedia.org/wiki/ISO_8601 Note: This API is EXPERIMENTAL and might break anytime. For more details: https://github.com/knative/eventing/issues/5148 |
backoffPolicy BackoffPolicyType | (Optional) BackoffPolicy is the retry backoff policy (linear, exponential). |
backoffDelay string | (Optional) BackoffDelay is the delay before retrying. More information on Duration format: - https://www.iso.org/iso-8601-date-and-time-format.html - https://en.wikipedia.org/wiki/ISO_8601 For linear policy, backoff delay is backoffDelay |
retryAfterMax string | (Optional) RetryAfterMax provides an optional upper bound on the duration specified in a “Retry-After” header when calculating backoff times for retrying 429 and 503 response codes. Setting the value to zero (“PT0S”) can be used to opt-out of respecting “Retry-After” header values altogether. This value only takes effect if “Retry” is configured, and also depends on specific implementations (Channels, Sources, etc.) choosing to provide this capability. Note: This API is EXPERIMENTAL and might be changed at anytime. While this experimental feature is in the Alpha/Beta stage, you must provide a valid value to opt-in for supporting “Retry-After” headers. When the feature becomes Stable/GA “Retry-After” headers will be respected by default, and you can choose to specify “PT0S” to opt-out of supporting “Retry-After” headers. For more details: https://github.com/knative/eventing/issues/5811 More information on Duration format: - https://www.iso.org/iso-8601-date-and-time-format.html - https://en.wikipedia.org/wiki/ISO_8601 |
format FormatType | (Optional) format specifies the desired event format for the cloud event. It can be one of the following values: - nil: default value, no specific format required. - “JSON”: indicates the event should be in structured mode. - “binary”: indicates the event should be in binary mode. |
DeliveryStatus
(Appears on:ChannelableStatus, BrokerStatus, TriggerStatus, SubscriptionStatusPhysicalSubscription)
DeliveryStatus contains the Status of an object supporting delivery options. This type is intended to be embedded into a status struct.
Field | Description |
---|---|
deadLetterSinkUri knative.dev/pkg/apis.URL | (Optional) DeadLetterSink is a KReference that is the reference to the native, platform specific channel where failed events are sent to. |
deadLetterSinkCACerts string | (Optional) DeadLetterSinkCACerts are Certification Authority (CA) certificates in PEM format according to https://www.rfc-editor.org/rfc/rfc7468. |
deadLetterSinkAudience string | (Optional) DeadLetterSinkAudience is the OIDC audience of the DeadLetterSink |
FormatType (string
alias)
(Appears on:DeliverySpec)
FormatType is the type for delivery format
Value | Description |
---|---|
“binary” | |
“json” |
Subscribable
Subscribable is a skeleton type wrapping Subscribable in the manner we expect resource writers defining compatible resources to embed it. We will typically use this type to deserialize SubscribableType ObjectReferences and access the Subscription data. This is not a real resource.
Field | Description | ||
---|---|---|---|
metadata Kubernetes meta/v1.ObjectMeta | Refer to the Kubernetes API documentation for the fields of the metadata field. | ||
spec SubscribableSpec | SubscribableSpec is the part where Subscribable object is configured as to be compatible with Subscribable contract.
| ||
status SubscribableStatus | SubscribableStatus is the part where SubscribableStatus object is configured as to be compatible with Subscribable contract. |
SubscribableSpec
(Appears on:ChannelableSpec, Subscribable)
SubscribableSpec shows how we expect folks to embed Subscribable in their Spec field.
Field | Description |
---|---|
subscribers []SubscriberSpec | This is the list of subscriptions for this subscribable. |
SubscribableStatus
(Appears on:ChannelableStatus, Subscribable)
SubscribableStatus is the schema for the subscribable’s status portion of the status section of the resource.
Field | Description |
---|---|
subscribers []SubscriberStatus | This is the list of subscription’s statuses for this channel. |
SubscriberSpec
(Appears on:SubscribableSpec)
SubscriberSpec defines a single subscriber to a Subscribable.
At least one of SubscriberURI and ReplyURI must be present
Field | Description |
---|---|
name string | (Optional) Name is used to identify the original subscription object. |
uid k8s.io/apimachinery/pkg/types.UID | (Optional) UID is used to understand the origin of the subscriber. |
generation int64 | (Optional) Generation of the origin of the subscriber with uid:UID. |
subscriberUri knative.dev/pkg/apis.URL | (Optional) SubscriberURI is the endpoint for the subscriber |
subscriberCACerts string | (Optional) SubscriberCACerts is the Certification Authority (CA) certificates in PEM format according to https://www.rfc-editor.org/rfc/rfc7468 for the subscriberUri |
subscriberAudience string | (Optional) SubscriberAudience is the OIDC audience for the subscriberUri. |
replyUri knative.dev/pkg/apis.URL | (Optional) ReplyURI is the endpoint for the reply |
replyCACerts string | (Optional) ReplyCACerts is the Certification Authority (CA) certificates in PEM format according to https://www.rfc-editor.org/rfc/rfc7468 for the replyUri. |
replyAudience string | (Optional) ReplyAudience is the OIDC audience for the replyUri. |
delivery DeliverySpec | (Optional) DeliverySpec contains options controlling the event delivery |
auth knative.dev/pkg/apis/duck/v1.AuthStatus | (Optional) Auth contains the service account name for the subscription |
SubscriberStatus
(Appears on:SubscribableStatus)
SubscriberStatus defines the status of a single subscriber to a Channel.
Field | Description |
---|---|
uid k8s.io/apimachinery/pkg/types.UID | (Optional) UID is used to understand the origin of the subscriber. |
observedGeneration int64 | (Optional) Generation of the origin of the subscriber with uid:UID. |
ready Kubernetes core/v1.ConditionStatus | Status of the subscriber. |
message string | (Optional) A human readable message indicating details of Ready status. |
auth knative.dev/pkg/apis/duck/v1.AuthStatus | (Optional) Auth provides the relevant information for OIDC authentication. |
duck.knative.dev/v1alpha1
Resource Types:
Placeable
(Appears on:PlaceableStatus)
Placeable is a list of podName and virtual replicas pairs. Each pair represents the assignment of virtual replicas to a pod
Field | Description |
---|---|
maxAllowedVReplicas int32 | |
placements []Placement |
PlaceableStatus
(Appears on:PlaceableType)
Field | Description |
---|---|
Placeable Placeable | (Members of |
PlaceableType
PlaceableType is a skeleton type wrapping Placeable in the manner we expect resource writers defining compatible resources to embed it. We will typically use this type to deserialize Placeable ObjectReferences and access the Placeable data. This is not a real resource.
Field | Description |
---|---|
metadata Kubernetes meta/v1.ObjectMeta | Refer to the Kubernetes API documentation for the fields of the metadata field. |
status PlaceableStatus |
Placement
(Appears on:Placeable)
Field | Description |
---|---|
podName string | PodName is the name of the pod where the resource is placed |
vreplicas int32 | VReplicas is the number of virtual replicas assigned to in the pod |
duck.knative.dev/v1beta1
Package v1beta1 is the v1beta1 version of the API.
Resource Types:
BackoffPolicyType (string
alias)
(Appears on:DeliverySpec)
BackoffPolicyType is the type for backoff policies
Value | Description |
---|---|
“exponential” | Exponential backoff policy |
“linear” | Linear backoff policy |
Channelable
Channelable is a skeleton type wrapping Subscribable and Addressable in the manner we expect resource writers defining compatible resources to embed it. We will typically use this type to deserialize Channelable ObjectReferences and access their subscription and address data. This is not a real resource.
Field | Description | ||||
---|---|---|---|---|---|
metadata Kubernetes meta/v1.ObjectMeta | Refer to the Kubernetes API documentation for the fields of the metadata field. | ||||
spec ChannelableSpec | Spec is the part where the Channelable fulfills the Subscribable contract.
| ||||
status ChannelableStatus |
ChannelableSpec
(Appears on:Channelable)
ChannelableSpec contains Spec of the Channelable object
Field | Description |
---|---|
SubscribableSpec SubscribableSpec | (Members of |
delivery DeliverySpec | (Optional) DeliverySpec contains options controlling the event delivery |
ChannelableStatus
(Appears on:Channelable)
ChannelableStatus contains the Status of a Channelable object.
Field | Description |
---|---|
Status knative.dev/pkg/apis/duck/v1.Status | (Members of inherits duck/v1 Status, which currently provides: ObservedGeneration - the ‘Generation’ of the Service that was last processed by the controller. Conditions - the latest available observations of a resource’s current state. |
AddressStatus knative.dev/pkg/apis/duck/v1.AddressStatus | (Members of AddressStatus is the part where the Channelable fulfills the Addressable contract. |
SubscribableStatus SubscribableStatus | (Members of Subscribers is populated with the statuses of each of the Channelable’s subscribers. |
deadLetterChannel knative.dev/pkg/apis/duck/v1.KReference | (Optional) DeadLetterChannel is a KReference and is set by the channel when it supports native error handling via a channel Failed messages are delivered here. |
DeliverySpec
(Appears on:ChannelableSpec, SubscriberSpec)
DeliverySpec contains the delivery options for event senders, such as channelable and source.
Field | Description |
---|---|
deadLetterSink knative.dev/pkg/apis/duck/v1.Destination | (Optional) DeadLetterSink is the sink receiving event that could not be sent to a destination. |
retry int32 | (Optional) Retry is the minimum number of retries the sender should attempt when sending an event before moving it to the dead letter sink. |
timeout string | Timeout is the timeout of each single request. More information on Duration format: - https://www.iso.org/iso-8601-date-and-time-format.html - https://en.wikipedia.org/wiki/ISO_8601 |
backoffPolicy BackoffPolicyType | (Optional) BackoffPolicy is the retry backoff policy (linear, exponential). |
backoffDelay string | (Optional) BackoffDelay is the delay before retrying. More information on Duration format: - https://www.iso.org/iso-8601-date-and-time-format.html - https://en.wikipedia.org/wiki/ISO_8601 For linear policy, backoff delay is backoffDelay |
DeliveryStatus
DeliveryStatus contains the Status of an object supporting delivery options.
Field | Description |
---|---|
deadLetterChannel knative.dev/pkg/apis/duck/v1.KReference | (Optional) DeadLetterChannel is a KReference that is the reference to the native, platform specific channel where failed events are sent to. |
Subscribable
Subscribable is a skeleton type wrapping Subscribable in the manner we expect resource writers defining compatible resources to embed it. We will typically use this type to deserialize SubscribableType ObjectReferences and access the Subscription data. This is not a real resource.
Field | Description | ||
---|---|---|---|
metadata Kubernetes meta/v1.ObjectMeta | Refer to the Kubernetes API documentation for the fields of the metadata field. | ||
spec SubscribableSpec | SubscribableSpec is the part where Subscribable object is configured as to be compatible with Subscribable contract.
| ||
status SubscribableStatus | SubscribableStatus is the part where SubscribableStatus object is configured as to be compatible with Subscribable contract. |
SubscribableSpec
(Appears on:ChannelableSpec, Subscribable)
SubscribableSpec shows how we expect folks to embed Subscribable in their Spec field.
Field | Description |
---|---|
subscribers []SubscriberSpec | This is the list of subscriptions for this subscribable. |
SubscribableStatus
(Appears on:ChannelableStatus, Subscribable)
SubscribableStatus is the schema for the subscribable’s status portion of the status section of the resource.
Field | Description |
---|---|
subscribers []SubscriberStatus | This is the list of subscription’s statuses for this channel. |
SubscriberSpec
(Appears on:SubscribableSpec)
SubscriberSpec defines a single subscriber to a Subscribable.
At least one of SubscriberURI and ReplyURI must be present
Field | Description |
---|---|
uid k8s.io/apimachinery/pkg/types.UID | (Optional) UID is used to understand the origin of the subscriber. |
generation int64 | (Optional) Generation of the origin of the subscriber with uid:UID. |
subscriberUri knative.dev/pkg/apis.URL | (Optional) SubscriberURI is the endpoint for the subscriber |
replyUri knative.dev/pkg/apis.URL | (Optional) ReplyURI is the endpoint for the reply |
delivery DeliverySpec | (Optional) DeliverySpec contains options controlling the event delivery |
SubscriberStatus
(Appears on:SubscribableStatus)
SubscriberStatus defines the status of a single subscriber to a Channel.
Field | Description |
---|---|
uid k8s.io/apimachinery/pkg/types.UID | (Optional) UID is used to understand the origin of the subscriber. |
observedGeneration int64 | (Optional) Generation of the origin of the subscriber with uid:UID. |
ready Kubernetes core/v1.ConditionStatus | Status of the subscriber. |
message string | (Optional) A human readable message indicating details of Ready status. |
eventing.knative.dev/v1
Package v1 is the v1 version of the API.
Resource Types:
Broker
Broker collects a pool of events that are consumable using Triggers. Brokers provide a well-known endpoint for event delivery that senders can use with minimal knowledge of the event routing strategy. Subscribers use Triggers to request delivery of events from a Broker’s pool to a specific URL or Addressable endpoint.
Field | Description | ||||
---|---|---|---|---|---|
apiVersion string | eventing.knative.dev/v1 | ||||
kind string | Broker | ||||
metadata Kubernetes meta/v1.ObjectMeta | (Optional) Refer to the Kubernetes API documentation for the fields of the metadata field. | ||||
spec BrokerSpec | Spec defines the desired state of the Broker.
| ||||
status BrokerStatus | (Optional) Status represents the current state of the Broker. This data may be out of date. |
Trigger
Trigger represents a request to have events delivered to a subscriber from a Broker’s event pool.
Field | Description | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
apiVersion string | eventing.knative.dev/v1 | ||||||||||||
kind string | Trigger | ||||||||||||
metadata Kubernetes meta/v1.ObjectMeta | (Optional) Refer to the Kubernetes API documentation for the fields of the metadata field. | ||||||||||||
spec TriggerSpec | Spec defines the desired state of the Trigger.
| ||||||||||||
status TriggerStatus | (Optional) Status represents the current state of the Trigger. This data may be out of date. |
BrokerSpec
(Appears on:Broker)
Field | Description |
---|---|
config knative.dev/pkg/apis/duck/v1.KReference | (Optional) Config is a KReference to the configuration that specifies configuration options for this Broker. For example, this could be a pointer to a ConfigMap. |
delivery DeliverySpec | (Optional) Delivery contains the delivery spec for each trigger to this Broker. Each trigger delivery spec, if any, overrides this global delivery spec. |
BrokerStatus
(Appears on:Broker)
BrokerStatus represents the current state of a Broker.
Field | Description |
---|---|
Status knative.dev/pkg/apis/duck/v1.Status | (Members of inherits duck/v1 Status, which currently provides: ObservedGeneration - the ‘Generation’ of the Broker that was last processed by the controller. Conditions - the latest available observations of a resource’s current state. |
AddressStatus knative.dev/pkg/apis/duck/v1.AddressStatus | (Members of AddressStatus is the part where the Broker fulfills the Addressable contract. It exposes the endpoint as an URI to get events delivered into the Broker mesh. |
DeliveryStatus DeliveryStatus | (Members of DeliveryStatus contains a resolved URL to the dead letter sink address, and any other resolved delivery options. |
AppliedEventPoliciesStatus AppliedEventPoliciesStatus | (Members of AppliedEventPoliciesStatus contains the list of EventPolicies which apply to this Broker |
SubscriptionsAPIFilter
(Appears on:SubscriptionsAPIFilter, TriggerSpec, EventPolicySpec, ApiServerSourceSpec)
SubscriptionsAPIFilter allows defining a filter expression using CloudEvents Subscriptions API. If multiple filters are specified, then the same semantics of SubscriptionsAPIFilter.All is applied. If no filter dialect or empty object is specified, then the filter always accept the events.
Field | Description |
---|---|
all []SubscriptionsAPIFilter | (Optional) All evaluates to true if all the nested expressions evaluate to true. It must contain at least one filter expression. |
any []SubscriptionsAPIFilter | (Optional) Any evaluates to true if at least one of the nested expressions evaluates to true. It must contain at least one filter expression. |
not SubscriptionsAPIFilter | (Optional) Not evaluates to true if the nested expression evaluates to false. |
exact map[string]string | (Optional) Exact evaluates to true if the values of the matching CloudEvents attributes MUST all exactly match with the associated value String specified (case-sensitive). The keys are the names of the CloudEvents attributes to be matched, and their values are the String values to use in the comparison. The attribute name and value specified in the filter express MUST NOT be empty strings. |
prefix map[string]string | (Optional) Prefix evaluates to true if the values of the matching CloudEvents attributes MUST all start with the associated value String specified (case sensitive). The keys are the names of the CloudEvents attributes to be matched, and their values are the String values to use in the comparison. The attribute name and value specified in the filter express MUST NOT be empty strings. |
suffix map[string]string | (Optional) Suffix evaluates to true if the values of the matching CloudEvents attributes MUST all end with the associated value String specified (case sensitive). The keys are the names of the CloudEvents attributes to be matched, and their values are the String values to use in the comparison. The attribute name and value specified in the filter express MUST NOT be empty strings. |
cesql string | (Optional) CESQL is a CloudEvents SQL expression that will be evaluated to true or false against each CloudEvent. |
TriggerFilter
(Appears on:TriggerSpec)
Field | Description |
---|---|
attributes TriggerFilterAttributes | (Optional) Attributes filters events by exact match on event context attributes. Each key in the map is compared with the equivalent key in the event context. An event passes the filter if all values are equal to the specified values. Nested context attributes are not supported as keys. Only string values are supported. |
TriggerFilterAttributes (map[string]string
alias)
(Appears on:TriggerFilter)
TriggerFilterAttributes is a map of context attribute names to values for filtering by equality. Only exact matches will pass the filter. You can use the value ” to indicate all strings match.
TriggerSpec
(Appears on:Trigger)
Field | Description |
---|---|
broker string | Broker is the broker that this trigger receives events from. |
brokerRef knative.dev/pkg/apis/duck/v1.KReference | BrokerRef is the broker that is used for cross-namespace referencing. |
filter TriggerFilter | (Optional) Filter is the filter to apply against all events from the Broker. Only events that pass this filter will be sent to the Subscriber. If not specified, will default to allowing all events. |
filters []SubscriptionsAPIFilter | (Optional) Filters is an experimental field that conforms to the CNCF CloudEvents Subscriptions API. It’s an array of filter expressions that evaluate to true or false. If any filter expression in the array evaluates to false, the event MUST NOT be sent to the Subscriber. If all the filter expressions in the array evaluate to true, the event MUST be attempted to be delivered. Absence of a filter or empty array implies a value of true. In the event of users specifying both Filter and Filters, then the latter will override the former. This will allow users to try out the effect of the new Filters field without compromising the existing attribute-based Filter and try it out on existing Trigger objects. |
subscriber knative.dev/pkg/apis/duck/v1.Destination | Subscriber is the addressable that receives events from the Broker that pass the Filter. It is required. |
delivery DeliverySpec | (Optional) Delivery contains the delivery spec for this specific trigger. |
TriggerStatus
(Appears on:Trigger)
TriggerStatus represents the current state of a Trigger.
Field | Description |
---|---|
Status knative.dev/pkg/apis/duck/v1.Status | (Members of inherits duck/v1 Status, which currently provides: ObservedGeneration - the ‘Generation’ of the Trigger that was last processed by the controller. Conditions - the latest available observations of a resource’s current state. |
subscriberUri knative.dev/pkg/apis.URL | (Optional) SubscriberURI is the resolved URI of the receiver for this Trigger. |
subscriberCACerts string | (Optional) SubscriberCACerts is the Certification Authority (CA) certificates in PEM format according to https://www.rfc-editor.org/rfc/rfc7468 of the receiver for this Trigger. |
subscriberAudience string | (Optional) SubscriberAudience is the OIDC audience of the subscriber. |
DeliveryStatus DeliveryStatus | (Members of DeliveryStatus contains a resolved URL to the dead letter sink address, and any other resolved delivery options. |
auth knative.dev/pkg/apis/duck/v1.AuthStatus | (Optional) Auth provides the relevant information for OIDC authentication. |
eventing.knative.dev/v1alpha1
Package v1alpha1 is the v1alpha1 version of the API.
Resource Types:
EventPolicy
EventPolicy represents a policy for addressable resources (Broker, Channel, sinks).
Field | Description | ||||||
---|---|---|---|---|---|---|---|
apiVersion string | eventing.knative.dev/v1alpha1 | ||||||
kind string | EventPolicy | ||||||
metadata Kubernetes meta/v1.ObjectMeta | (Optional) Refer to the Kubernetes API documentation for the fields of the metadata field. | ||||||
spec EventPolicySpec | Spec defines the desired state of the EventPolicy.
| ||||||
status EventPolicyStatus | (Optional) Status represents the current state of the EventPolicy. This data may be out of date. |
EventPolicyFromReference
(Appears on:EventPolicySpecFrom)
Field | Description |
---|---|
apiVersion string | API version of the referent. |
kind string | Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
name string | Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names |
namespace string | (Optional) Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ This is optional field, it gets defaulted to the object holding it if left out. |
EventPolicySelector
(Appears on:EventPolicySpecTo)
Field | Description |
---|---|
LabelSelector Kubernetes meta/v1.LabelSelector | (Members of |
EventPolicySpec
(Appears on:EventPolicy)
Field | Description |
---|---|
to []EventPolicySpecTo | (Optional) To lists all resources for which this policy applies. Resources in this list must act like an ingress and have an audience. The resources are part of the same namespace as the EventPolicy. An empty list means it applies to all resources in the EventPolicies namespace |
from []EventPolicySpecFrom | From is the list of sources or oidc identities, which are allowed to send events to the targets (.spec.to). |
filters []SubscriptionsAPIFilter | (Optional) Filters is the list of SubscriptoinsApi filters which determine whether or not the event is accepted. It is an array of filter expressions that evaluate to true or false. If any filter expression in the array evaluates to false, the event will not pass the target resource’s ingress. Absence of any filters implies that the filters always evaluate to true. |
EventPolicySpecFrom
(Appears on:EventPolicySpec)
Field | Description |
---|---|
ref EventPolicyFromReference | (Optional) Ref contains a direct reference to a resource which is allowed to send events to the target. |
sub string | (Optional) Sub sets the OIDC identity name to be allowed to send events to the target. It is also possible to set a glob-like pattern to match any suffix. |
EventPolicySpecTo
(Appears on:EventPolicySpec)
Field | Description |
---|---|
ref EventPolicyToReference | (Optional) Ref contains the direct reference to a target |
selector EventPolicySelector | (Optional) Selector contains a selector to group targets |
EventPolicyStatus
(Appears on:EventPolicy)
EventPolicyStatus represents the current state of a EventPolicy.
Field | Description |
---|---|
Status knative.dev/pkg/apis/duck/v1.Status | (Members of inherits duck/v1 Status, which currently provides: ObservedGeneration - the ‘Generation’ of the Service that was last processed by the controller. Conditions - the latest available observations of a resource’s current state. |
from []string | From is the list of resolved oidc identities from .spec.from |
EventPolicyToReference
(Appears on:EventPolicySpecTo)
Field | Description |
---|---|
apiVersion string | API version of the referent. |
kind string | Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
name string | Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names |
eventing.knative.dev/v1beta1
Package v1beta1 is the v1beta1 version of the API.
Resource Types:
EventType
EventType represents a type of event that can be consumed from a Broker. Deprecated: use v1beta2.EventType instead.
Field | Description | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
apiVersion string | eventing.knative.dev/v1beta1 | ||||||||||||||
kind string | EventType | ||||||||||||||
metadata Kubernetes meta/v1.ObjectMeta | (Optional) Refer to the Kubernetes API documentation for the fields of the metadata field. | ||||||||||||||
spec EventTypeSpec | Spec defines the desired state of the EventType.
| ||||||||||||||
status EventTypeStatus | (Optional) Status represents the current state of the EventType. This data may be out of date. |
EventTypeSpec
(Appears on:EventType)
Field | Description |
---|---|
type string | Type represents the CloudEvents type. It is authoritative. |
source knative.dev/pkg/apis.URL | (Optional) Source is a URI, it represents the CloudEvents source. |
schema knative.dev/pkg/apis.URL | (Optional) Schema is a URI, it represents the CloudEvents schemaurl extension attribute. It may be a JSON schema, a protobuf schema, etc. It is optional. |
schemaData string | (Optional) SchemaData allows the CloudEvents schema to be stored directly in the EventType. Content is dependent on the encoding. Optional attribute. The contents are not validated or manipulated by the system. |
broker string | (Optional) Broker refers to the Broker that can provide the EventType. |
reference knative.dev/pkg/apis/duck/v1.KReference | (Optional) Reference is a KReference to the belonging addressable. For example, this could be a pointer to a Broker. |
description string | (Optional) Description is an optional field used to describe the EventType, in any meaningful way. |
EventTypeStatus
(Appears on:EventType)
EventTypeStatus represents the current state of a EventType.
Field | Description |
---|---|
Status knative.dev/pkg/apis/duck/v1.Status | (Members of inherits duck/v1 Status, which currently provides: ObservedGeneration - the ‘Generation’ of the Service that was last processed by the controller. Conditions - the latest available observations of a resource’s current state. |
eventing.knative.dev/v1beta2
Package v1beta2 is the v1beta2 version of the API.
Resource Types:
EventType
EventType represents a type of event that can be consumed from a Broker.
Field | Description | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
apiVersion string | eventing.knative.dev/v1beta2 | ||||||||||||||
kind string | EventType | ||||||||||||||
metadata Kubernetes meta/v1.ObjectMeta | (Optional) Refer to the Kubernetes API documentation for the fields of the metadata field. | ||||||||||||||
spec EventTypeSpec | Spec defines the desired state of the EventType.
| ||||||||||||||
status EventTypeStatus | (Optional) Status represents the current state of the EventType. This data may be out of date. |
EventTypeSpec
(Appears on:EventType)
Field | Description |
---|---|
type string | Type represents the CloudEvents type. It is authoritative. |
source knative.dev/pkg/apis.URL | (Optional) Source is a URI, it represents the CloudEvents source. |
schema knative.dev/pkg/apis.URL | (Optional) Schema is a URI, it represents the CloudEvents schemaurl extension attribute. It may be a JSON schema, a protobuf schema, etc. It is optional. |
schemaData string | (Optional) SchemaData allows the CloudEvents schema to be stored directly in the EventType. Content is dependent on the encoding. Optional attribute. The contents are not validated or manipulated by the system. |
broker string | (Optional) Broker refers to the Broker that can provide the EventType. Deprecated: This field is deprecated and will be removed in a future release. |
reference knative.dev/pkg/apis/duck/v1.KReference | (Optional) Reference is a KReference to the belonging addressable. For example, this could be a pointer to a Broker. |
description string | (Optional) Description is an optional field used to describe the EventType, in any meaningful way. |
EventTypeStatus
(Appears on:EventType)
EventTypeStatus represents the current state of a EventType.
Field | Description |
---|---|
Status knative.dev/pkg/apis/duck/v1.Status | (Members of inherits duck/v1 Status, which currently provides: ObservedGeneration - the ‘Generation’ of the Service that was last processed by the controller. Conditions - the latest available observations of a resource’s current state. |
eventing.knative.dev/v1beta3
Package v1beta3 is the v1beta3 version of the API.
Resource Types:
EventType
EventType represents a type of event that can be consumed from a Broker.
Field | Description | ||||||
---|---|---|---|---|---|---|---|
apiVersion string | eventing.knative.dev/v1beta3 | ||||||
kind string | EventType | ||||||
metadata Kubernetes meta/v1.ObjectMeta | (Optional) Refer to the Kubernetes API documentation for the fields of the metadata field. | ||||||
spec EventTypeSpec | Spec defines the desired state of the EventType.
| ||||||
status EventTypeStatus | (Optional) Status represents the current state of the EventType. This data may be out of date. |
EventAttributeDefinition
(Appears on:EventTypeSpec)
Field | Description |
---|---|
name string | Name is the name of the CloudEvents attribute. |
required bool | Required determines whether this attribute must be set on corresponding CloudEvents. |
value string | Value is a string representing the allowable values for the EventType attribute. It may be a single value such as “/apis/v1/namespaces/default/pingsource/ps”, or it could be a template for the allowed values, such as “/apis/v1/namespaces/{namespace}/pingsource/{sourceName}. To specify a section of the string value which may change between different CloudEvents you can use curly brackets {} and optionally a variable name between them. |
EventTypeSpec
(Appears on:EventType)
Field | Description |
---|---|
reference knative.dev/pkg/apis/duck/v1.KReference | (Optional) Reference is a KReference to the belonging addressable. For example, this could be a pointer to a Broker. |
description string | (Optional) Description is an optional field used to describe the EventType, in any meaningful way. |
attributes []EventAttributeDefinition | Attributes is an array of CloudEvent attributes and extension attributes. |
EventTypeStatus
(Appears on:EventType)
EventTypeStatus represents the current state of a EventType.
Field | Description |
---|---|
Status knative.dev/pkg/apis/duck/v1.Status | (Members of inherits duck/v1 Status, which currently provides: ObservedGeneration - the ‘Generation’ of the Service that was last processed by the controller. Conditions - the latest available observations of a resource’s current state. |
flows.knative.dev/v1
Package v1 is the v1 version of the API.
Resource Types:
Parallel
Parallel defines conditional branches that will be wired in series through Channels and Subscriptions.
Field | Description | ||||||
---|---|---|---|---|---|---|---|
metadata Kubernetes meta/v1.ObjectMeta | (Optional) Refer to the Kubernetes API documentation for the fields of the metadata field. | ||||||
spec ParallelSpec | Spec defines the desired state of the Parallel.
| ||||||
status ParallelStatus | (Optional) Status represents the current state of the Parallel. This data may be out of date. |
ParallelBranch
(Appears on:ParallelSpec)
Field | Description |
---|---|
filter knative.dev/pkg/apis/duck/v1.Destination | (Optional) Filter is the expression guarding the branch |
subscriber knative.dev/pkg/apis/duck/v1.Destination | Subscriber receiving the event when the filter passes |
reply knative.dev/pkg/apis/duck/v1.Destination | (Optional) Reply is a Reference to where the result of Subscriber of this case gets sent to. If not specified, sent the result to the Parallel Reply |
delivery DeliverySpec | (Optional) Delivery is the delivery specification for events to the subscriber This includes things like retries, DLS, etc. |
ParallelBranchStatus
(Appears on:ParallelStatus)
ParallelBranchStatus represents the current state of a Parallel branch
Field | Description |
---|---|
filterSubscriptionStatus ParallelSubscriptionStatus | FilterSubscriptionStatus corresponds to the filter subscription status. |
filterChannelStatus ParallelChannelStatus | FilterChannelStatus corresponds to the filter channel status. |
subscriberSubscriptionStatus ParallelSubscriptionStatus | SubscriptionStatus corresponds to the subscriber subscription status. |
ParallelChannelStatus
(Appears on:ParallelBranchStatus, ParallelStatus)
Field | Description |
---|---|
channel Kubernetes core/v1.ObjectReference | Channel is the reference to the underlying channel. |
ready knative.dev/pkg/apis.Condition | ReadyCondition indicates whether the Channel is ready or not. |
ParallelSpec
(Appears on:Parallel)
Field | Description |
---|---|
branches []ParallelBranch | Branches is the list of Filter/Subscribers pairs. |
channelTemplate ChannelTemplateSpec | (Optional) ChannelTemplate specifies which Channel CRD to use. If left unspecified, it is set to the default Channel CRD for the namespace (or cluster, in case there are no defaults for the namespace). |
reply knative.dev/pkg/apis/duck/v1.Destination | (Optional) Reply is a Reference to where the result of a case Subscriber gets sent to when the case does not have a Reply |
ParallelStatus
(Appears on:Parallel)
ParallelStatus represents the current state of a Parallel.
Field | Description |
---|---|
Status knative.dev/pkg/apis/duck/v1.Status | (Members of inherits duck/v1 Status, which currently provides: ObservedGeneration - the ‘Generation’ of the Service that was last processed by the controller. Conditions - the latest available observations of a resource’s current state. |
ingressChannelStatus ParallelChannelStatus | IngressChannelStatus corresponds to the ingress channel status. |
branchStatuses []ParallelBranchStatus | BranchStatuses is an array of corresponding to branch statuses. Matches the Spec.Branches array in the order. |
AddressStatus knative.dev/pkg/apis/duck/v1.AddressStatus | (Members of AddressStatus is the starting point to this Parallel. Sending to this will target the first subscriber. It generally has the form {channel}.{namespace}.svc.{cluster domain name} |
auth knative.dev/pkg/apis/duck/v1.AuthStatus | (Optional) Auth provides the relevant information for OIDC authentication. |
AppliedEventPoliciesStatus AppliedEventPoliciesStatus | (Members of AppliedEventPoliciesStatus contains the list of EventPolicies which apply to this Broker |
ParallelSubscriptionStatus
(Appears on:ParallelBranchStatus)
Field | Description |
---|---|
subscription Kubernetes core/v1.ObjectReference | Subscription is the reference to the underlying Subscription. |
ready knative.dev/pkg/apis.Condition | ReadyCondition indicates whether the Subscription is ready or not. |
Sequence
Sequence defines a sequence of Subscribers that will be wired in series through Channels and Subscriptions.
Field | Description | ||||||
---|---|---|---|---|---|---|---|
metadata Kubernetes meta/v1.ObjectMeta | (Optional) Refer to the Kubernetes API documentation for the fields of the metadata field. | ||||||
spec SequenceSpec | Spec defines the desired state of the Sequence.
| ||||||
status SequenceStatus | (Optional) Status represents the current state of the Sequence. This data may be out of date. |
SequenceChannelStatus
(Appears on:SequenceStatus)
Field | Description |
---|---|
channel Kubernetes core/v1.ObjectReference | Channel is the reference to the underlying channel. |
ready knative.dev/pkg/apis.Condition | ReadyCondition indicates whether the Channel is ready or not. |
SequenceSpec
(Appears on:Sequence)
Field | Description |
---|---|
steps []SequenceStep | Steps is the list of Destinations (processors / functions) that will be called in the order provided. Each step has its own delivery options |
channelTemplate ChannelTemplateSpec | (Optional) ChannelTemplate specifies which Channel CRD to use. If left unspecified, it is set to the default Channel CRD for the namespace (or cluster, in case there are no defaults for the namespace). |
reply knative.dev/pkg/apis/duck/v1.Destination | (Optional) Reply is a Reference to where the result of the last Subscriber gets sent to. |
SequenceStatus
(Appears on:Sequence)
SequenceStatus represents the current state of a Sequence.
Field | Description |
---|---|
Status knative.dev/pkg/apis/duck/v1.Status | (Members of inherits duck/v1 Status, which currently provides: ObservedGeneration - the ‘Generation’ of the Service that was last processed by the controller. Conditions - the latest available observations of a resource’s current state. |
subscriptionStatuses []SequenceSubscriptionStatus | (Optional) SubscriptionStatuses is an array of corresponding Subscription statuses. Matches the Spec.Steps array in the order. |
channelStatuses []SequenceChannelStatus | (Optional) ChannelStatuses is an array of corresponding Channel statuses. Matches the Spec.Steps array in the order. |
address knative.dev/pkg/apis/duck/v1.Addressable | (Optional) Address is the starting point to this Sequence. Sending to this will target the first subscriber. It generally has the form {channel}.{namespace}.svc.{cluster domain name} |
auth knative.dev/pkg/apis/duck/v1.AuthStatus | (Optional) Auth provides the relevant information for OIDC authentication. |
AppliedEventPoliciesStatus AppliedEventPoliciesStatus | (Members of AppliedEventPoliciesStatus contains the list of EventPolicies which apply to this Broker |
SequenceStep
(Appears on:SequenceSpec)
Field | Description |
---|---|
Destination knative.dev/pkg/apis/duck/v1.Destination | (Members of Subscriber receiving the step event |
delivery DeliverySpec | (Optional) Delivery is the delivery specification for events to the subscriber This includes things like retries, DLS, etc. |
SequenceSubscriptionStatus
(Appears on:SequenceStatus)
Field | Description |
---|---|
subscription Kubernetes core/v1.ObjectReference | Subscription is the reference to the underlying Subscription. |
ready knative.dev/pkg/apis.Condition | ReadyCondition indicates whether the Subscription is ready or not. |
messaging.knative.dev/v1
Package v1 is the v1 version of the API.
Resource Types:
Channel
Channel represents a generic Channel. It is normally used when we want a Channel, but do not need a specific Channel implementation.
Field | Description | ||||
---|---|---|---|---|---|
apiVersion string | messaging.knative.dev/v1 | ||||
kind string | Channel | ||||
metadata Kubernetes meta/v1.ObjectMeta | (Optional) Refer to the Kubernetes API documentation for the fields of the metadata field. | ||||
spec ChannelSpec | Spec defines the desired state of the Channel.
| ||||
status ChannelStatus | (Optional) Status represents the current state of the Channel. This data may be out of date. |
InMemoryChannel
InMemoryChannel is a resource representing an in memory channel
Field | Description | ||
---|---|---|---|
apiVersion string | messaging.knative.dev/v1 | ||
kind string | InMemoryChannel | ||
metadata Kubernetes meta/v1.ObjectMeta | (Optional) Refer to the Kubernetes API documentation for the fields of the metadata field. | ||
spec InMemoryChannelSpec | Spec defines the desired state of the Channel.
| ||
status InMemoryChannelStatus | (Optional) Status represents the current state of the Channel. This data may be out of date. |
Subscription
Subscription routes events received on a Channel to a DNS name and corresponds to the subscriptions.channels.knative.dev CRD.
Field | Description | ||||||||
---|---|---|---|---|---|---|---|---|---|
apiVersion string | messaging.knative.dev/v1 | ||||||||
kind string | Subscription | ||||||||
metadata Kubernetes meta/v1.ObjectMeta | Refer to the Kubernetes API documentation for the fields of the metadata field. | ||||||||
spec SubscriptionSpec |
| ||||||||
status SubscriptionStatus |
ChannelDefaulter
ChannelDefaulter sets the default Channel CRD and Arguments on Channels that do not specify any implementation.
ChannelSpec
(Appears on:Channel)
ChannelSpec defines which subscribers have expressed interest in receiving events from this Channel. It also defines the ChannelTemplate to use in order to create the CRD Channel backing this Channel.
Field | Description |
---|---|
channelTemplate ChannelTemplateSpec | (Optional) ChannelTemplate specifies which Channel CRD to use to create the CRD Channel backing this Channel. This is immutable after creation. Normally this is set by the Channel defaulter, not directly by the user. |
ChannelableSpec ChannelableSpec | (Members of Channel conforms to ChannelableSpec |
ChannelStatus
(Appears on:Channel)
ChannelStatus represents the current state of a Channel.
Field | Description |
---|---|
ChannelableStatus ChannelableStatus | (Members of Channel conforms to ChannelableStatus |
channel knative.dev/pkg/apis/duck/v1.KReference | (Optional) Channel is an KReference to the Channel CRD backing this Channel. |
ChannelTemplateSpec
(Appears on:ParallelSpec, SequenceSpec, ChannelSpec)
Field | Description |
---|---|
spec k8s.io/apimachinery/pkg/runtime.RawExtension | (Optional) Spec defines the Spec to use for each channel created. Passed in verbatim to the Channel CRD as Spec section. |
ChannelTemplateSpecOption
ChannelTemplateSpecOption is an optional function for ChannelTemplateSpec.
InMemoryChannelSpec
(Appears on:InMemoryChannel)
InMemoryChannelSpec defines which subscribers have expressed interest in receiving events from this InMemoryChannel. arguments for a Channel.
Field | Description |
---|---|
ChannelableSpec ChannelableSpec | (Members of Channel conforms to Duck type Channelable. |
InMemoryChannelStatus
(Appears on:InMemoryChannel)
ChannelStatus represents the current state of a Channel.
Field | Description |
---|---|
ChannelableStatus ChannelableStatus | (Members of Channel conforms to Duck type ChannelableStatus. |
SubscriptionSpec
(Appears on:Subscription)
SubscriptionSpec specifies the Channel for incoming events, a Subscriber target for processing those events and where to put the result of the processing. Only From (where the events are coming from) is always required. You can optionally only Process the events (results in no output events) by leaving out the Reply. You can also perform an identity transformation on the incoming events by leaving out the Subscriber and only specifying Reply.
The following are all valid specifications: channel –[subscriber]–> reply Sink, no outgoing events: channel – subscriber no-op function (identity transformation): channel –> reply
Field | Description |
---|---|
channel knative.dev/pkg/apis/duck/v1.KReference | Reference to a channel that will be used to create the subscription You can specify only the following fields of the KReference: - Kind - APIVersion - Name - Namespace The resource pointed by this KReference must meet the contract to the ChannelableSpec duck type. If the resource does not meet this contract it will be reflected in the Subscription’s status. This field is immutable. We have no good answer on what happens to the events that are currently in the channel being consumed from and what the semantics there should be. For now, you can always delete the Subscription and recreate it to point to a different channel, giving the user more control over what semantics should be used (drain the channel first, possibly have events dropped, etc.) |
subscriber knative.dev/pkg/apis/duck/v1.Destination | Subscriber is reference to function for processing events. Events from the Channel will be delivered here and replies are sent to a Destination as specified by the Reply. |
reply knative.dev/pkg/apis/duck/v1.Destination | (Optional) Reply specifies (optionally) how to handle events returned from the Subscriber target. |
delivery DeliverySpec | (Optional) Delivery configuration |
SubscriptionStatus
(Appears on:Subscription)
SubscriptionStatus (computed) for a subscription
Field | Description |
---|---|
Status knative.dev/pkg/apis/duck/v1.Status | (Members of inherits duck/v1 Status, which currently provides: ObservedGeneration - the ‘Generation’ of the Service that was last processed by the controller. Conditions - the latest available observations of a resource’s current state. |
physicalSubscription SubscriptionStatusPhysicalSubscription | PhysicalSubscription is the fully resolved values that this Subscription represents. |
auth knative.dev/pkg/apis/duck/v1.AuthStatus | (Optional) Auth provides the relevant information for OIDC authentication. |
SubscriptionStatusPhysicalSubscription
(Appears on:SubscriptionStatus)
SubscriptionStatusPhysicalSubscription represents the fully resolved values for this Subscription.
Field | Description |
---|---|
subscriberUri knative.dev/pkg/apis.URL | (Optional) SubscriberURI is the fully resolved URI for spec.subscriber. |
subscriberCACerts string | (Optional) SubscriberCACerts is the Certification Authority (CA) certificates in PEM format according to https://www.rfc-editor.org/rfc/rfc7468 for the resolved URI for spec.subscriber. |
subscriberAudience string | (Optional) SubscriberAudience is the OIDC audience for the the resolved URI for spec.subscriber. |
replyUri knative.dev/pkg/apis.URL | (Optional) ReplyURI is the fully resolved URI for the spec.reply. |
replyCACerts string | (Optional) ReplyCACerts is the Certification Authority (CA) certificates in PEM format according to https://www.rfc-editor.org/rfc/rfc7468 for the resolved URI for the spec.reply. |
replyAudience string | (Optional) ReplyAudience is the OIDC audience for the the resolved URI for spec.reply. |
DeliveryStatus DeliveryStatus | (Members of DeliveryStatus contains a resolved URL to the dead letter sink address, and any other resolved delivery options. |
sinks.knative.dev/v1alpha1
Package v1alpha1 contains API Schema definitions for the sources v1alpha1 API group.
Resource Types:
JobSink
JobSink is the Schema for the JobSink API.
Field | Description | ||
---|---|---|---|
apiVersion string | sinks.knative.dev/v1alpha1 | ||
kind string | JobSink | ||
metadata Kubernetes meta/v1.ObjectMeta | Refer to the Kubernetes API documentation for the fields of the metadata field. | ||
spec JobSinkSpec |
| ||
status JobSinkStatus |
JobSinkSpec
(Appears on:JobSink)
JobSinkSpec defines the desired state of the JobSink.
Field | Description |
---|---|
job Kubernetes batch/v1.Job | (Optional) Job to run when an event occur. |
JobSinkStatus
(Appears on:JobSink)
JobSinkStatus defines the observed state of JobSink.
Field | Description |
---|---|
Status knative.dev/pkg/apis/duck/v1.Status | (Members of |
AddressStatus knative.dev/pkg/apis/duck/v1.AddressStatus | (Members of AddressStatus is the part where the JobSink fulfills the Addressable contract. It exposes the endpoint as an URI to get events delivered. |
job JobStatus | (Optional) |
AppliedEventPoliciesStatus AppliedEventPoliciesStatus | (Members of AppliedEventPoliciesStatus contains the list of EventPolicies which apply to this JobSink |
JobStatus
(Appears on:JobSinkStatus)
Field | Description |
---|---|
selector string |
sources.knative.dev/v1
Package v1 contains API Schema definitions for the sources v1 API group.
Resource Types:
ApiServerSource
ApiServerSource is the Schema for the apiserversources API
Field | Description | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
apiVersion string | sources.knative.dev/v1 | ||||||||||||||
kind string | ApiServerSource | ||||||||||||||
metadata Kubernetes meta/v1.ObjectMeta | Refer to the Kubernetes API documentation for the fields of the metadata field. | ||||||||||||||
spec ApiServerSourceSpec |
| ||||||||||||||
status ApiServerSourceStatus |
ContainerSource
ContainerSource is the Schema for the containersources API
Field | Description | ||||
---|---|---|---|---|---|
apiVersion string | sources.knative.dev/v1 | ||||
kind string | ContainerSource | ||||
metadata Kubernetes meta/v1.ObjectMeta | Refer to the Kubernetes API documentation for the fields of the metadata field. | ||||
spec ContainerSourceSpec |
| ||||
status ContainerSourceStatus |
PingSource
PingSource is the Schema for the PingSources API.
Field | Description | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
apiVersion string | sources.knative.dev/v1 | ||||||||||||
kind string | PingSource | ||||||||||||
metadata Kubernetes meta/v1.ObjectMeta | Refer to the Kubernetes API documentation for the fields of the metadata field. | ||||||||||||
spec PingSourceSpec |
| ||||||||||||
status PingSourceStatus |
SinkBinding
SinkBinding describes a Binding that is also a Source. The sink
(from the Source duck) is resolved to a URL and then projected into the subject
by augmenting the runtime contract of the referenced containers to have a K_SINK
environment variable holding the endpoint to which to send cloud events.
Field | Description | ||||
---|---|---|---|---|---|
apiVersion string | sources.knative.dev/v1 | ||||
kind string | SinkBinding | ||||
metadata Kubernetes meta/v1.ObjectMeta | Refer to the Kubernetes API documentation for the fields of the metadata field. | ||||
spec SinkBindingSpec |
| ||||
status SinkBindingStatus |
APIVersionKind
(Appears on:ApiServerSourceSpec)
APIVersionKind is an APIVersion and Kind tuple.
Field | Description |
---|---|
apiVersion string | APIVersion - the API version of the resource to watch. |
kind string | Kind of the resource to watch. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
APIVersionKindSelector
(Appears on:ApiServerSourceSpec)
APIVersionKindSelector is an APIVersion Kind tuple with a LabelSelector.
Field | Description |
---|---|
apiVersion string | APIVersion - the API version of the resource to watch. |
kind string | Kind of the resource to watch. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
selector Kubernetes meta/v1.LabelSelector | (Optional) LabelSelector filters this source to objects to those resources pass the label selector. More info: http://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors |
ApiServerSourceSpec
(Appears on:ApiServerSource)
ApiServerSourceSpec defines the desired state of ApiServerSource
Field | Description |
---|---|
SourceSpec knative.dev/pkg/apis/duck/v1.SourceSpec | (Members of inherits duck/v1 SourceSpec, which currently provides: Sink - a reference to an object that will resolve to a domain name or a URI directly to use as the sink. CloudEventOverrides - defines overrides to control the output format and modifications of the event sent to the sink. |
resources []APIVersionKindSelector | Resource are the resources this source will track and send related lifecycle events from the Kubernetes ApiServer, with an optional label selector to help filter. |
owner APIVersionKind | (Optional) ResourceOwner is an additional filter to only track resources that are owned by a specific resource type. If ResourceOwner matches Resources[n] then Resources[n] is allowed to pass the ResourceOwner filter. |
mode string | (Optional) EventMode controls the format of the event. |
serviceAccountName string | (Optional) ServiceAccountName is the name of the ServiceAccount to use to run this source. Defaults to default if not set. |
namespaceSelector Kubernetes meta/v1.LabelSelector | (Optional) NamespaceSelector is a label selector to capture the namespaces that should be watched by the source. |
filters []SubscriptionsAPIFilter | (Optional) Filters is an experimental field that conforms to the CNCF CloudEvents Subscriptions API. It’s an array of filter expressions that evaluate to true or false. If any filter expression in the array evaluates to false, the event MUST NOT be sent to the Sink. If all the filter expressions in the array evaluate to true, the event MUST be attempted to be delivered. Absence of a filter or empty array implies a value of true. |
ApiServerSourceStatus
(Appears on:ApiServerSource)
ApiServerSourceStatus defines the observed state of ApiServerSource
Field | Description |
---|---|
SourceStatus knative.dev/pkg/apis/duck/v1.SourceStatus | (Members of inherits duck/v1 SourceStatus, which currently provides: ObservedGeneration - the ‘Generation’ of the Service that was last processed by the controller. Conditions - the latest available observations of a resource’s current state. * SinkURI - the current active sink URI that has been configured for the Source. |
namespaces []string | Namespaces show the namespaces currently watched by the ApiServerSource |
ContainerSourceSpec
(Appears on:ContainerSource)
ContainerSourceSpec defines the desired state of ContainerSource
Field | Description |
---|---|
SourceSpec knative.dev/pkg/apis/duck/v1.SourceSpec | (Members of inherits duck/v1 SourceSpec, which currently provides: Sink - a reference to an object that will resolve to a domain name or a URI directly to use as the sink. CloudEventOverrides - defines overrides to control the output format and modifications of the event sent to the sink. |
template Kubernetes core/v1.PodTemplateSpec | Template describes the pods that will be created |
ContainerSourceStatus
(Appears on:ContainerSource)
ContainerSourceStatus defines the observed state of ContainerSource
Field | Description |
---|---|
SourceStatus knative.dev/pkg/apis/duck/v1.SourceStatus | (Members of inherits duck/v1 SourceStatus, which currently provides: ObservedGeneration - the ‘Generation’ of the Service that was last processed by the controller. Conditions - the latest available observations of a resource’s current state. * SinkURI - the current active sink URI that has been configured for the Source. |
PingSourceSpec
(Appears on:PingSource)
PingSourceSpec defines the desired state of the PingSource.
Field | Description |
---|---|
SourceSpec knative.dev/pkg/apis/duck/v1.SourceSpec | (Members of inherits duck/v1 SourceSpec, which currently provides: Sink - a reference to an object that will resolve to a domain name or a URI directly to use as the sink. CloudEventOverrides - defines overrides to control the output format and modifications of the event sent to the sink. |
schedule string | (Optional) Schedule is the cron schedule. Defaults to |
timezone string | Timezone modifies the actual time relative to the specified timezone. Defaults to the system time zone. More general information about time zones: https://www.iana.org/time-zones List of valid timezone values: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones |
contentType string | (Optional) ContentType is the media type of Data or DataBase64. Default is empty. |
data string | (Optional) Data is data used as the body of the event posted to the sink. Default is empty. Mutually exclusive with DataBase64. |
dataBase64 string | (Optional) DataBase64 is the base64-encoded string of the actual event’s body posted to the sink. Default is empty. Mutually exclusive with Data. |
PingSourceStatus
(Appears on:PingSource)
PingSourceStatus defines the observed state of PingSource.
Field | Description |
---|---|
SourceStatus knative.dev/pkg/apis/duck/v1.SourceStatus | (Members of inherits duck/v1 SourceStatus, which currently provides: ObservedGeneration - the ‘Generation’ of the Service that was last processed by the controller. Conditions - the latest available observations of a resource’s current state. * SinkURI - the current active sink URI that has been configured for the Source. |
SinkBindingSpec
(Appears on:SinkBinding)
SinkBindingSpec holds the desired state of the SinkBinding (from the client).
Field | Description |
---|---|
SourceSpec knative.dev/pkg/apis/duck/v1.SourceSpec | (Members of inherits duck/v1 SourceSpec, which currently provides: Sink - a reference to an object that will resolve to a domain name or a URI directly to use as the sink. CloudEventOverrides - defines overrides to control the output format and modifications of the event sent to the sink. |
BindingSpec knative.dev/pkg/apis/duck/v1.BindingSpec | (Members of inherits duck/v1 BindingSpec, which currently provides: * Subject - Subject references the resource(s) whose “runtime contract” should be augmented by Binding implementations. |
SinkBindingStatus
(Appears on:SinkBinding)
SinkBindingStatus communicates the observed state of the SinkBinding (from the controller).
Field | Description |
---|---|
SourceStatus knative.dev/pkg/apis/duck/v1.SourceStatus | (Members of inherits duck/v1 SourceStatus, which currently provides: ObservedGeneration - the ‘Generation’ of the Service that was last processed by the controller. Conditions - the latest available observations of a resource’s current state. * SinkURI - the current active sink URI that has been configured for the Source. |
oidcTokenSecretName string | OIDCTokenSecretName is the name of the secret containing the token for this SinkBindings OIDC authentication |
sources.knative.dev/v1beta2
Package v1beta2 contains API Schema definitions for the sources v1beta2 API group.
Resource Types:
PingSource
PingSource is the Schema for the PingSources API.
Field | Description | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
apiVersion string | sources.knative.dev/v1beta2 | ||||||||||||
kind string | PingSource | ||||||||||||
metadata Kubernetes meta/v1.ObjectMeta | Refer to the Kubernetes API documentation for the fields of the metadata field. | ||||||||||||
spec PingSourceSpec |
| ||||||||||||
status PingSourceStatus |
PingSourceSpec
(Appears on:PingSource)
PingSourceSpec defines the desired state of the PingSource.
Field | Description |
---|---|
SourceSpec knative.dev/pkg/apis/duck/v1.SourceSpec | (Members of inherits duck/v1 SourceSpec, which currently provides: Sink - a reference to an object that will resolve to a domain name or a URI directly to use as the sink. CloudEventOverrides - defines overrides to control the output format and modifications of the event sent to the sink. |
schedule string | (Optional) Schedule is the cron schedule. Defaults to |
timezone string | Timezone modifies the actual time relative to the specified timezone. Defaults to the system time zone. More general information about time zones: https://www.iana.org/time-zones List of valid timezone values: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones |
contentType string | (Optional) ContentType is the media type of Data or DataBase64. Default is empty. |
data string | (Optional) Data is data used as the body of the event posted to the sink. Default is empty. Mutually exclusive with DataBase64. |
dataBase64 string | (Optional) DataBase64 is the base64-encoded string of the actual event’s body posted to the sink. Default is empty. Mutually exclusive with Data. |
PingSourceStatus
(Appears on:PingSource)
PingSourceStatus defines the observed state of PingSource.
Field | Description |
---|---|
SourceStatus knative.dev/pkg/apis/duck/v1.SourceStatus | (Members of inherits duck/v1 SourceStatus, which currently provides: ObservedGeneration - the ‘Generation’ of the Service that was last processed by the controller. Conditions - the latest available observations of a resource’s current state. * SinkURI - the current active sink URI that has been configured for the Source. |
Generated with gen-crd-api-reference-docs
.