cyphernetes

Query Kubernetes resources using a SQL-like syntax language

brewmacoslinux
Try with needOr install directly
Source

About

Kubernetes Query Language

Commands

cyphernetes

Examples

List all pods in the default namespace$ cyphernetes 'MATCH (p:Pod) RETURN p'
Find all deployments with more than 2 replicas$ cyphernetes 'MATCH (d:Deployment) WHERE d.spec.replicas > 2 RETURN d.metadata.name'
Query pods by label selector$ cyphernetes 'MATCH (p:Pod) WHERE p.metadata.labels.app == "myapp" RETURN p.metadata.name'