Skip to content

Commit 6713b95

Browse files
committed
Edit README
1 parent ee3b750 commit 6713b95

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

go/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Let's get started.
1313

1414
Make sure you have the `go` command installed. You can find installation instructions in the [Go documentation](https://golang.org/dl/).
1515

16-
## Generating a resource definition
16+
## Generating a Pod resource definition
1717

1818
First, create a new directory for the program that you are going to write:
1919

@@ -82,7 +82,7 @@ go run main.go
8282

8383
The output is the JSON resource definition of a Pod.
8484

85-
Note that this JSON has no newlines and indentation, which makes it hard to read. If you want, you can pretty-print the JSON with `jq`:
85+
Note that this JSON has no newlines and indentation, which makes it hard to read. If you want, you can pretty-print the JSON with [`jq`](https://stedolan.github.io/jq/):
8686

8787
```shell
8888
$ go run main.go | jq
@@ -130,7 +130,7 @@ You can verify that the Pod has been created correctly with:
130130
kubectl get pods
131131
```
132132

133-
## Submitting a resource definition to the cluster
133+
## Submitting a Pod resource definition to the cluster
134134

135135
Instead of saving the JSON resource definition to a file and then using kubectl to submit it to the cluster, you can submit the resource definition to the cluster directly in your code.
136136

0 commit comments

Comments
 (0)