@hashgraph/solo
    Preparing search index...

    Interface CRUD on manifests.

    interface Manifests {
        applyManifest(filePath: string): Promise<void>;
        patchObject(spec: object): Promise<void>;
    }

    Implemented by

    Index

    Methods

    • Patch an existing Kubernetes object (including custom resources) using a merge patch.

      Parameters

      • spec: object

        a partial Kubernetes object with apiVersion, kind, metadata.name, metadata.namespace, and the fields to patch

      Returns Promise<void>