Skip to content
This repository has been archived by the owner on Nov 25, 2021. It is now read-only.

Commit

Permalink
doc: remove $ signs from code examples
Browse files Browse the repository at this point in the history
Signed-off-by: Hasan Turken <[email protected]>
  • Loading branch information
turkenh committed Oct 26, 2019
1 parent a52f21a commit 459339e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,20 +68,20 @@ Trace command aims to ease debugging and troubleshooting process by providing a
It finds the relevant objects for a given one and provides detailed information.

```
$ kubectl crossplane trace TYPE[.GROUP] NAME [-n| --namespace NAMESPACE]
kubectl crossplane trace TYPE[.GROUP] NAME [-n| --namespace NAMESPACE]
```

Examples:

```
# Trace a KubernetesApplication
$ kubectl crossplane trace KubernetesApplication wordpress-app-83f04457-0b1b-4532-9691-f55cf6c0da6e -n app-project1-dev
kubectl crossplane trace KubernetesApplication wordpress-app-83f04457-0b1b-4532-9691-f55cf6c0da6e -n app-project1-dev
# Trace a MySQLInstance
$ kubectl crossplane trace MySQLInstance wordpress-mysql-83f04457-0b1b-4532-9691-f55cf6c0da6e -n app-project1-dev
kubectl crossplane trace MySQLInstance wordpress-mysql-83f04457-0b1b-4532-9691-f55cf6c0da6e -n app-project1-dev
# Graph output, which can be visualized with graphviz as follows.
$ kubectl crossplane trace KubernetesApplication wordpress-app-83f04457-0b1b-4532-9691-f55cf6c0da6e -n app-project1-dev -o dot | dot -Tpng > /tmp/output.png
kubectl crossplane trace KubernetesApplication wordpress-app-83f04457-0b1b-4532-9691-f55cf6c0da6e -n app-project1-dev -o dot | dot -Tpng > /tmp/output.png
```

For more information, see [the trace command documentation](docs/trace-command.md).
Expand Down

0 comments on commit 459339e

Please sign in to comment.