Visualize your Knative Eventing connections.
Visit the root of the graph service in a web browser. This will show you the graph of the current Knative resources in the namespace the graph resource is installed.
To install into the default
namespace,
kubectl apply -f https://github.com/n3wscott/graph/releases/download/v0.6.6/release.yaml
To install into a test
namespace,
export NAMESPACE=test # <-- update test to your target namespace.
curl -L https://github.com/n3wscott/graph/releases/download/v0.6.6/release.yaml \
| sed "s/default/${NAMESPACE}/" \
| kubectl apply -n $NAMESPACE --filename -
NOTE: This is required because of the ServiceAccount and ClusterBindings required for Graph.
To install into the default
namespace,
ko apply -f config
To install into a test
namespace,
export NAMESPACE=test # <-- update test to your target namespace.
ko resolve -f config \
| sed "s/default/${NAMESPACE}/" \
| kubectl apply -n $NAMESPACE --filename -
- Get Deployments working when broker is the sink.
- Work with owner ref graphs.
- Have Graph take a namespace param.
- Make Graph work well on namespaced clusters (mt-clusters)