@storm-software/k8s-tools 0.33.22 → 0.33.24

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.33.23](https://github.com/storm-software/storm-ops/releases/tag/k8s-tools%400.33.23) (2025-06-20)
6
+
7
+ ### Miscellaneous
8
+
9
+ - **monorepo:** Update workspace package links
10
+ ([a54432441](https://github.com/storm-software/storm-ops/commit/a54432441))
11
+
12
+ ### Updated Dependencies
13
+
14
+ - Updated workspace-tools to 1.276.2
15
+ - Updated config-tools to 1.174.3
16
+ - Updated config to 1.124.2
17
+
18
+ ## [0.33.22](https://github.com/storm-software/storm-ops/releases/tag/k8s-tools%400.33.22) (2025-06-20)
19
+
20
+ ### Miscellaneous
21
+
22
+ - **monorepo:** Update workspace packages' links
23
+ ([97f657fbc](https://github.com/storm-software/storm-ops/commit/97f657fbc))
24
+ - **monorepo:** Update README markdown files
25
+ ([cd1727b2a](https://github.com/storm-software/storm-ops/commit/cd1727b2a))
26
+
27
+ ### Updated Dependencies
28
+
29
+ - Updated workspace-tools to 1.276.1
30
+ - Updated config-tools to 1.174.2
31
+ - Updated config to 1.124.1
32
+
5
33
  ## [0.33.21](https://github.com/storm-software/storm-ops/releases/tag/k8s-tools%400.33.21) (2025-06-20)
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.33.21-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.33.22-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 -->
@@ -16,7 +16,11 @@ function parseCargoToml(cargoString) {
16
16
  }
17
17
 
18
18
  // ../workspace-tools/src/utils/package-helpers.ts
19
+ import { execFileSync } from "child_process";
19
20
  import { existsSync } from "node:fs";
21
+ import { readFile, writeFile } from "node:fs/promises";
22
+ import { dirname, resolve } from "path";
23
+ import { format } from "prettier";
20
24
 
21
25
  // ../workspace-tools/src/utils/project-tags.ts
22
26
  var ProjectTagConstants = {
@@ -1,6 +1,6 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
2
2
 
3
- var _chunkXZP5ZUYNjs = require('./chunk-XZP5ZUYN.js');
3
+ var _chunkXJT7AOEUjs = require('./chunk-XJT7AOEU.js');
4
4
 
5
5
 
6
6
  var _chunk2XH6VHRLjs = require('./chunk-2XH6VHRL.js');
@@ -113,7 +113,7 @@ async function* publishExecutor(options, context) {
113
113
  );
114
114
  } else {
115
115
  console.log(`Published to ${tokenized.registry}`);
116
- const packageManager = _chunkXZP5ZUYNjs.getPackageInfo.call(void 0, projectConfig);
116
+ const packageManager = _chunkXJT7AOEUjs.getPackageInfo.call(void 0, projectConfig);
117
117
  if (packageManager) {
118
118
  tokenized["build-args"] ??= [
119
119
  "ENVIRONMENT=production",
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  getPackageInfo
3
- } from "./chunk-WV3ZYQE2.mjs";
3
+ } from "./chunk-BLX33ZLH.mjs";
4
4
  import {
5
5
  applyWorkspaceTokens
6
6
  } from "./chunk-CCWSBUHT.mjs";
@@ -4,7 +4,7 @@
4
4
 
5
5
 
6
6
 
7
- var _chunkXZP5ZUYNjs = require('./chunk-XZP5ZUYN.js');
7
+ var _chunkXJT7AOEUjs = require('./chunk-XJT7AOEU.js');
8
8
 
9
9
 
10
10
 
@@ -67,7 +67,7 @@ var createNodesV2 = [
67
67
  `org.opencontainers.image.source=${config.repository}`
68
68
  ];
69
69
  let tag = "latest";
70
- const packageManager = _chunkXZP5ZUYNjs.getPackageInfo.call(void 0, project);
70
+ const packageManager = _chunkXJT7AOEUjs.getPackageInfo.call(void 0, project);
71
71
  if (packageManager) {
72
72
  if (packageManager.type === "Cargo.toml") {
73
73
  tag = packageManager.content.package.version;
@@ -129,11 +129,11 @@ var createNodesV2 = [
129
129
  }
130
130
  }
131
131
  };
132
- if ((_chunkXZP5ZUYNjs.isEqualProjectTag.call(void 0,
132
+ if ((_chunkXJT7AOEUjs.isEqualProjectTag.call(void 0,
133
133
  project,
134
- _chunkXZP5ZUYNjs.ProjectTagConstants.ProjectType.TAG_ID,
135
- _chunkXZP5ZUYNjs.ProjectTagConstants.ProjectType.APPLICATION
136
- ) || project.projectType === "application") && _chunkXZP5ZUYNjs.hasProjectTag.call(void 0, project, _chunkXZP5ZUYNjs.ProjectTagConstants.Registry.TAG_ID)) {
134
+ _chunkXJT7AOEUjs.ProjectTagConstants.ProjectType.TAG_ID,
135
+ _chunkXJT7AOEUjs.ProjectTagConstants.ProjectType.APPLICATION
136
+ ) || project.projectType === "application") && _chunkXJT7AOEUjs.hasProjectTag.call(void 0, project, _chunkXJT7AOEUjs.ProjectTagConstants.Registry.TAG_ID)) {
137
137
  if (project.targets["nx-release-publish"]) {
138
138
  project.targets["nx-release-publish"] = {
139
139
  ...project.targets["nx-release-publish"],
@@ -160,7 +160,7 @@ var createNodesV2 = [
160
160
  };
161
161
  }
162
162
  }
163
- _chunkXZP5ZUYNjs.setDefaultProjectTags.call(void 0, project);
163
+ _chunkXJT7AOEUjs.setDefaultProjectTags.call(void 0, project);
164
164
  const projects = {};
165
165
  const externalNodes = {};
166
166
  projects[project.root] = {
@@ -16,7 +16,11 @@ function parseCargoToml(cargoString) {
16
16
  }
17
17
 
18
18
  // ../workspace-tools/src/utils/package-helpers.ts
19
+ var _child_process = require('child_process');
19
20
  var _fs = require('fs');
21
+ var _promises = require('fs/promises');
22
+ var _path = require('path');
23
+ var _prettier = require('prettier');
20
24
 
21
25
  // ../workspace-tools/src/utils/project-tags.ts
22
26
  var ProjectTagConstants = {
@@ -4,7 +4,7 @@ import {
4
4
  hasProjectTag,
5
5
  isEqualProjectTag,
6
6
  setDefaultProjectTags
7
- } from "./chunk-WV3ZYQE2.mjs";
7
+ } from "./chunk-BLX33ZLH.mjs";
8
8
  import {
9
9
  findWorkspaceRoot,
10
10
  getConfig
package/dist/executors.js CHANGED
@@ -1,11 +1,11 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-XO66D74Z.js');
2
2
 
3
3
 
4
- var _chunkRZEMVI6Tjs = require('./chunk-RZEMVI6T.js');
4
+ var _chunkO2EMBDJ5js = require('./chunk-O2EMBDJ5.js');
5
5
 
6
6
 
7
7
  var _chunkY7VKYMWDjs = require('./chunk-Y7VKYMWD.js');
8
- require('./chunk-XZP5ZUYN.js');
8
+ require('./chunk-XJT7AOEU.js');
9
9
  require('./chunk-2XH6VHRL.js');
10
10
  require('./chunk-FJNCLESV.js');
11
11
  require('./chunk-4AADQIGW.js');
@@ -15,4 +15,4 @@ require('./chunk-RECJ3G6F.js');
15
15
 
16
16
 
17
17
 
18
- exports.getRegistryVersion = _chunkRZEMVI6Tjs.getRegistryVersion; exports.serveExecutor = _chunkY7VKYMWDjs.serveExecutor;
18
+ exports.getRegistryVersion = _chunkO2EMBDJ5js.getRegistryVersion; exports.serveExecutor = _chunkY7VKYMWDjs.serveExecutor;
@@ -1,11 +1,11 @@
1
1
  import "./chunk-YSCEY447.mjs";
2
2
  import {
3
3
  getRegistryVersion
4
- } from "./chunk-HIUE56MJ.mjs";
4
+ } from "./chunk-QUQQSI72.mjs";
5
5
  import {
6
6
  serveExecutor
7
7
  } from "./chunk-ZOZNEQKX.mjs";
8
- import "./chunk-WV3ZYQE2.mjs";
8
+ import "./chunk-BLX33ZLH.mjs";
9
9
  import "./chunk-CCWSBUHT.mjs";
10
10
  import "./chunk-W7L5KLXN.mjs";
11
11
  import "./chunk-LANPEIXJ.mjs";
package/dist/index.js CHANGED
@@ -2,15 +2,15 @@
2
2
 
3
3
 
4
4
 
5
- var _chunkXRMM3UTEjs = require('./chunk-XRMM3UTE.js');
5
+ var _chunkWFXVAVOWjs = require('./chunk-WFXVAVOW.js');
6
6
  require('./chunk-XO66D74Z.js');
7
7
 
8
8
 
9
- var _chunkRZEMVI6Tjs = require('./chunk-RZEMVI6T.js');
9
+ var _chunkO2EMBDJ5js = require('./chunk-O2EMBDJ5.js');
10
10
 
11
11
 
12
12
  var _chunkY7VKYMWDjs = require('./chunk-Y7VKYMWD.js');
13
- require('./chunk-XZP5ZUYN.js');
13
+ require('./chunk-XJT7AOEU.js');
14
14
  require('./chunk-DHBG5ASJ.js');
15
15
 
16
16
 
@@ -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 = _chunkXRMM3UTEjs.createNodesV2; exports.description = _chunkXRMM3UTEjs.description; exports.ensureInitialized = _chunkXKOZIQT3js.ensureInitialized; exports.getRegistryVersion = _chunkRZEMVI6Tjs.getRegistryVersion; exports.helmChartGeneratorFn = _chunkIAY4QS4Tjs.helmChartGeneratorFn; exports.helmDependencyGeneratorFn = _chunkV222E7AQjs.helmDependencyGeneratorFn; exports.name = _chunkXRMM3UTEjs.name; exports.resolveUserExistingPrettierConfig = _chunk7QVOU2PTjs.resolveUserExistingPrettierConfig; exports.serveExecutor = _chunkY7VKYMWDjs.serveExecutor;
54
+ exports.AbstractHelmClient = _chunkJSFRUBG5js.AbstractHelmClient; exports.HelmClient = _chunk4AADQIGWjs.HelmClient; exports.addToPrettierIgnore = _chunk7QVOU2PTjs.addToPrettierIgnore; exports.createHelmClient = _chunk4AADQIGWjs.createHelmClient; exports.createNodesV2 = _chunkWFXVAVOWjs.createNodesV2; exports.description = _chunkWFXVAVOWjs.description; exports.ensureInitialized = _chunkXKOZIQT3js.ensureInitialized; exports.getRegistryVersion = _chunkO2EMBDJ5js.getRegistryVersion; exports.helmChartGeneratorFn = _chunkIAY4QS4Tjs.helmChartGeneratorFn; exports.helmDependencyGeneratorFn = _chunkV222E7AQjs.helmDependencyGeneratorFn; exports.name = _chunkWFXVAVOWjs.name; exports.resolveUserExistingPrettierConfig = _chunk7QVOU2PTjs.resolveUserExistingPrettierConfig; exports.serveExecutor = _chunkY7VKYMWDjs.serveExecutor;
package/dist/index.mjs CHANGED
@@ -2,15 +2,15 @@ import {
2
2
  createNodesV2,
3
3
  description,
4
4
  name
5
- } from "./chunk-Q4YZ6HUX.mjs";
5
+ } from "./chunk-YPADMVMD.mjs";
6
6
  import "./chunk-YSCEY447.mjs";
7
7
  import {
8
8
  getRegistryVersion
9
- } from "./chunk-HIUE56MJ.mjs";
9
+ } from "./chunk-QUQQSI72.mjs";
10
10
  import {
11
11
  serveExecutor
12
12
  } from "./chunk-ZOZNEQKX.mjs";
13
- import "./chunk-WV3ZYQE2.mjs";
13
+ import "./chunk-BLX33ZLH.mjs";
14
14
  import "./chunk-3J7KBHMJ.mjs";
15
15
  import {
16
16
  helmChartGeneratorFn
@@ -1,12 +1,12 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunkRZEMVI6Tjs = require('../../../chunk-RZEMVI6T.js');
5
- require('../../../chunk-XZP5ZUYN.js');
4
+ var _chunkO2EMBDJ5js = require('../../../chunk-O2EMBDJ5.js');
5
+ require('../../../chunk-XJT7AOEU.js');
6
6
  require('../../../chunk-2XH6VHRL.js');
7
7
  require('../../../chunk-FJNCLESV.js');
8
8
  require('../../../chunk-RECJ3G6F.js');
9
9
 
10
10
 
11
11
 
12
- exports.default = _chunkRZEMVI6Tjs.publishExecutor; exports.getRegistryVersion = _chunkRZEMVI6Tjs.getRegistryVersion;
12
+ exports.default = _chunkO2EMBDJ5js.publishExecutor; exports.getRegistryVersion = _chunkO2EMBDJ5js.getRegistryVersion;
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  getRegistryVersion,
3
3
  publishExecutor
4
- } from "../../../chunk-HIUE56MJ.mjs";
5
- import "../../../chunk-WV3ZYQE2.mjs";
4
+ } from "../../../chunk-QUQQSI72.mjs";
5
+ import "../../../chunk-BLX33ZLH.mjs";
6
6
  import "../../../chunk-CCWSBUHT.mjs";
7
7
  import "../../../chunk-W7L5KLXN.mjs";
8
8
  import "../../../chunk-GMTGF6X4.mjs";
@@ -2,12 +2,12 @@
2
2
 
3
3
 
4
4
 
5
- var _chunkXRMM3UTEjs = require('../../../chunk-XRMM3UTE.js');
6
- require('../../../chunk-XZP5ZUYN.js');
5
+ var _chunkWFXVAVOWjs = require('../../../chunk-WFXVAVOW.js');
6
+ require('../../../chunk-XJT7AOEU.js');
7
7
  require('../../../chunk-FJNCLESV.js');
8
8
  require('../../../chunk-RECJ3G6F.js');
9
9
 
10
10
 
11
11
 
12
12
 
13
- exports.createNodesV2 = _chunkXRMM3UTEjs.createNodesV2; exports.description = _chunkXRMM3UTEjs.description; exports.name = _chunkXRMM3UTEjs.name;
13
+ exports.createNodesV2 = _chunkWFXVAVOWjs.createNodesV2; exports.description = _chunkWFXVAVOWjs.description; exports.name = _chunkWFXVAVOWjs.name;
@@ -2,8 +2,8 @@ import {
2
2
  createNodesV2,
3
3
  description,
4
4
  name
5
- } from "../../../chunk-Q4YZ6HUX.mjs";
6
- import "../../../chunk-WV3ZYQE2.mjs";
5
+ } from "../../../chunk-YPADMVMD.mjs";
6
+ import "../../../chunk-BLX33ZLH.mjs";
7
7
  import "../../../chunk-W7L5KLXN.mjs";
8
8
  import "../../../chunk-GMTGF6X4.mjs";
9
9
  export {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/k8s-tools",
3
- "version": "0.33.22",
3
+ "version": "0.33.24",
4
4
  "description": "Tools for managing Kubernetes (k8s) infrastructure within a Nx workspace.",
5
5
  "repository": {
6
6
  "type": "github",
@@ -136,9 +136,9 @@
136
136
  "nx": { "optional": false }
137
137
  },
138
138
  "dependencies": {
139
- "@storm-software/config": "^1.124.1",
140
- "@storm-software/config-tools": "^1.174.2",
141
- "@storm-software/workspace-tools": "^1.276.1",
139
+ "@storm-software/config": "^1.124.3",
140
+ "@storm-software/config-tools": "^1.174.4",
141
+ "@storm-software/workspace-tools": "^1.277.0",
142
142
  "js-yaml": "^4.1.0"
143
143
  },
144
144
  "devDependencies": {
@@ -155,5 +155,6 @@
155
155
  },
156
156
  "publishConfig": { "access": "public" },
157
157
  "executors": "./executors.json",
158
- "generators": "./generators.json"
158
+ "generators": "./generators.json",
159
+ "gitHead": "cc6b643307c447a3a7e1118fee4893b3be34cdbd"
159
160
  }