Skip to content

Commit

Permalink
Update more imports for file renamings
Browse files Browse the repository at this point in the history
  • Loading branch information
danopia committed Sep 18, 2024
1 parent 60a622f commit 8b990ce
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion lib/examples/argocd.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env -S deno run --allow-net --allow-read --allow-env --allow-run --unstable

import { autoDetectClient, readAllItems } from '../client.ts';
import { autoDetectClient, readAllItems } from '../deps.ts';
import { ArgoprojIoV1alpha1NamespacedApi } from "../argo-cd/argoproj.io@v1alpha1/mod.ts";

const restClient = await autoDetectClient();
Expand Down
2 changes: 1 addition & 1 deletion lib/examples/demo.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env -S deno run --allow-net --allow-read --allow-env --allow-run --unstable

import { autoDetectClient, readAllItems } from '../client.ts';
import { autoDetectClient, readAllItems } from '../deps.ts';
import { AppsV1Api } from "../builtin/apps@v1/mod.ts";
import { CoreV1Api } from "../builtin/core@v1/mod.ts";

Expand Down
2 changes: 1 addition & 1 deletion lib/examples/follow-logs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Breaks up a text stream into lines
import { TextLineStream } from "https://deno.land/[email protected]/streams/text_line_stream.ts";

import { autoDetectClient } from '../client.ts';
import { autoDetectClient } from '../deps.ts';
import { CoreV1Api } from '../builtin/core@v1/mod.ts';

const restClient = await autoDetectClient();
Expand Down
2 changes: 1 addition & 1 deletion lib/examples/list-crds.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env -S deno run --allow-net --allow-read --allow-env --allow-run --unstable

import { autoDetectClient, readAllItems } from '../client.ts';
import { autoDetectClient, readAllItems } from '../deps.ts';
import { ApiextensionsV1Api } from "../builtin/apiextensions.k8s.io@v1/mod.ts";

const restClient = await autoDetectClient();
Expand Down
2 changes: 1 addition & 1 deletion lib/examples/pod-exec-output.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env -S deno run --allow-net --allow-read --allow-env --unstable

import { tunnelBeta, makeClientProviderChain } from '../client.ts';
import { tunnelBeta, makeClientProviderChain } from '../deps.ts';
import { CoreV1Api } from '../builtin/core@v1/mod.ts';

// Set up an experimental client which can use Websockets
Expand Down
2 changes: 1 addition & 1 deletion lib/examples/pod-exec-tty.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env -S deno run --unstable --allow-env --allow-read --allow-net

import { tunnelBeta, makeClientProviderChain } from '../client.ts';
import { tunnelBeta, makeClientProviderChain } from '../deps.ts';
import { CoreV1Api } from '../builtin/core@v1/mod.ts';

// Set up an experimental client which can use Websockets
Expand Down
2 changes: 1 addition & 1 deletion lib/examples/pod-portforward.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env -S deno run --allow-net --allow-read --allow-env --unstable

import { tunnelBeta, makeClientProviderChain } from '../client.ts';
import { tunnelBeta, makeClientProviderChain } from '../deps.ts';
import { CoreV1Api } from '../builtin/core@v1/mod.ts';

// Set up an experimental client which can use Websockets
Expand Down
2 changes: 1 addition & 1 deletion lib/examples/run-job-evented.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env -S deno run --allow-net --allow-read --allow-env --allow-run --unstable

import { Reflector, autoDetectClient } from "../client.ts";
import { Reflector, autoDetectClient } from "../deps.ts";
import { CoreV1Api } from "../builtin/core@v1/mod.ts";
import { BatchV1Api } from "../builtin/batch@v1/mod.ts";
import { TextLineStream } from "https://deno.land/[email protected]/streams/text_line_stream.ts";
Expand Down
2 changes: 1 addition & 1 deletion lib/examples/run-job.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env -S deno run --allow-net --allow-read --allow-env --allow-run --unstable

import { autoDetectClient } from "../client.ts";
import { autoDetectClient } from "../deps.ts";
import { CoreV1Api } from "../builtin/core@v1/mod.ts";
import { BatchV1Api } from "../builtin/batch@v1/mod.ts";

Expand Down
2 changes: 1 addition & 1 deletion lib/examples/top-nodes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* - pods: 18
*/

import { autoDetectClient } from "../client.ts";
import { autoDetectClient } from "../deps.ts";
import { CoreV1Api } from "../builtin/core@v1/mod.ts";

const restClient = await autoDetectClient();
Expand Down
2 changes: 1 addition & 1 deletion lib/examples/watch-ingress.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env -S deno run --allow-net --allow-read --allow-env --allow-run --unstable

import { autoDetectClient, Reflector } from "../client.ts";
import { autoDetectClient, Reflector } from "../deps.ts";
import { NetworkingV1Api } from "../builtin/networking.k8s.io@v1/mod.ts";

const restClient = await autoDetectClient();
Expand Down
2 changes: 1 addition & 1 deletion lib/examples/watch-nodes.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env -S deno run --allow-net --allow-read --allow-env --allow-run --unstable

import { autoDetectClient, Reflector } from "../client.ts";
import { autoDetectClient, Reflector } from "../deps.ts";
// import { CoreV1Api } from "../builtin/core@v1/mod.ts";
import { CoordinationV1Api } from "../builtin/coordination.k8s.io@v1/mod.ts";

Expand Down
2 changes: 1 addition & 1 deletion lib/tunnels.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { KubernetesTunnel } from "./common.ts";
import type { KubernetesTunnel } from "./deps.ts";

export type TerminalSize = {
columns: number;
Expand Down

0 comments on commit 8b990ce

Please sign in to comment.