resources

package
v0.22.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 13, 2021 License: Apache-2.0 Imports: 19 Imported by: 49

Documentation

Index

Constants

View Source
const (
	CoreAPIVersion        = "v1"
	EventingAPIVersion    = "eventing.knative.dev/v1beta1"
	MessagingAPIVersion   = "messaging.knative.dev/v1beta1"
	FlowsAPIVersion       = "flows.knative.dev/v1beta1"
	ServingAPIVersion     = "serving.knative.dev/v1"
	SourcesV1A2APIVersion = "sources.knative.dev/v1alpha2"
	SourcesV1B1APIVersion = "sources.knative.dev/v1beta1"
	SourcesV1APIVersion   = "sources.knative.dev/v1"
)

API versions for the resources.

View Source
const (
	SubscriptionKind string = "Subscription"

	BrokerKind  string = "Broker"
	TriggerKind string = "Trigger"
)

Kind for eventing resources.

View Source
const (
	InMemoryChannelKind string = "InMemoryChannel"

	ChannelKind  string = "Channel"
	SequenceKind string = "Sequence"
	ParallelKind string = "Parallel"
)

Kind for messaging resources.

View Source
const (
	FlowsSequenceKind string = "Sequence"
	FlowsParallelKind string = "Parallel"
)

Kind for flows resources.

View Source
const (
	ApiServerSourceKind string = "ApiServerSource"
	PingSourceKind      string = "PingSource"
)

Kind for sources resources that exist in Eventing core

View Source
const (
	PerfConsumerService   = "perf-consumer"
	PerfAggregatorService = "perf-aggregator"
	PerfServiceAccount    = "perf-eventing"
)
View Source
const (
	KServiceKind string = "Service"
)

Kind for Knative resources.

View Source
const (
	ServiceKind string = "Service"
)

Kind for core Kubernetes resources.

Variables

View Source
var (
	// KServicesGVR is GroupVersionResource for Knative Service
	KServicesGVR = schema.GroupVersionResource{
		Group:    "serving.knative.dev",
		Version:  "v1",
		Resource: "services",
	}
	// KServiceType is type of Knative Service
	KServiceType = metav1.TypeMeta{
		Kind:       "Service",
		APIVersion: KServicesGVR.GroupVersion().String(),
	}
)

Functions

func BrokerV1 added in v0.16.0

func BrokerV1(name string, options ...BrokerV1Option) *eventingv1.Broker

BrokerV1 returns a v1 Broker.

func BrokerV1Beta1 added in v0.13.0

func BrokerV1Beta1(name string, options ...BrokerV1Beta1Option) *eventingv1beta1.Broker

BrokerV1Beta1 returns a v1beta1 Broker.

func ClusterRoleBinding

func ClusterRoleBinding(saName, saNamespace, crName, crbName string) *rbacv1.ClusterRoleBinding

ClusterRoleBinding creates a Kubernetes ClusterRoleBinding with the given ServiceAccount name and namespace, ClusterRole name, ClusterRoleBinding name.

func ConfigMap added in v0.13.0

func ConfigMap(name, namespace string, data map[string]string) *corev1.ConfigMap

ConfigMap returns a ConfigMap.

func Delivery

func Delivery(options ...DeliveryOption) *eventingduckv1beta1.DeliverySpec

Delivery returns a DeliverySpec.

func HelloWorldPod

func HelloWorldPod(name string, options ...PodOption) *corev1.Pod

HelloWorldPod creates a Pod that logs "Hello, World!".

func KServiceDeploymentName added in v0.15.0

func KServiceDeploymentName(client ServingClient, name, namespace string) (string, bool, error)

KServiceDeploymentName returns a name of deployment of Knative Service that receives 100% of traffic. If ksvc isn't ready yet second return value will be false.

func KServiceRef

func KServiceRef(name string) *corev1.ObjectReference

KServiceRef returns a Knative Service ObjectReference for a given Service name.

func KnativeRefForBroker added in v0.14.0

func KnativeRefForBroker(name, namespace string) *duckv1.KReference

func KnativeRefForKservice added in v0.15.0

func KnativeRefForKservice(name, namespace string) *duckv1.KReference

KnativeRefForKservice return a duck reference for Knative Service

func KnativeRefForService added in v0.13.0

func KnativeRefForService(name, namespace string) *duckv1.KReference

func PerformanceAggregatorService

func PerformanceAggregatorService() *corev1.Service

func PerformanceConsumerService

func PerformanceConsumerService() *corev1.Service

func PerformanceImageAggregatorPod

func PerformanceImageAggregatorPod(expectedRecords int, publish bool, additionalArgs ...string) *corev1.Pod

func PerformanceImageReceiverPod

func PerformanceImageReceiverPod(imageName string, pace string, warmup string, aggregatorHostname string, additionalArgs ...string) *corev1.Pod

func Role

func Role(rName string, options ...RoleOption) *rbacv1.Role

EventWatcherRole creates a Kubernetes Role

func RoleBinding

func RoleBinding(saName, saNamespace, rKind, rName, rbName, rbNamespace string) *rbacv1.RoleBinding

RoleBinding creates a Kubernetes RoleBinding with the given ServiceAccount name and namespace, Role or ClusterRole Kind, name, RoleBinding name and namespace.

func Service

func Service(name string, selector map[string]string, ports []corev1.ServicePort) *corev1.Service

Service creates a Kubernetes Service with the given name, selector and ports

func ServiceAccount

func ServiceAccount(name, namespace string) *corev1.ServiceAccount

ServiceAccount creates a Kubernetes ServiceAccount with the given name and namespace.

func ServiceDefaultHTTP

func ServiceDefaultHTTP(name string, selector map[string]string) *corev1.Service

Service creates a Kubernetes Service with the given name, namespace, and selector. Port 8080 is set as the target port.

func ServiceKRef added in v0.14.0

func ServiceKRef(name string) *v1.KReference

ServiceKRef returns a Service ObjectReference for a given Service name.

func ServiceRef

func ServiceRef(name string) *corev1.ObjectReference

ServiceRef returns a Service ObjectReference for a given Service name.

func SubscriptionV1 added in v0.16.0

func SubscriptionV1(
	name, channelName string,
	channelTypeMeta *metav1.TypeMeta,
	options ...SubscriptionOptionV1,
) *messagingv1.Subscription

SubscriptionV1 returns a v1 Subscription.

func SubscriptionV1Beta1 added in v0.13.0

func SubscriptionV1Beta1(
	name, channelName string,
	channelTypeMeta *metav1.TypeMeta,
	options ...SubscriptionOptionV1Beta1,
) *messagingv1beta1.Subscription

SubscriptionV1Beta1 returns a v1beta1 Subscription.

func TriggerV1 added in v0.16.0

func TriggerV1(name string, options ...TriggerOptionV1) *eventingv1.Trigger

TriggerV1 returns a v1 Trigger.

func TriggerV1Beta1 added in v0.13.0

func TriggerV1Beta1(name string, options ...TriggerOptionV1Beta1) *eventingv1beta1.Trigger

TriggerV1Beta1 returns a v1beta1 Trigger.

Types

type BrokerV1Beta1Option added in v0.13.0

type BrokerV1Beta1Option func(*eventingv1beta1.Broker)

BrokerV1Beta1Option enables further configuration of a v1beta1 Broker.

func WithBrokerClassForBrokerV1Beta1 added in v0.14.0

func WithBrokerClassForBrokerV1Beta1(brokerClass string) BrokerV1Beta1Option

WithBrokerClassForBrokerV1Beta1 returns a function that adds a brokerClass annotation to the given Broker.

func WithConfigForBrokerV1Beta1 added in v0.15.0

func WithConfigForBrokerV1Beta1(config *duckv1.KReference) BrokerV1Beta1Option

func WithConfigMapForBrokerConfig added in v0.15.0

func WithConfigMapForBrokerConfig() BrokerV1Beta1Option

WithConfigMapForBrokerConfig returns a function that configures the ConfigMap for the Spec.Config for a given Broker. Note that the CM must exist and has to be in the same namespace as the Broker and have the same Name. Typically you'd do this by calling client.CreateBrokerConfigMapOrFail and then call this method. If those don't apply to your ConfigMap, look at WithConfigForBrokerV1Beta1

func WithDeliveryForBrokerV1Beta1 added in v0.15.0

func WithDeliveryForBrokerV1Beta1(delivery *eventingduckv1beta1.DeliverySpec) BrokerV1Beta1Option

WithDeliveryForBrokerV1Beta1 returns a function that adds a Delivery for the given v1beta1 Broker.

type BrokerV1Option added in v0.16.0

type BrokerV1Option func(*eventingv1.Broker)

BrokerV1Option enables further configuration of a v1 Broker.

func WithBrokerClassForBrokerV1 added in v0.16.0

func WithBrokerClassForBrokerV1(brokerClass string) BrokerV1Option

WithBrokerClassForBrokerV1 returns a function that adds a brokerClass annotation to the given v1 Broker.

func WithConfigForBrokerV1 added in v0.16.0

func WithConfigForBrokerV1(config *duckv1.KReference) BrokerV1Option

func WithDeliveryForBrokerV1 added in v0.16.0

func WithDeliveryForBrokerV1(delivery *eventingduckv1.DeliverySpec) BrokerV1Option

WithDeliveryForBrokerV1 returns a function that adds a Delivery for the given v1 Broker.

type DeliveryOption

type DeliveryOption func(*eventingduckv1beta1.DeliverySpec)

DeliveryOption enables further configuration of DeliverySpec.

func WithDeadLetterSinkForDelivery

func WithDeadLetterSinkForDelivery(name string) DeliveryOption

WithDeadLetterSinkForDelivery returns an options that adds a DeadLetterSink for the given DeliverySpec.

type KServiceRoute added in v0.15.0

type KServiceRoute struct {
	TrafficPercent uint8
	DeploymentName string
}

KServiceRoute represents ksvc route, so how much traffic is routed to given deployment

func KServiceRoutes added in v0.15.0

func KServiceRoutes(client ServingClient, name, namespace string) ([]KServiceRoute, bool, error)

KServiceRoutes gets routes of given ksvc. If ksvc isn't ready yet second return value will be false.

type MetaResource

type MetaResource struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
}

MetaResource includes necessary meta data to retrieve the generic Kubernetes resource.

func NewMetaResource

func NewMetaResource(name, namespace string, typemeta *metav1.TypeMeta) *MetaResource

NewMetaResource returns a MetaResource built from the given name, namespace and typemeta.

type MetaResourceList

type MetaResourceList struct {
	metav1.TypeMeta `json:",inline"`
	Namespace       string
}

MetaResourceList includes necessary meta data to retrieve the generic Kubernetes resource list.

func NewMetaResourceList

func NewMetaResourceList(namespace string, typemeta *metav1.TypeMeta) *MetaResourceList

NewMetaResourceList returns a MetaResourceList built from the given namespace and typemeta.

type PodOption

type PodOption func(*corev1.Pod)

PodOption enables further configuration of a Pod.

func WithLabelsForPod

func WithLabelsForPod(labels map[string]string) PodOption

WithLabelsForPod returns an option setting the pod labels

type RoleOption

type RoleOption func(*rbacv1.Role)

Option enables further configuration of a Role.

func WithRuleForRole

func WithRuleForRole(rule *rbacv1.PolicyRule) RoleOption

WithRuleForRole is a Role Option for adding a rule

type ServingClient added in v0.15.0

type ServingClient struct {
	Kube    *pkgTest.KubeClient
	Dynamic dynamic.Interface
}

ServingClient holds clients required to get serving resources

type SubscriptionOptionV1 added in v0.16.0

type SubscriptionOptionV1 func(*messagingv1.Subscription)

SubscriptionOptionV1 enables further configuration of a v1 Subscription.

func WithDeadLetterSinkForSubscriptionV1 added in v0.16.0

func WithDeadLetterSinkForSubscriptionV1(name string) SubscriptionOptionV1

WithDeadLetterSinkForSubscriptionV1 returns an options that adds a DeadLetterSink for the given v1 Subscription.

func WithReplyForSubscriptionV1 added in v0.16.0

func WithReplyForSubscriptionV1(name string, typemeta *metav1.TypeMeta) SubscriptionOptionV1

WithReplyForSubscriptionV1 returns an options that adds a ReplyStrategy for the given v1 Subscription.

func WithSubscriberForSubscriptionV1 added in v0.16.0

func WithSubscriberForSubscriptionV1(name string) SubscriptionOptionV1

WithSubscriberForSubscriptionV1 returns an option that adds a Subscriber for the given v1 Subscription.

type SubscriptionOptionV1Beta1 added in v0.13.0

type SubscriptionOptionV1Beta1 func(*messagingv1beta1.Subscription)

SubscriptionOptionV1Beta1 enables further configuration of a v1beta1 Subscription.

func WithDeadLetterSinkForSubscription

func WithDeadLetterSinkForSubscription(name string) SubscriptionOptionV1Beta1

WithDeadLetterSinkForSubscription returns an options that adds a DeadLetterSink for the given Subscription.

func WithReplyForSubscription

func WithReplyForSubscription(name string, typemeta *metav1.TypeMeta) SubscriptionOptionV1Beta1

WithReplyForSubscription returns an options that adds a ReplyStrategy for the given Subscription.

func WithSubscriberForSubscription

func WithSubscriberForSubscription(name string) SubscriptionOptionV1Beta1

WithSubscriberForSubscription returns an option that adds a Subscriber for the given v1beta1 Subscription.

type TriggerOptionV1 added in v0.16.0

type TriggerOptionV1 func(*eventingv1.Trigger)

TriggerOptionV1 enables further configuration of a v1 Trigger.

func WithAttributesTriggerFilterV1 added in v0.16.0

func WithAttributesTriggerFilterV1(eventSource, eventType string, extensions map[string]interface{}) TriggerOptionV1

WithAttributesTriggerFilter returns an option that adds a TriggerFilter with Attributes for the given Trigger.

func WithBrokerV1 added in v0.16.0

func WithBrokerV1(name string) TriggerOptionV1

WithBrokerV1 returns an option that adds a broker for the given Trigger.

func WithSubscriberServiceRefForTriggerV1 added in v0.16.0

func WithSubscriberServiceRefForTriggerV1(name string) TriggerOptionV1

WithSubscriberServiceRefForTriggerV1 returns an option that adds a Subscriber Knative Service Ref for the given v1 Trigger.

func WithSubscriberURIForTriggerV1 added in v0.16.0

func WithSubscriberURIForTriggerV1(uri string) TriggerOptionV1

WithSubscriberURIForTriggerV1 returns an option that adds a Subscriber URI for the given v1 Trigger.

type TriggerOptionV1Beta1 added in v0.13.0

type TriggerOptionV1Beta1 func(*eventingv1beta1.Trigger)

TriggerOptionV1Beta1 enables further configuration of a v1beta1 Trigger.

func WithAttributesTriggerFilterV1Beta1 added in v0.13.0

func WithAttributesTriggerFilterV1Beta1(eventSource, eventType string, extensions map[string]interface{}) TriggerOptionV1Beta1

WithAttributesTriggerFilter returns an option that adds a TriggerFilter with Attributes for the given Trigger.

func WithBrokerV1Beta1 added in v0.15.0

func WithBrokerV1Beta1(name string) TriggerOptionV1Beta1

WithBrokerV1Beta1 returns an option that adds a broker for the given Trigger.

func WithDependencyAnnotationTriggerV1Beta1 added in v0.13.1

func WithDependencyAnnotationTriggerV1Beta1(dependencyAnnotation string) TriggerOptionV1Beta1

WithDependencyAnnotationTrigger returns an option that adds a dependency annotation to the given Trigger.

func WithSubscriberKServiceRefForTrigger

func WithSubscriberKServiceRefForTrigger(name string) TriggerOptionV1Beta1

WithSubscriberKServiceRefForTrigger returns an option that adds a Subscriber Knative Service Ref for the given Trigger.

func WithSubscriberServiceRefForTriggerV1Beta1 added in v0.13.0

func WithSubscriberServiceRefForTriggerV1Beta1(name string) TriggerOptionV1Beta1

WithSubscriberServiceRefForTriggerV1Beta1 returns an option that adds a Subscriber Knative Service Ref for the given v1beta1 Trigger.

func WithSubscriberURIForTriggerV1Beta1 added in v0.16.0

func WithSubscriberURIForTriggerV1Beta1(uri string) TriggerOptionV1Beta1

WithSubscriberURIForTriggerV1Beta1 returns an option that adds a Subscriber URI for the given v1beta1 Trigger.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL