vscode-openshift-tools
vscode-openshift-tools copied to clipboard
`Show Status Graph` command to display graph of OpenShift resources for selected Project
oc status -o dot
description says:
This command will show services, deployment configs, build configurations, and active deployments. If you have any misconfigured components information about them will be shown. For more information about individual items, use the describe command (e.g. oc describe buildConfig, oc describe deploymentConfig, oc describe service).
You can specify an output format of "-o dot" to have this command output the generated status graph in DOT format that is suitable for use by the "dot" command.
the result form dot command would look like
we can do better or reuse OpenShift Console component in WEB View.