File tree 3 files changed +2
-3
lines changed
3 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,6 @@ import {type Namespaces} from './namespaces.js';
32
32
import { NamespaceName } from './namespace_name.js' ;
33
33
import K8ClientClusters from './k8_client/k8_client_clusters.js' ;
34
34
import { type Clusters } from './clusters.js' ;
35
- import { PodRef } from './pod_ref.js' ;
36
35
import { type ConfigMaps } from './config_maps.js' ;
37
36
import K8ClientConfigMaps from './k8_client/k8_client_config_maps.js' ;
38
37
import { PodRef } from './pod_ref.js' ;
Original file line number Diff line number Diff line change 2
2
* SPDX-License-Identifier: Apache-2.0
3
3
*/
4
4
import { isDns1123Label } from './kube_validation.js' ;
5
- import { PodNameInvalidError } from './kube_errors .js' ;
5
+ import { PodNameInvalidError } from './errors/namespace_name_invalid_error .js' ;
6
6
7
7
/**
8
8
* Represents a Kubernetes pod name. A Kubernetes pod name must be a valid RFC-1123 DNS label.
Original file line number Diff line number Diff line change 1
1
/**
2
2
* SPDX-License-Identifier: Apache-2.0
3
3
*/
4
- import { MissingNamespaceNameError , MissingPodNameError } from './kube_errors.js' ;
5
4
import { type PodName } from './pod_name.js' ;
6
5
import { type NamespaceName } from './namespace_name.js' ;
6
+ import { MissingNamespaceNameError , MissingPodNameError } from './errors/namespace_name_invalid_error.js' ;
7
7
8
8
/**
9
9
* Represents a Kubernetes pod reference which includes the namespace name and pod name.
You can’t perform that action at this time.
0 commit comments