vela status

Show status of an application.

Synopsis

Show status of vela application.

  1. vela status APP_NAME [flags]

Examples

  1. # Get basic app info
  2. vela status APP_NAME
  3. # Show detailed info in tree
  4. vela status first-vela-app --tree --detail --detail-format list
  5. # Show pod list
  6. vela status first-vela-app --pod
  7. vela status first-vela-app --pod --component express-server --cluster local
  8. # Show endpoint list
  9. vela status first-vela-app --endpoint
  10. # Get raw Application yaml (without managedFields)
  11. vela status first-vela-app -o yaml
  12. # Get raw Application status using jsonpath
  13. vela status first-vela-app -o jsonpath='{.status}'

Options

  1. --cluster string filter the endpoints or pods by cluster name
  2. -c, --component string filter the endpoints or pods by component name
  3. -d, --detail display the realtime details of application resources, must be used with --tree
  4. --detail-format string the format for displaying details, must be used with --detail. Can be one of inline, wide, list, table, raw. (default "inline")
  5. -p, --endpoint show all service endpoints of the application
  6. -e, --env string specify environment name for application
  7. -h, --help help for status
  8. -n, --namespace string specify the Kubernetes namespace to use
  9. -o, --output string raw Application output format. One of: (json, yaml, jsonpath)
  10. --pod show pod list of the application
  11. -s, --svc string service name
  12. -t, --tree display the application resources into tree structure

Options inherited from parent commands

  1. -y, --yes Assume yes for all user prompts

SEE ALSO

Go Back to CLI Commands Homepage.

Auto generated by spf13/cobra script in KubeVela.