-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmod.ts
More file actions
23 lines (22 loc) · 593 Bytes
/
mod.ts
File metadata and controls
23 lines (22 loc) · 593 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright 2023-present Eser Ozvataf and other contributors. All rights reserved. Apache-2.0 license.
export { generate, type GenerateOptions } from "./generate.ts";
export {
buildConfigMapFromContext,
buildSecretFromContext,
executeKubectl,
KubernetesResourceNameError,
sync,
syncApply,
validateKubernetesResourceName,
validateResourceReference,
} from "./sync.ts";
export {
type ConfigMap,
type ConfigMapBuilder,
type ConfigMapContext,
type KubectlResourceReference,
type Secret,
type SecretBuilder,
type SyncConfig,
type SyncOptions,
} from "./types.ts";