UNPKG

@hashgraph/solo

Version:

An opinionated CLI tool to deploy and manage private Hedera Networks.

16 lines (14 loc) 320 B
// SPDX-License-Identifier: Apache-2.0 /** * Identifies the cache domain an item belongs to. * * IMAGE: * Docker / OCI image artifacts. * * HELM_CHART: * Helm chart artifacts pulled from OCI registries or chart repositories. */ export enum CacheArtifactEnum { IMAGE = 'images', HELM_CHART = 'charts', }