import { ClusterInterface, ClusterTypes, DockerRegistryTypes } from "../ClusterTypes"; export interface CreateKubernetesCluster extends ClusterInterface { name: string; dockerRegistryType: DockerRegistryTypes; dockerRegistry: string; masterUrl: string; certificateAuthority?: string; ingressDomain?: string; clusterType: ClusterTypes.Kubernetes; }