Listener status command¶
Display status of all listeners or a specific listener
| Platforms | Kubernetes, Docker, Podman, Linux |
|---|
Examples¶
# Show the status of all listeners in the current site
$ skupper listener status
NAME STATUS ROUTING-KEY HOST PORT CONNECTORS
backend Ready backend backend 8080 true
database Ready database database 5432 true
# Show the status of one listener
$ skupper listener status backend
Name: backend
Status: Ready
Message: <none>
Routing key: backend
Host: backend
Port: 8080
Has matching connectors: true
Primary options¶
--help
boolean
help for status -o, --output string print resources to the console instead of submitting them to the Skupper controller. Choices: json, yaml ``` ``` -c, --context string Set the kubeconfig context
--kubeconfig
<string>
Path to the kubeconfig file to use -n, --namespace string Set the namespace -p, --platform string Set the platform type to use [kubernetes, podman, docker, linux] ```