@hashgraph/solo
    Preparing search index...
    interface Pvcs {
        create(
            pvcReference: PvcReference,
            labels: Record<string, string>,
            accessModes: string[],
        ): Promise<Pvc>;
        delete(pvcReference: PvcReference): Promise<boolean>;
        list(namespace: NamespaceName, labels?: string[]): Promise<string[]>;
    }

    Implemented by

    Index

    Methods

    • Create a persistent volume claim

      Parameters

      • pvcReference: PvcReference
      • labels: Record<string, string>

        the labels to apply to the persistent volume claim

      • accessModes: string[]

        the access modes for the persistent volume claim

      Returns Promise<Pvc>

      the persistent volume claim

      if the persistent volume claim could not be created

    • Get a list of persistent volume claim names for the given namespace

      Parameters

      • namespace: NamespaceName

        the namespace of the persistent volume claims to return

      • Optionallabels: string[]

        labels

      Returns Promise<string[]>

      list of persistent volume claim names

      if the persistent volume claims could not be listed