@topgroup/diginext
Version:
A BUILD SERVER & CLI to deploy apps to any Kubernetes clusters.
27 lines • 499 B
TypeScript
export interface KubeSecret {
apiVersion?: string;
kind?: "Secret";
type?: string;
metadata?: {
name?: string;
namespace?: string;
};
data?: {
[key: string]: string;
};
clusterSlug?: string;
/**
* Cluster's short name
* @deprecated
*/
clusterShortName?: string;
/**
* Cluster ID
*/
cluster?: string;
/**
* Workspace ID
*/
workspace?: string;
}
//# sourceMappingURL=KubeSecret.d.ts.map