UNPKG

@hashgraph/solo

Version:

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

12 lines (11 loc) 267 B
/** * SPDX-License-Identifier: Apache-2.0 */ import { type ServicePort } from './service_port.js'; export interface ServiceSpec { readonly clusterIP?: string; readonly ports?: ServicePort[]; readonly selector?: { [key: string]: string; }; }