snctl get pulsarclusters # List all pulsar clusters in the organization
snctl get pulsarclusters mycluster # List a particular pulsar cluster
snctl get puslarclusters mycluster -o yaml # Get the manifest of a pulsar cluster
# Describe commands with verbose output
snctl describe pulsarcluster mycluster
# List Pulsar Clusters Sorted by Creation Time
snctl get pulsarclusters --sort-by=.metadata.creationTimestamp
# Show labels for all clusters (or any other StreamNative Cloud object that supports labelling)
snctl get pulsarclusters --show-labels
# Get the Pulsar Clusters with label app=myapp
snctl get pulsarclusters --selector=app=myapp
# Check which Pulsar Clusters are ready and their locations with custom-columns
snctl get pulsarclusters -o custom-columns='CLUSTER NAME:.metadata.name,LOCATION:.spec.location,STATUS:.status.conditions[?(@.type=="Ready")].status'