@topgroup/diginext
Version:
A BUILD SERVER & CLI to deploy apps to any Kubernetes clusters.
33 lines • 635 B
TypeScript
export interface KubeNamespace {
apiVersion?: string;
kind?: "Namespace";
metadata?: {
name?: string;
namespace?: string;
labels: {
[key: string]: string;
};
creationTimestamp?: string;
};
spec?: {
finalizers?: string[];
};
status?: {
phase?: string;
};
clusterSlug?: string;
/**
* Cluster's short name
* @deprecated
*/
clusterShortName?: string;
/**
* Cluster ID
*/
cluster?: string;
/**
* Workspace ID
*/
workspace?: string;
}
//# sourceMappingURL=KubeNamespace.d.ts.map