An isolated cluster in Devtron is an air-gapped Kubernetes cluster with restricted network access.
++ Since Devtron does not have connectivity to these clusters, deployments are managed by packaging manifests + and images for manual installation or retrieval from an OCI registry (if enabled). +
+ +) + +export default VirtualClusterSidebar diff --git a/src/Pages/GlobalConfigurations/ClustersAndEnvironments/index.ts b/src/Pages/GlobalConfigurations/ClustersAndEnvironments/index.ts index 4796bc9ea..62961d51f 100644 --- a/src/Pages/GlobalConfigurations/ClustersAndEnvironments/index.ts +++ b/src/Pages/GlobalConfigurations/ClustersAndEnvironments/index.ts @@ -14,4 +14,4 @@ * limitations under the License. */ -export type { NewClusterFormFooterProps, NewClusterFormProps } from './types' +export { default as VirtualClusterSidebar } from './VirtualClusterSidebar' diff --git a/src/Pages/GlobalConfigurations/ClustersAndEnvironments/types.ts b/src/Pages/GlobalConfigurations/ClustersAndEnvironments/types.ts deleted file mode 100644 index 581b15190..000000000 --- a/src/Pages/GlobalConfigurations/ClustersAndEnvironments/types.ts +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) 2024. Devtron Inc. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -export interface NewClusterFormFooterProps { - apiCallInProgress: boolean - handleModalClose: () => void - closeButtonText?: string -} - -export interface NewClusterFormProps extends Pick