kubectl技巧之經過jsonpath截取屬性

系列目錄html

前面一節咱們介紹了使用go-template截取屬性,go-template功能很是強大,能夠定義變量,使用流程控制等,這是jsonpath所不具有的.然而,jsonpth使用的時候更爲靈活.經過上一節咱們發現,咱們想要找到某個具體屬性,必須從最外層一層層向內找到具體屬性,這對於嵌套層次很是深的yaml對象來講操做是很是繁瑣的.而使用jsonpath只須要知道頂層對象,而後能夠省略中間的對象,遞歸查找直接找到咱們想要的屬性,這在不少時候對咱們在不清楚對象的層次可是清楚知道某個屬性名稱的時候獲取這個屬性的值是很是有幫助的.而且jsonpath可使用下標索引數組對象,這在實際工做中也是很是有幫助的(好比雖然pod裏能夠包含多個containers,可是不少時候一個pod裏只有一個container,使用go-template咱們爲了找到這個對象須要寫一個遍歷表達式,而使用jsonpath能夠直接取第0個對象,省去了寫循環的麻煩),還有一點很重要的是jsonpath是一個標準,這對於熟悉jsonpath的開發者來講使用起來方便不少.node

jsonpath模板使用一對花括號({})把jsonpath表達式包含在裏面(go-template是雙花括號).除了標準jsonpath語法外,kubernetes jsonpath模板還額外支持如下語法:linux

  • 用""雙引號來引用JSONPath表達式中的文本json

  • 使用rangeend來遍歷集合(這點和go-template相似)centos

  • 使用負數來從尾部索引集合數組

$操做符是可選的由於表達式默認老是從根節點開始選擇
對象經過它的String()函數打印輸出出來bash

假若有如下JSON字符串函數

{
  "kind": "List",
  "items":[
    {
      "kind":"None",
      "metadata":{"name":"127.0.0.1"},
      "status":{
        "capacity":{"cpu":"4"},
        "addresses":[{"type": "LegacyHostIP", "address":"127.0.0.1"}]
      }
    },
    {
      "kind":"None",
      "metadata":{"name":"127.0.0.2"},
      "status":{
        "capacity":{"cpu":"8"},
        "addresses":[
          {"type": "LegacyHostIP", "address":"127.0.0.2"},
          {"type": "another", "address":"127.0.0.3"}
        ]
      }
    }
  ],
  "users":[
    {
      "name": "myself",
      "user": {}
    },
    {
      "name": "e2e",
      "user": {"username": "admin", "password": "secret"}
    }
  ]
}
Function Description Example Result
text the plain text kind is {.kind} kind is List
@ the current object {@} the same as input
. or [] child operator {.kind} or {[‘kind’]} List
.. recursive descent {..name} 127.0.0.1 127.0.0.2 myself e2e
* wildcard. Get all objects {.items[*].metadata.name} [127.0.0.1 127.0.0.2]
[start:end :step] subscript operator {.users[0].name} myself
[,] union operator {.items[*][‘metadata.name’, ‘status.capacity’]} 127.0.0.1 127.0.0.2 map[cpu:4] map[cpu:8]
?() filter {.users[?(@.name==「e2e」)].user.password} secret
range, end iterate list {range .items[*]}[{.metadata.name}, {.status.capacity}] {end} [127.0.0.1, map[cpu:4]] [127.0.0.2, map[cpu:8]]
quote interpreted string {range .items[*]}{.metadata.name}{’\t’}{end} 127.0.0.1 127.0.0.2

使用jsonpath示例jsonp

kubectl get pods -o json
kubectl get pods -o=jsonpath='{@}'
kubectl get pods -o=jsonpath='{.items[0]}'
kubectl get pods -o=jsonpath='{.items[0].metadata.name}'
kubectl get pods -o=jsonpath='{range .items[*]}{.metadata.name}{"\t"}{.status.startTime}{"\n"}{end}'

若是對象是集合類型,須要使用range關鍵字開始,以end關鍵字結果,同前面一節go-template相似.code

咱們經過如下示例來看如何經過jsonpath簡單地獲取到容器所在節點名稱

[centos@k8s-master ~]$ kubectl get po consul-0 -ojsonpath='{..nodeName}'
k8s-node1
[centos@k8s-master ~]$

固然以上也能夠經過grep來獲取到一樣的信息,而且對於不少熟悉linux命令的童鞋來講更爲方便,若是僅僅是查看.grep確實更爲方便,可是經過jsonpath是準確地獲取到了一個屬性的值,而grep則是截取的包含這個關鍵字的一行,若是咱們要把獲取的值做爲下一個命令的的輸入值時,經過grep獲取的結果每每是須要處理的.例如經過grep獲取到的結果以下

"k8s-node1",[centos@k8s-master ~]$ kubectl get po consul-0 -ojson|grep nodeName
        "nodeName": "k8s-node1",

這裏想要準備的獲取結果,產生要截取第二列值,而後再去掉引號,操做起來不如jsonpath方便.尤爲在不一樣環境若是輸出的格式不同的話,經過字符串截取獲得的結果多是錯誤的.

相關文章
相關標籤/搜索