@storm-software/k8s-tools 0.1.1 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,22 +1,27 @@
1
1
  import { AbstractHelmClient, PackageOptions, PushOptions } from "../types";
2
2
  /** Helm wrapper class */
3
3
  export declare class HelmClient extends AbstractHelmClient {
4
+ /**
5
+ * Creates an instance of HelmClient
6
+ */
7
+ constructor();
4
8
  /**
5
9
  * Package a chart directory into a chart archive
6
10
  *
7
11
  * @param {PackageOptions} [options]
8
12
  */
9
13
  package(options: PackageOptions): Promise<string | undefined>;
10
- push(options: PushOptions): Promise<void>;
11
- dependencyUpdate(chartFolder: string): Promise<void>;
12
- dependencyBuild(chartFolder: string): Promise<void>;
13
- addRepository(name: string, url: string): Promise<void>;
14
+ push(options: PushOptions): void;
15
+ dependencyUpdate(chartFolder: string): void;
16
+ dependencyBuild(chartFolder: string): void;
17
+ addRepository(name: string, url: string): void;
14
18
  /**
15
19
  * Initialize Helm
16
20
  *
17
- * @returns {Promise<void>}
21
+ * @returns A promise
18
22
  */
19
23
  initialize(): Promise<void>;
24
+ private runCommand;
20
25
  }
21
26
  /**
22
27
  * Create a new Helm client instance