@storm-software/k8s-tools 0.42.4 → 0.42.6

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.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,34 @@
2
2
 
3
3
  # Changelog for Storm Ops - K8s Tools
4
4
 
5
+ ## [0.42.5](https://github.com/storm-software/storm-ops/releases/tag/k8s-tools%400.42.5) (2025-10-17)
6
+
7
+ ### Miscellaneous
8
+
9
+ - **monorepo:** Update workspace package links
10
+ ([3ec988077](https://github.com/storm-software/storm-ops/commit/3ec988077))
11
+
12
+ ### Updated Dependencies
13
+
14
+ - Updated workspace-tools to 1.292.5
15
+ - Updated config-tools to 1.188.5
16
+ - Updated config to 1.134.5
17
+
18
+ ## [0.42.4](https://github.com/storm-software/storm-ops/releases/tag/k8s-tools%400.42.4) (2025-10-17)
19
+
20
+ ### Miscellaneous
21
+
22
+ - **cspell:** Added `powerlines` to CSpell dictionary
23
+ ([98f024c7e](https://github.com/storm-software/storm-ops/commit/98f024c7e))
24
+ - **monorepo:** Update workspace package links
25
+ ([eff879a87](https://github.com/storm-software/storm-ops/commit/eff879a87))
26
+
27
+ ### Updated Dependencies
28
+
29
+ - Updated workspace-tools to 1.292.4
30
+ - Updated config-tools to 1.188.4
31
+ - Updated config to 1.134.4
32
+
5
33
  ## [0.42.3](https://github.com/storm-software/storm-ops/releases/tag/k8s-tools%400.42.3) (2025-10-17)
6
34
 
7
35
  ### Miscellaneous
package/README.md CHANGED
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
21
21
 
22
22
  <h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
23
23
 
24
- [![Version](https://img.shields.io/badge/version-0.42.2-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
24
+ [![Version](https://img.shields.io/badge/version-0.42.4-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
25
25
 
26
26
  <!-- prettier-ignore-start -->
27
27
  <!-- markdownlint-disable -->
@@ -40,7 +40,6 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
40
40
 
41
41
  <!-- START doctoc -->
42
42
  <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
43
-
44
43
  ## Table of Contents
45
44
 
46
45
  - [Storm Kubernetes Tools](#storm-kubernetes-tools)
@@ -95,15 +95,15 @@ ${formatLogMessage(tokenized)}
95
95
  ret
96
96
  );
97
97
  if (result && (!result.success || result.error && result?.error?.message && typeof result?.error?.message === "string" && result?.error?.name && typeof result?.error?.name === "string")) {
98
- writeTrace(
99
- `Failure determined by the ${name} executor
100
- ${formatLogMessage(result)}`,
101
- config
98
+ throw new Error(
99
+ `Failure determined while running the ${name} executor
100
+ ${formatLogMessage(
101
+ result
102
+ )}`,
103
+ {
104
+ cause: result?.error
105
+ }
102
106
  );
103
- console.error(result);
104
- throw new Error(`The ${name} executor failed to run`, {
105
- cause: result?.error
106
- });
107
107
  }
108
108
  if (executorOptions?.hooks?.postProcess) {
109
109
  writeDebug("Running the postProcess hook...", config);
@@ -95,15 +95,15 @@ ${_chunkGYFLNDUJjs.formatLogMessage.call(void 0, tokenized)}
95
95
  ret
96
96
  );
97
97
  if (result && (!result.success || result.error && _optionalChain([result, 'optionalAccess', _8 => _8.error, 'optionalAccess', _9 => _9.message]) && typeof _optionalChain([result, 'optionalAccess', _10 => _10.error, 'optionalAccess', _11 => _11.message]) === "string" && _optionalChain([result, 'optionalAccess', _12 => _12.error, 'optionalAccess', _13 => _13.name]) && typeof _optionalChain([result, 'optionalAccess', _14 => _14.error, 'optionalAccess', _15 => _15.name]) === "string")) {
98
- _chunkGYFLNDUJjs.writeTrace.call(void 0,
99
- `Failure determined by the ${name} executor
100
- ${_chunkGYFLNDUJjs.formatLogMessage.call(void 0, result)}`,
101
- config
98
+ throw new Error(
99
+ `Failure determined while running the ${name} executor
100
+ ${_chunkGYFLNDUJjs.formatLogMessage.call(void 0,
101
+ result
102
+ )}`,
103
+ {
104
+ cause: _optionalChain([result, 'optionalAccess', _16 => _16.error])
105
+ }
102
106
  );
103
- console.error(result);
104
- throw new Error(`The ${name} executor failed to run`, {
105
- cause: _optionalChain([result, 'optionalAccess', _16 => _16.error])
106
- });
107
107
  }
108
108
  if (_optionalChain([executorOptions, 'optionalAccess', _17 => _17.hooks, 'optionalAccess', _18 => _18.postProcess])) {
109
109
  _chunkGYFLNDUJjs.writeDebug.call(void 0, "Running the postProcess hook...", config);
package/dist/executors.js CHANGED
@@ -4,7 +4,7 @@
4
4
  var _chunkVQVSFDJVjs = require('./chunk-VQVSFDJV.js');
5
5
 
6
6
 
7
- var _chunk5MWWOH3Rjs = require('./chunk-5MWWOH3R.js');
7
+ var _chunkQV7XVA5Njs = require('./chunk-QV7XVA5N.js');
8
8
  require('./chunk-XJT7AOEU.js');
9
9
  require('./chunk-OHUFCZ47.js');
10
10
  require('./chunk-GYFLNDUJ.js');
@@ -15,4 +15,4 @@ require('./chunk-RECJ3G6F.js');
15
15
 
16
16
 
17
17
 
18
- exports.getRegistryVersion = _chunkVQVSFDJVjs.getRegistryVersion; exports.serveExecutor = _chunk5MWWOH3Rjs.serveExecutor;
18
+ exports.getRegistryVersion = _chunkVQVSFDJVjs.getRegistryVersion; exports.serveExecutor = _chunkQV7XVA5Njs.serveExecutor;
@@ -4,7 +4,7 @@ import {
4
4
  } from "./chunk-MOBCDGWE.mjs";
5
5
  import {
6
6
  serveExecutor
7
- } from "./chunk-MHFW4S2D.mjs";
7
+ } from "./chunk-G37LU3HN.mjs";
8
8
  import "./chunk-BLX33ZLH.mjs";
9
9
  import "./chunk-UB7G23S2.mjs";
10
10
  import "./chunk-2Y2HBUL2.mjs";
package/dist/index.js CHANGED
@@ -9,7 +9,7 @@ require('./chunk-XO66D74Z.js');
9
9
  var _chunkVQVSFDJVjs = require('./chunk-VQVSFDJV.js');
10
10
 
11
11
 
12
- var _chunk5MWWOH3Rjs = require('./chunk-5MWWOH3R.js');
12
+ var _chunkQV7XVA5Njs = require('./chunk-QV7XVA5N.js');
13
13
  require('./chunk-XJT7AOEU.js');
14
14
  require('./chunk-DHBG5ASJ.js');
15
15
 
@@ -51,4 +51,4 @@ require('./chunk-RECJ3G6F.js');
51
51
 
52
52
 
53
53
 
54
- exports.AbstractHelmClient = _chunkJSFRUBG5js.AbstractHelmClient; exports.HelmClient = _chunk4AADQIGWjs.HelmClient; exports.addToPrettierIgnore = _chunk7QVOU2PTjs.addToPrettierIgnore; exports.createHelmClient = _chunk4AADQIGWjs.createHelmClient; exports.createNodesV2 = _chunkIL3LWVGHjs.createNodesV2; exports.description = _chunkIL3LWVGHjs.description; exports.ensureInitialized = _chunkXKOZIQT3js.ensureInitialized; exports.getRegistryVersion = _chunkVQVSFDJVjs.getRegistryVersion; exports.helmChartGeneratorFn = _chunkTL3A37G5js.helmChartGeneratorFn; exports.helmDependencyGeneratorFn = _chunk5V2F5H6Yjs.helmDependencyGeneratorFn; exports.name = _chunkIL3LWVGHjs.name; exports.resolveUserExistingPrettierConfig = _chunk7QVOU2PTjs.resolveUserExistingPrettierConfig; exports.serveExecutor = _chunk5MWWOH3Rjs.serveExecutor;
54
+ exports.AbstractHelmClient = _chunkJSFRUBG5js.AbstractHelmClient; exports.HelmClient = _chunk4AADQIGWjs.HelmClient; exports.addToPrettierIgnore = _chunk7QVOU2PTjs.addToPrettierIgnore; exports.createHelmClient = _chunk4AADQIGWjs.createHelmClient; exports.createNodesV2 = _chunkIL3LWVGHjs.createNodesV2; exports.description = _chunkIL3LWVGHjs.description; exports.ensureInitialized = _chunkXKOZIQT3js.ensureInitialized; exports.getRegistryVersion = _chunkVQVSFDJVjs.getRegistryVersion; exports.helmChartGeneratorFn = _chunkTL3A37G5js.helmChartGeneratorFn; exports.helmDependencyGeneratorFn = _chunk5V2F5H6Yjs.helmDependencyGeneratorFn; exports.name = _chunkIL3LWVGHjs.name; exports.resolveUserExistingPrettierConfig = _chunk7QVOU2PTjs.resolveUserExistingPrettierConfig; exports.serveExecutor = _chunkQV7XVA5Njs.serveExecutor;
package/dist/index.mjs CHANGED
@@ -9,7 +9,7 @@ import {
9
9
  } from "./chunk-MOBCDGWE.mjs";
10
10
  import {
11
11
  serveExecutor
12
- } from "./chunk-MHFW4S2D.mjs";
12
+ } from "./chunk-G37LU3HN.mjs";
13
13
  import "./chunk-BLX33ZLH.mjs";
14
14
  import "./chunk-3J7KBHMJ.mjs";
15
15
  import {
@@ -1,7 +1,7 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunk5MWWOH3Rjs = require('../../../chunk-5MWWOH3R.js');
4
+ var _chunkQV7XVA5Njs = require('../../../chunk-QV7XVA5N.js');
5
5
  require('../../../chunk-OHUFCZ47.js');
6
6
  require('../../../chunk-GYFLNDUJ.js');
7
7
  require('../../../chunk-4AADQIGW.js');
@@ -11,4 +11,4 @@ require('../../../chunk-RECJ3G6F.js');
11
11
 
12
12
 
13
13
 
14
- exports.default = _chunk5MWWOH3Rjs.executor_default; exports.serveExecutor = _chunk5MWWOH3Rjs.serveExecutor;
14
+ exports.default = _chunkQV7XVA5Njs.executor_default; exports.serveExecutor = _chunkQV7XVA5Njs.serveExecutor;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  executor_default,
3
3
  serveExecutor
4
- } from "../../../chunk-MHFW4S2D.mjs";
4
+ } from "../../../chunk-G37LU3HN.mjs";
5
5
  import "../../../chunk-UB7G23S2.mjs";
6
6
  import "../../../chunk-2Y2HBUL2.mjs";
7
7
  import "../../../chunk-3ULVIE7D.mjs";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/k8s-tools",
3
- "version": "0.42.4",
3
+ "version": "0.42.6",
4
4
  "description": "Tools for managing Kubernetes (k8s) infrastructure within a Nx workspace.",
5
5
  "repository": {
6
6
  "type": "github",
@@ -140,9 +140,9 @@
140
140
  "nx": { "optional": false }
141
141
  },
142
142
  "dependencies": {
143
- "@storm-software/config": "^1.134.4",
144
- "@storm-software/config-tools": "^1.188.4",
145
- "@storm-software/workspace-tools": "^1.292.4",
143
+ "@storm-software/config": "^1.134.6",
144
+ "@storm-software/config-tools": "^1.188.6",
145
+ "@storm-software/workspace-tools": "^1.292.6",
146
146
  "yaml": "^2.8.1"
147
147
  },
148
148
  "devDependencies": {
@@ -159,5 +159,5 @@
159
159
  "publishConfig": { "access": "public" },
160
160
  "executors": "./executors.json",
161
161
  "generators": "./generators.json",
162
- "gitHead": "a2b228be07baf2c5466cc28c506b87b56aca667f"
162
+ "gitHead": "feabcb14d4383826b5e1761f8593966eaad96d1c"
163
163
  }