kubectl sql
v0.2.11
kubectl-sql 是一个 kubectl 插件,它使用类似 SQL 的语言来查询 Kubernetes 集群管理器
使用 krew 插件管理器安装:
kubectl krew install sql
kubectl sql --help
使用 Fedora Copr:
dnf copr enable yaacov/kubesql
dnf install kubectl-sql
来自来源:
git clone [email protected]:yaacov/kubectl-sql.git
cd kubectl-sql
make
kubectl-sql 让您可以根据一个或多个资源字段的值,使用人类可读且易于使用的类似 SQL 的查询语言来选择 Kubernetes 资源。还可以使用join
命令查找连接的资源。
更多 kubectl-sql 示例
# Get all pods from current namespace scope, that has a name starting with "virt-" and
# IP that ends with ".84"
kubectl-sql get pods where " name ~= '^virt-' and status.podIP ~= '[.]84$' "
AMESPACE NAME PHASE hostIP CREATION_TIME(RFC3339)
default virt-launcher-test-bdw2p-lcrwx Running 192.168.126.56 2020-02-12T14:14:01+02:00
...
# Get all persistant volume clames that are less then 20Gi, and output as json.
kubectl-sql -o json get pvc where " spec.resources.requests.storage < 20Gi "
...
# Display non running pods by nodes for all namespaces.
kubectl-sql join nodes,pods on
" nodes.status.addresses.1.address = pods.status.hostIP and not pods.phase ~= 'Running' " -A
...
# Filter replica sets with less ready-replicas then replicas"
kubectl-sql --all-namespaces get rs where " status.readyReplicas < status.replicas "
--输出标志 | 打印格式 |
---|---|
桌子 | 桌子 |
姓名 | 仅限姓名 |
yaml | YAML |
json | JSON |
jq
是一个轻量级且灵活的命令行 JSON 处理器。可以将 kubectl 命令输出通过管道传输到jq
命令中以创建复杂的搜索(图解 jq toturial )
https://stedolan.github.io/jq/manual/#select(boolean_expression)
字段选择器可让您根据一个或多个资源字段的值来选择 Kubernetes 资源。以下是字段选择器查询的一些示例。
https://kubernetes.io/docs/concepts/overview/working-with-objects/field-selectors/