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 -> ?command:string -> ?ctx:Cohttp_lwt_unix.Client.ctx -> ?headers:Cohttp.Header.t -> Uri.t -> (string, string) result Lwt.t

connect Get requests to exec of Pod

  • parameter tty

    Tty if true indicates that a tty will be allocated for the exec call. Defaults to false.

  • parameter stdout

    Redirect the standard output stream of the pod for this call. Defaults to true.

  • parameter stdin

    Redirect the standard input stream of the pod for this call. Defaults to false.

  • parameter stderr

    Redirect the standard error stream of the pod for this 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

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

  • parameter command

    Command is the remote command to execute. argv array. Not executed within a shell.

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

connect Post requests to exec of Pod

  • parameter tty

    Tty if true indicates that a tty will be allocated for the exec call. Defaults to false.

  • parameter stdout

    Redirect the standard output stream of the pod for this call. Defaults to true.

  • parameter stdin

    Redirect the standard input stream of the pod for this call. Defaults to false.

  • parameter stderr

    Redirect the standard error stream of the pod for this 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

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

  • parameter command

    Command is the remote command to execute. argv array. Not executed within a shell.