import { MetadataInterface } from "../../metadata/MetadataTypes"; import { ClusterInterface, ClusterTypes, DockerRegistryTypes } from "../ClusterTypes"; export interface CreateRancherKubernetesCluster extends ClusterInterface { name: string; dockerRegistryType: DockerRegistryTypes; dockerRegistry: string; masterUrl: string; certificateAuthority?: string; ingressDomain?: string; clusterType: ClusterTypes.RancherKubernetes; metadata: MetadataInterface[]; }