banner
NEWS LETTER

查看Kubernetes内所有特权容器

Scroll down

本文作者:丁辉

查看Kubernetes内所有特权容器

  1. 安装 JQ

    • Centos

      1
      yum -y install jq
    • Ubuntu

      1
      apt -y install jq
  2. 查找特权容器

    • 查找特权容器并输出命名空间、容器名

      1
      kubectl get pods --all-namespaces -o json | jq '.items[] | select(.spec.containers[].securityContext.privileged==true) | {namespace: .metadata.namespace, pod: .metadata.name}'
    • 查找特权容器并输出命名空间、容器名、容器端口

      1
      kubectl get pods --all-namespaces -o json | jq '.items[] | select(.spec.containers[].securityContext.privileged==true) | {namespace: .metadata.namespace, pod: .metadata.name, ports: .spec.containers[].ports}'

I'm so cute. Please give me money.

其他文章
cover
挂载Configmap配置文件
  • 70/01/01
  • 00:00
  • Kubernetes-使用文档
cover
跨Namespace同步Secret和ConfigMap
  • 70/01/01
  • 00:00
  • Kubernetes-使用文档
目录导航 置顶
  1. 1. 查看Kubernetes内所有特权容器
请输入关键词进行搜索