@topgroup/diginext
Version:
A BUILD SERVER & CLI to deploy apps to any Kubernetes clusters.
37 lines • 902 B
TypeScript
export interface KubeConfigCluster {
cluster: {
["certificate-authority-data"]?: string;
server?: string;
};
name: string;
}
export interface KubeConfigContext {
context: {
cluster?: string;
user?: string;
};
name: string;
}
export interface KubeConfigUser {
name: string;
user: {
["client-certificate-data"]?: string;
["client-key-data"]?: string;
exec?: {
apiVersion?: string;
args?: string[];
command?: string;
env?: string;
interactiveMode?: string;
provideClusterInfo?: boolean;
installHint?: string;
};
};
}
export interface KubeConfig {
clusters: KubeConfigCluster[];
contexts: KubeConfigContext[];
["current-context"]: string;
users: KubeConfigUser[];
}
//# sourceMappingURL=KubeConfig.d.ts.map