package kubecaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
val request_path_template : unit -> string
val get : ?tty:bool -> ?stdout:bool -> ?stdin:bool -> ?stderr:bool -> namespace:string -> name:string -> ?container:string -> ?ctx:Cohttp_lwt_unix.Client.ctx -> ?headers:Cohttp.Header.t -> Uri.t -> (string, string) result Lwt.t

connect Get requests to attach of Pod

  • parameter tty

    Tty if true indicates that a tty will be allocated for the attach call. This is passed through the container runtime so the tty is allocated on the worker node by the container runtime. Defaults to false.

  • parameter stdout

    Stdout if true indicates that stdout is to be redirected for the attach call. Defaults to true.

  • parameter stdin

    Stdin if true, redirects the standard input stream of the pod for this call. Defaults to false.

  • parameter stderr

    Stderr if true indicates that stderr is to be redirected for the attach call. Defaults to true.

  • parameter namespace

    object name and auth scope, such as for teams and projects

  • parameter name

    name of the Pod

  • parameter container

    The container in which to execute the command. Defaults to only container if there is only one container in the pod.

val post : ?tty:bool -> ?stdout:bool -> ?stdin:bool -> ?stderr:bool -> namespace:string -> name:string -> ?container:string -> ?ctx:Cohttp_lwt_unix.Client.ctx -> ?headers:Cohttp.Header.t -> Uri.t -> (string, string) result Lwt.t

connect Post requests to attach of Pod

  • parameter tty

    Tty if true indicates that a tty will be allocated for the attach call. This is passed through the container runtime so the tty is allocated on the worker node by the container runtime. Defaults to false.

  • parameter stdout

    Stdout if true indicates that stdout is to be redirected for the attach call. Defaults to true.

  • parameter stdin

    Stdin if true, redirects the standard input stream of the pod for this call. Defaults to false.

  • parameter stderr

    Stderr if true indicates that stderr is to be redirected for the attach call. Defaults to true.

  • parameter namespace

    object name and auth scope, such as for teams and projects

  • parameter name

    name of the Pod

  • parameter container

    The container in which to execute the command. Defaults to only container if there is only one container in the pod.

OCaml

Innovation. Community. Security.