@topgroup/diginext
Version:
A BUILD SERVER & CLI to deploy apps to any Kubernetes clusters.
36 lines • 689 B
TypeScript
export interface KubeService {
apiVersion?: string;
kind?: "Service";
metadata?: {
name?: string;
namespace?: string;
labels?: {
[key: string]: string;
};
};
spec?: {
type?: string;
ports?: {
port?: number;
targetPort?: number;
}[];
selector?: {
app?: string;
};
};
clusterSlug?: string;
/**
* Cluster's short name
* @deprecated
*/
clusterShortName?: string;
/**
* Cluster ID
*/
cluster?: string;
/**
* Workspace ID
*/
workspace?: string;
}
//# sourceMappingURL=KubeService.d.ts.map