@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 +28 -0
- package/README.md +1 -1
- package/dist/{chunk-WV3ZYQE2.mjs → chunk-BLX33ZLH.mjs} +4 -0
- package/dist/{chunk-RZEMVI6T.js → chunk-O2EMBDJ5.js} +2 -2
- package/dist/{chunk-HIUE56MJ.mjs → chunk-QUQQSI72.mjs} +1 -1
- package/dist/{chunk-XRMM3UTE.js → chunk-WFXVAVOW.js} +7 -7
- package/dist/{chunk-XZP5ZUYN.js → chunk-XJT7AOEU.js} +4 -0
- package/dist/{chunk-Q4YZ6HUX.mjs → chunk-YPADMVMD.mjs} +1 -1
- package/dist/executors.js +3 -3
- package/dist/executors.mjs +2 -2
- package/dist/index.js +4 -4
- package/dist/index.mjs +3 -3
- package/dist/src/executors/container-publish/executor.js +3 -3
- package/dist/src/executors/container-publish/executor.mjs +2 -2
- package/dist/src/plugins/docker/index.js +3 -3
- package/dist/src/plugins/docker/index.mjs +2 -2
- package/package.json +6 -5
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
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
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
|
|
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 =
|
|
116
|
+
const packageManager = _chunkXJT7AOEUjs.getPackageInfo.call(void 0, projectConfig);
|
|
117
117
|
if (packageManager) {
|
|
118
118
|
tokenized["build-args"] ??= [
|
|
119
119
|
"ENVIRONMENT=production",
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
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 =
|
|
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 ((
|
|
132
|
+
if ((_chunkXJT7AOEUjs.isEqualProjectTag.call(void 0,
|
|
133
133
|
project,
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
) || project.projectType === "application") &&
|
|
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
|
-
|
|
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 = {
|
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
|
|
4
|
+
var _chunkO2EMBDJ5js = require('./chunk-O2EMBDJ5.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
var _chunkY7VKYMWDjs = require('./chunk-Y7VKYMWD.js');
|
|
8
|
-
require('./chunk-
|
|
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 =
|
|
18
|
+
exports.getRegistryVersion = _chunkO2EMBDJ5js.getRegistryVersion; exports.serveExecutor = _chunkY7VKYMWDjs.serveExecutor;
|
package/dist/executors.mjs
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import "./chunk-YSCEY447.mjs";
|
|
2
2
|
import {
|
|
3
3
|
getRegistryVersion
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-QUQQSI72.mjs";
|
|
5
5
|
import {
|
|
6
6
|
serveExecutor
|
|
7
7
|
} from "./chunk-ZOZNEQKX.mjs";
|
|
8
|
-
import "./chunk-
|
|
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
|
|
5
|
+
var _chunkWFXVAVOWjs = require('./chunk-WFXVAVOW.js');
|
|
6
6
|
require('./chunk-XO66D74Z.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
var
|
|
9
|
+
var _chunkO2EMBDJ5js = require('./chunk-O2EMBDJ5.js');
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
var _chunkY7VKYMWDjs = require('./chunk-Y7VKYMWD.js');
|
|
13
|
-
require('./chunk-
|
|
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 =
|
|
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-
|
|
5
|
+
} from "./chunk-YPADMVMD.mjs";
|
|
6
6
|
import "./chunk-YSCEY447.mjs";
|
|
7
7
|
import {
|
|
8
8
|
getRegistryVersion
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-QUQQSI72.mjs";
|
|
10
10
|
import {
|
|
11
11
|
serveExecutor
|
|
12
12
|
} from "./chunk-ZOZNEQKX.mjs";
|
|
13
|
-
import "./chunk-
|
|
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
|
|
5
|
-
require('../../../chunk-
|
|
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 =
|
|
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-
|
|
5
|
-
import "../../../chunk-
|
|
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
|
|
6
|
-
require('../../../chunk-
|
|
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 =
|
|
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-
|
|
6
|
-
import "../../../chunk-
|
|
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.
|
|
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.
|
|
140
|
-
"@storm-software/config-tools": "^1.174.
|
|
141
|
-
"@storm-software/workspace-tools": "^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
|
}
|