@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
12 lines • 654 B
TypeScript
import { ProjectKubeCustomizationCiliumClusterMesh } from './ProjectKubeCustomizationCiliumClusterMesh';
import { ProjectKubeCustomizationCiliumHubble } from './ProjectKubeCustomizationCiliumHubble';
/** Cilium customization */
export interface ProjectKubeCustomizationCilium {
/** Cilium's clusterID: must be between 1 and 255 if set (mandatory when using clusterMesh feature) */
clusterId?: number;
/** ClusterMesh customization. */
clusterMesh?: ProjectKubeCustomizationCiliumClusterMesh;
/** Hubble customization. */
hubble?: ProjectKubeCustomizationCiliumHubble;
}
//# sourceMappingURL=ProjectKubeCustomizationCilium.d.ts.map