@zombienet/orchestrator
Version:
ZombieNet aim to be a testing framework for substrate based blockchains, providing a simple cli tool that allow users to spawn and test ephemeral Substrate based networks
9 lines (8 loc) • 407 B
TypeScript
import { Node } from "../../../sharedTypes";
import { Client } from "../../client";
import { NodeResource } from "./nodeResource";
import { Container, PodSpec, Volume } from "./types";
export declare class BootNodeResource extends NodeResource {
constructor(client: Client, namespace: string, nodeSetupConfig: Node);
protected generatePodSpec(containers: Container[], volumes: Volume[]): PodSpec;
}