Kubernetes CRI CLI: crictl-shaped client, simulator server, proxy
0

Configure Feed

Select the types of activity you want to include in your feed.

ocaml-cri / lib / metadata.mli
487 B 16 lines
1(** [runtime.v1] sandbox and container metadata: name plus creation attempt. *) 2 3type pod_sandbox_metadata = { 4 name : string; 5 uid : string; 6 namespace : string; 7 attempt : int32; (** [uint32] bit pattern. *) 8} 9 10val pod_sandbox_metadata : pod_sandbox_metadata Protobuf.t 11(** Codec for {!type-pod_sandbox_metadata}. *) 12 13type container_metadata = { name : string; attempt : int32 } 14 15val container_metadata : container_metadata Protobuf.t 16(** Codec for {!type-container_metadata}. *)