Skip to content

Commit

Permalink
docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
jinnovation committed Jun 9, 2024
1 parent 5aa8557 commit 2fd6fa3
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion kele.el
Original file line number Diff line number Diff line change
Expand Up @@ -2183,7 +2183,16 @@ If CONTEXT is not provided, uses current context."
(let-alist r (format "%s/%s" .status.readyReplicas .status.replicas))))
("Up-to-date" . (lambda (r)
(let-alist r .status.updatedReplicas)))
("Available" . (lambda (r) (let-alist r .status.readyReplicas)))))))
("Available" . (lambda (r) (let-alist r
.status.readyReplicas))))))
"Alist containing column specifications for `kele-list'.
Keys are symbols representing the plural form of Kubernetes
resource kinds, e.g. `deployments'. Values are alists mapping
column names to unary functions that take the resource object and
return the corresponding value.
The nil key contains columns general to all resources.")


(provide 'kele)
Expand Down

0 comments on commit 2fd6fa3

Please sign in to comment.