kubectl-jq

command module
v0.21.8 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 19, 2022 License: Apache-2.0 Imports: 6 Imported by: 0

README

kubectl-jq

kubectl-jq is a kubectl plugin that works like kubectl get, but lets you filter the output with a jq expression.

You can of course pipe the output of kubectl get -o json into jq, but this saves you valuable keystrokes. We also unpack lists by default, so you don't have to edit your jq program depending on the output (kubectl get will return one item as a lone item of that type, but multiple items as a v1.List).

Installing

go get github.com/jrockway/kubectl-jq

Eventually this will be available through krew, but I want to make sure that this actually solves my problems first. Feedback is welcome if it solves (or doesn't solve) your own problems.

Running

kubectl-jq works exactly like kubectl get, except it takes an extra argument; the jq program to run:

$ kubectl get pods
NAME                                       READY   STATUS    RESTARTS   AGE
node-debugger-pool-ga20saarp-3ip2b-hchnr   1/1     Running   0          2d12h

$ kubectl get pods -o json
{
    "apiVersion": "v1",
    "items": [
        {
            "apiVersion": "v1",
            "kind": "Pod",
    ...

$ kubectl jq pods
{
    "apiVersion": "v1",
    "kind": "Pod",
    "metadata": {
    ...

$ kubectl jq pods '{name: .metadata.name, phase: .status.phase}'
{
    "name": "node-debugger-pool-ga20saarp-3ip2b-hchnr",
    "phase": "Running"
}

$ kubectl jq pods node-debugger-pool-ga20saarp-3ip2b-hchnr '{name: .metadata.name, phase: .status.phase}'
<same as above>

You can invoke it with --help to see what options can be supplied, but it's basically the same as kubectl get. Things you expect to work like --all-namespaces or --context do work.

Recipies

I mostly use jq to extract things from secrets with the @base64d operator and see what port number something has bound before I port-forward to it. But there are many things you can do.

  • Print the ports that pods have configured.
kubectl jq pod .spec.containers[]?.ports[]?
  • Decode a secret.
kubectl jq secret my-secret '.data |= with_entries(.value |= @base64d)' -o yaml
  • Print the exact contents of "filename.yaml" from a secret.
kubectl jq secret my-secret '.data |= with_entries(.value |= @base64d) | .data."filename.yaml"' -r
  • Print pods with containers that have restarted.
kubectl jq pod -A 'select(.status.containerStatuses[]?.restartCount > 0) | {namespace: .metadata.namespace, name: .metadata.name}'

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis
pkg
cmd

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL