Skip to content

Commit 165f248

Browse files
committed
chore: resolve merge errors
Signed-off-by: Nathan Klick <[email protected]>
1 parent cd72627 commit 165f248

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

src/core/kube/k8_client.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ import {type Namespaces} from './namespaces.js';
3232
import {NamespaceName} from './namespace_name.js';
3333
import K8ClientClusters from './k8_client/k8_client_clusters.js';
3434
import {type Clusters} from './clusters.js';
35-
import {PodRef} from './pod_ref.js';
3635
import {type ConfigMaps} from './config_maps.js';
3736
import K8ClientConfigMaps from './k8_client/k8_client_config_maps.js';
3837
import {PodRef} from './pod_ref.js';

src/core/kube/pod_name.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* SPDX-License-Identifier: Apache-2.0
33
*/
44
import {isDns1123Label} from './kube_validation.js';
5-
import {PodNameInvalidError} from './kube_errors.js';
5+
import {PodNameInvalidError} from './errors/namespace_name_invalid_error.js';
66

77
/**
88
* Represents a Kubernetes pod name. A Kubernetes pod name must be a valid RFC-1123 DNS label.

src/core/kube/pod_ref.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/**
22
* SPDX-License-Identifier: Apache-2.0
33
*/
4-
import {MissingNamespaceNameError, MissingPodNameError} from './kube_errors.js';
54
import {type PodName} from './pod_name.js';
65
import {type NamespaceName} from './namespace_name.js';
6+
import {MissingNamespaceNameError, MissingPodNameError} from './errors/namespace_name_invalid_error.js';
77

88
/**
99
* Represents a Kubernetes pod reference which includes the namespace name and pod name.

0 commit comments

Comments
 (0)