Skip to content

Commit e822502

Browse files
committed
Update jq link
1 parent 7ebd141 commit e822502

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

content/en/blog/_posts/2020-09-03-warnings/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ This metric has labels for the API `group`, `version`, `resource`, and `subresou
6363
and a `removed_release` label that indicates the Kubernetes release in which the API will no longer be served.
6464

6565
This is an example query using `kubectl`, [prom2json](https://github.com/prometheus/prom2json),
66-
and [jq](https://stedolan.github.io/jq/) to determine which deprecated APIs have been requested
66+
and [jq](https://jqlang.github.io/jq/) to determine which deprecated APIs have been requested
6767
from the current instance of the API server:
6868

6969
```sh

content/en/blog/_posts/2021-10-18-kpng-specialized-proxiers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ podip=$(cat /tmp/out | jq -r '.Endpoints[]|select(.Local == true)|select(.IPs.V6
210210
ip6tables -t nat -A PREROUTING -d $xip/128 -j DNAT --to-destination $podip
211211
```
212212

213-
Assuming the JSON output above is stored in `/tmp/out` ([jq](https://stedolan.github.io/jq/) is an *awesome* program!).
213+
Assuming the JSON output above is stored in `/tmp/out` ([jq](https://jqlang.github.io/jq/) is an *awesome* program!).
214214

215215

216216
As this is an example we make it really simple for ourselves by using

content/en/docs/reference/kubectl/cheatsheet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ kubectl get pods --field-selector=status.phase=Running
213213
kubectl get nodes -o jsonpath='{.items[*].status.addresses[?(@.type=="ExternalIP")].address}'
214214

215215
# List Names of Pods that belong to Particular RC
216-
# "jq" command useful for transformations that are too complex for jsonpath, it can be found at https://stedolan.github.io/jq/
216+
# "jq" command useful for transformations that are too complex for jsonpath, it can be found at https://jqlang.github.io/jq/
217217
sel=${$(kubectl get rc my-rc --output=json | jq -j '.spec.selector | to_entries | .[] | "\(.key)=\(.value),"')%?}
218218
echo $(kubectl get pods --selector=$sel --output=jsonpath={.items..metadata.name})
219219

content/en/docs/tasks/administer-cluster/verify-signed-artifacts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ You will need to have the following tools installed:
1515

1616
- `cosign` ([install guide](https://docs.sigstore.dev/cosign/installation/))
1717
- `curl` (often provided by your operating system)
18-
- `jq` ([download jq](https://stedolan.github.io/jq/download/))
18+
- `jq` ([download jq](https://jqlang.github.io/jq/download/))
1919

2020
## Verifying binary signatures
2121

content/en/docs/tasks/tls/managing-tls-in-a-cluster.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ You need the `cfssl` tool. You can download `cfssl` from
3636

3737
Some steps in this page use the `jq` tool. If you don't have `jq`, you can
3838
install it via your operating system's software sources, or fetch it from
39-
[https://stedolan.github.io/jq/](https://stedolan.github.io/jq/).
39+
[https://jqlang.github.io/jq/](https://jqlang.github.io/jq/).
4040

4141
<!-- steps -->
4242

@@ -267,7 +267,7 @@ kubectl get csr my-svc.my-namespace -o json | \
267267
```
268268

269269
{{< note >}}
270-
This uses the command line tool [`jq`](https://stedolan.github.io/jq/) to populate the base64-encoded
270+
This uses the command line tool [`jq`](https://jqlang.github.io/jq/) to populate the base64-encoded
271271
content in the `.status.certificate` field.
272272
If you do not have `jq`, you can also save the JSON output to a file, populate this field manually, and
273273
upload the resulting file.

0 commit comments

Comments
 (0)