UNPKG

@hashgraph/solo

Version:

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

10 lines (9 loc) 248 B
import { type ServicePort } from './service-port.js'; export interface ServiceSpec { readonly clusterIP?: string; readonly ports?: ServicePort[]; readonly selector?: { [key: string]: string; }; readonly type?: string; }