Variable: tramp-kubernetes--host-name-regexp

tramp-kubernetes--host-name-regexp is a variable defined in tramp-container.el.gz.

Value

"\\(?:\\([%._[:alnum:]-]+\\)\\.\\)?\\([%._[:alnum:]-]+\\)"

Documentation

The CONTAINER.POD syntax of kubernetes host names in Tramp.

Source Code

;; Defined in /usr/src/emacs/lisp/net/tramp-container.el.gz
(defconst tramp-kubernetes--host-name-regexp
  (rx (? (group (regexp tramp-host-regexp)) ".")
      (group (regexp tramp-host-regexp)))
  "The CONTAINER.POD syntax of kubernetes host names in Tramp.")