diff --git a/docs/eventing/sources/README.md b/docs/eventing/sources/README.md index 325d853afcc..c58749da951 100644 --- a/docs/eventing/sources/README.md +++ b/docs/eventing/sources/README.md @@ -48,6 +48,7 @@ Name | Status | Support | Description [GitLab](https://gitlab.com/triggermesh/gitlabsource) | Proof of Concept | None | Registers for events of the specified types on the specified GitLab repository. Brings those events into Knative. [Kubernetes](https://github.com/knative/eventing/blob/master/pkg/apis/sources/v1alpha1/apiserver_types.go) | Active Development | Knative | Brings Kubernetes API server events into Knative. [Ping](https://github.com/knative/eventing/blob/master/pkg/apis/sources/v1alpha2/ping_types.go) | In development | None | Uses an in-memory timer to produce events with a fixed payload on a specified cron schedule. +[VMware](https://github.com/vmware-tanzu/sources-for-knative/tree/{{< branch >}}/pkg/apis/source/v1alpha1/vspheresource_types.go) | Active Development | None | Brings [vSphere](https://www.vmware.com/products/vsphere.html) events into Knative. diff --git a/docs/eventing/sources/sources.yaml b/docs/eventing/sources/sources.yaml index 922b359328a..ab6c680f815 100644 --- a/docs/eventing/sources/sources.yaml +++ b/docs/eventing/sources/sources.yaml @@ -131,6 +131,12 @@ sources: support: None description: > Brings [Apache CouchDB](https://couchdb.apache.org/) messages into Knative. + - name: VMware + url: https://github.com/vmware-tanzu/sources-for-knative/tree/{{< branch >}}/pkg/apis/source/v1alpha1/vspheresource_types.go + status: Active Development + support: None + description: > + Brings [vSphere](https://www.vmware.com/products/vsphere.html) events into Knative. # These are containers intended to be used with ContainerSource, but are not CRDs. containers: diff --git a/docs/install/any-kubernetes-cluster.md b/docs/install/any-kubernetes-cluster.md index ee1c87077fd..8acc212fde2 100644 --- a/docs/install/any-kubernetes-cluster.md +++ b/docs/install/any-kubernetes-cluster.md @@ -704,6 +704,20 @@ To learn more about the Apache CouchDB source, read [our documentation]((https:/ {{< /tab >}} +{{% tab name="VMware Sources and Bindings" %}} + +{{< feature-state version="v0.14" state="alpha" >}} + +The following command installs the VMware Sources and Bindings: + + ```bash + kubectl apply --filename {{< artifact org="vmware-tanzu" repo="sources-for-knative" file="release.yaml" >}} + ``` + +To learn more about the VMware sources and bindings, try [our samples](https://github.com/vmware-tanzu/sources-for-knative/tree/master/samples/README.md). + +{{< /tab >}} +