Skip to content

Commit

Permalink
Fix missing apostrophe for jq
Browse files Browse the repository at this point in the history
  • Loading branch information
sj14 committed Jun 7, 2023
1 parent b9fa66b commit 307a865
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ $ kubectl -n node-feature-discovery get all
pod/nfd-worker-mjg9f 1/1 Running 0 17s
...

$ kubectl get no -o json | jq .items[].metadata.labels
$ kubectl get no -o json | jq '.items[].metadata.labels'
{
"kubernetes.io/arch": "amd64",
"kubernetes.io/os": "linux",
Expand Down
2 changes: 1 addition & 1 deletion docs/get-started/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ $ kubectl -n node-feature-discovery get all
pod/nfd-worker-mjg9f 1/1 Running 0 17s
...

$ kubectl get nodes -o json | jq .items[].metadata.labels
$ kubectl get nodes -o json | jq '.items[].metadata.labels'
{
"kubernetes.io/arch": "amd64",
"kubernetes.io/os": "linux",
Expand Down
2 changes: 1 addition & 1 deletion docs/get-started/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ deployment.apps/nfd-master 1/1 1 1 17s
Check that NFD feature labels have been created

```bash
$ kubectl get no -o json | jq .items[].metadata.labels
$ kubectl get no -o json | jq '.items[].metadata.labels'
{
"kubernetes.io/arch": "amd64",
"kubernetes.io/os": "linux",
Expand Down

0 comments on commit 307a865

Please sign in to comment.