Octez_smart_rollup.Installer_configHandling of YAML configuration file used by the kernel installer.
A configuration has the form: ``` instructions:
type Tezos_base.TzPervasives.error += type t = instr listval make : key:string -> value:string -> instrval pp : Stdlib.Format.formatter -> t -> unitval instr_encoding : instr Tezos_base.TzPervasives.Data_encoding.tval encoding : t Tezos_base.TzPervasives.Data_encoding.tval parse_yaml : string -> t Tezos_base.TzPervasives.tzresultparse_yaml content parses content as a YAML representing the configuration of the kernel installer, and returns the corresponding set of instructions.
val generate_yaml : t -> Yaml.yaml Tezos_base.TzPervasives.tzresultgenerate_yaml instrs generates the YAML representation of instrs.
val emit_yaml : t -> string Tezos_base.TzPervasives.tzresultemit_yaml instrs generates the YAML representation of instrs in textual format.
val to_file : t -> output:string -> unit Tezos_base.TzPervasives.tzresult Lwt.tto_file instrs ~output writes the instructions into a file, either in JSON or YAML depending on the extension of output.