@storm-software/k8s-tools 0.42.171 → 0.42.172
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 +8 -0
- package/README.md +1 -1
- package/dist/{chunk-4PAVZ75P.mjs → chunk-2WFRMEVI.mjs} +1 -1
- package/dist/{chunk-3FAJA4N5.mjs → chunk-4WG5YU76.mjs} +3 -3
- package/dist/{chunk-RLQPXU34.mjs → chunk-A23BY74M.mjs} +3 -3
- package/dist/{chunk-SMHLUZFA.js → chunk-A4VO4W6H.js} +3 -3
- package/dist/{chunk-F3KQMCR5.js → chunk-BN4ZVYUX.js} +20 -20
- package/dist/{chunk-OUZS6PII.mjs → chunk-CLSUG23S.mjs} +2 -2
- package/dist/{chunk-W7UF4BRT.js → chunk-FM56KBYY.js} +4 -4
- package/dist/{chunk-S7TG34QG.mjs → chunk-GVBPX4P3.mjs} +2 -2
- package/dist/{chunk-AVZUZ6EI.mjs → chunk-HGE25HSB.mjs} +2 -2
- package/dist/{chunk-7NLRPYUR.js → chunk-J4YA3MOH.js} +25 -25
- package/dist/{chunk-EGOVHMX3.js → chunk-L5AIC4GN.js} +4 -4
- package/dist/{chunk-AQJLXLJA.js → chunk-N2YMA2SG.js} +6 -6
- package/dist/{chunk-FCY7ZPWO.mjs → chunk-NYUL5EJI.mjs} +1 -1
- package/dist/{chunk-OBAC4EJZ.js → chunk-OAJB4SET.js} +17 -28
- package/dist/{chunk-Z7BP6SC5.mjs → chunk-PHJ2C6SX.mjs} +1 -1
- package/dist/{chunk-QCHDL62S.mjs → chunk-PXNJS7UH.mjs} +17 -28
- package/dist/{chunk-6IE3MJGL.mjs → chunk-UXUMM6PX.mjs} +1 -1
- package/dist/{chunk-4ZUN77WC.js → chunk-YMZMROXK.js} +2 -2
- package/dist/{chunk-REEOMVVB.mjs → chunk-YTPUIRMR.mjs} +1 -1
- package/dist/executors.js +5 -5
- package/dist/executors.mjs +6 -6
- package/dist/generators.js +6 -6
- package/dist/generators.mjs +6 -6
- package/dist/index.js +9 -9
- package/dist/index.mjs +11 -11
- package/dist/src/executors/container-publish/executor.js +4 -4
- package/dist/src/executors/container-publish/executor.mjs +4 -4
- package/dist/src/executors/helm-package/executor.js +4 -4
- package/dist/src/executors/helm-package/executor.mjs +5 -5
- package/dist/src/generators/helm-chart/generator.js +5 -5
- package/dist/src/generators/helm-chart/generator.mjs +5 -5
- package/dist/src/generators/helm-dependency/generator.js +5 -5
- package/dist/src/generators/helm-dependency/generator.mjs +5 -5
- package/dist/src/plugins/docker/index.js +3 -3
- package/dist/src/plugins/docker/index.mjs +3 -3
- package/dist/src/types.mjs +1 -1
- package/dist/src/utils/client.mjs +2 -2
- package/dist/src/utils/ensure-init.mjs +1 -1
- package/dist/src/utils/index.mjs +3 -3
- package/dist/src/utils/prettier.mjs +2 -2
- package/dist/tsup.config.mjs +1 -1
- package/package.json +5 -5
|
@@ -155,8 +155,8 @@ var CONSOLE_ICONS = {
|
|
|
155
155
|
};
|
|
156
156
|
|
|
157
157
|
// ../config-tools/src/logger/format-timestamp.ts
|
|
158
|
-
var formatTimestamp = (date = /* @__PURE__ */ new Date()) => {
|
|
159
|
-
return `${date.toLocaleDateString()} ${date.toLocaleTimeString()}`;
|
|
158
|
+
var formatTimestamp = (fullDateTime = false, date = /* @__PURE__ */ new Date()) => {
|
|
159
|
+
return fullDateTime ? `${date.toLocaleDateString()} ${date.toLocaleTimeString()}` : `${date.toLocaleTimeString()}`;
|
|
160
160
|
};
|
|
161
161
|
|
|
162
162
|
// ../config-tools/src/logger/get-log-level.ts
|
|
@@ -216,7 +216,12 @@ var getLogLevelLabel = (logLevel = LogLevel.INFO) => {
|
|
|
216
216
|
};
|
|
217
217
|
|
|
218
218
|
// ../config-tools/src/logger/console.ts
|
|
219
|
-
var getLogFn = (logLevel = LogLevel.INFO, config = {},
|
|
219
|
+
var getLogFn = (logLevel = LogLevel.INFO, config = {}, options = {}) => {
|
|
220
|
+
const {
|
|
221
|
+
chalk: _chalk = getChalk(),
|
|
222
|
+
fullDateTime = false,
|
|
223
|
+
hideDateTime = false
|
|
224
|
+
} = options;
|
|
220
225
|
const colors = !config.colors?.dark && !config.colors?.["base"] && !config.colors?.["base"]?.dark ? DEFAULT_COLOR_CONFIG : config.colors?.dark && typeof config.colors.dark === "string" ? config.colors : config.colors?.["base"]?.dark && typeof config.colors["base"].dark === "string" ? config.colors["base"].dark : config.colors?.["base"] ? config.colors?.["base"] : DEFAULT_COLOR_CONFIG;
|
|
221
226
|
const configLogLevel = config.logLevel || process.env.STORM_LOG_LEVEL || LogLevelLabel.INFO;
|
|
222
227
|
if (logLevel > getLogLevel(configLogLevel) || logLevel <= LogLevel.SILENT || getLogLevel(configLogLevel) <= LogLevel.SILENT) {
|
|
@@ -227,9 +232,7 @@ var getLogFn = (logLevel = LogLevel.INFO, config = {}, _chalk = getChalk()) => {
|
|
|
227
232
|
return (message) => {
|
|
228
233
|
console.error(
|
|
229
234
|
`
|
|
230
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
231
|
-
colors.fatal ?? DEFAULT_COLOR_CONFIG.dark.fatal
|
|
232
|
-
)(
|
|
235
|
+
${hideDateTime ? "" : `${_chalk.gray(formatTimestamp(fullDateTime))} `}${_chalk.hex(colors.fatal ?? DEFAULT_COLOR_CONFIG.dark.fatal)(
|
|
233
236
|
`[${CONSOLE_ICONS[LogLevelLabel.FATAL]} Fatal] `
|
|
234
237
|
)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
235
238
|
`
|
|
@@ -240,9 +243,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
|
240
243
|
return (message) => {
|
|
241
244
|
console.error(
|
|
242
245
|
`
|
|
243
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
244
|
-
colors.danger ?? DEFAULT_COLOR_CONFIG.dark.danger
|
|
245
|
-
)(
|
|
246
|
+
${hideDateTime ? "" : `${_chalk.gray(formatTimestamp(fullDateTime))} `}${_chalk.hex(colors.danger ?? DEFAULT_COLOR_CONFIG.dark.danger)(
|
|
246
247
|
`[${CONSOLE_ICONS[LogLevelLabel.ERROR]} Error] `
|
|
247
248
|
)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
248
249
|
`
|
|
@@ -253,9 +254,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
|
253
254
|
return (message) => {
|
|
254
255
|
console.warn(
|
|
255
256
|
`
|
|
256
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
257
|
-
colors.warning ?? DEFAULT_COLOR_CONFIG.dark.warning
|
|
258
|
-
)(
|
|
257
|
+
${hideDateTime ? "" : `${_chalk.gray(formatTimestamp(fullDateTime))} `}${_chalk.hex(colors.warning ?? DEFAULT_COLOR_CONFIG.dark.warning)(
|
|
259
258
|
`[${CONSOLE_ICONS[LogLevelLabel.WARN]} Warn] `
|
|
260
259
|
)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
261
260
|
`
|
|
@@ -266,9 +265,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
|
266
265
|
return (message) => {
|
|
267
266
|
console.info(
|
|
268
267
|
`
|
|
269
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
270
|
-
colors.success ?? DEFAULT_COLOR_CONFIG.dark.success
|
|
271
|
-
)(
|
|
268
|
+
${hideDateTime ? "" : `${_chalk.gray(formatTimestamp(fullDateTime))} `}${_chalk.hex(colors.success ?? DEFAULT_COLOR_CONFIG.dark.success)(
|
|
272
269
|
`[${CONSOLE_ICONS[LogLevelLabel.SUCCESS]} Success] `
|
|
273
270
|
)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
274
271
|
`
|
|
@@ -279,9 +276,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
|
279
276
|
return (message) => {
|
|
280
277
|
console.info(
|
|
281
278
|
`
|
|
282
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
283
|
-
colors.info ?? DEFAULT_COLOR_CONFIG.dark.info
|
|
284
|
-
)(
|
|
279
|
+
${hideDateTime ? "" : `${_chalk.gray(formatTimestamp(fullDateTime))} `}${_chalk.hex(colors.info ?? DEFAULT_COLOR_CONFIG.dark.info)(
|
|
285
280
|
`[${CONSOLE_ICONS[LogLevelLabel.INFO]} Info] `
|
|
286
281
|
)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
287
282
|
`
|
|
@@ -292,9 +287,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
|
292
287
|
return (message) => {
|
|
293
288
|
console.debug(
|
|
294
289
|
`
|
|
295
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
296
|
-
colors.performance ?? DEFAULT_COLOR_CONFIG.dark.performance
|
|
297
|
-
)(
|
|
290
|
+
${hideDateTime ? "" : `${_chalk.gray(formatTimestamp(fullDateTime))} `}${_chalk.hex(colors.performance ?? DEFAULT_COLOR_CONFIG.dark.performance)(
|
|
298
291
|
`[${CONSOLE_ICONS[LogLevelLabel.PERFORMANCE]} Performance] `
|
|
299
292
|
)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
300
293
|
`
|
|
@@ -305,9 +298,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
|
305
298
|
return (message) => {
|
|
306
299
|
console.debug(
|
|
307
300
|
`
|
|
308
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
309
|
-
colors.debug ?? DEFAULT_COLOR_CONFIG.dark.debug
|
|
310
|
-
)(
|
|
301
|
+
${hideDateTime ? "" : `${_chalk.gray(formatTimestamp(fullDateTime))} `}${_chalk.hex(colors.debug ?? DEFAULT_COLOR_CONFIG.dark.debug)(
|
|
311
302
|
`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `
|
|
312
303
|
)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
313
304
|
`
|
|
@@ -318,7 +309,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
|
318
309
|
return (message) => {
|
|
319
310
|
console.debug(
|
|
320
311
|
`
|
|
321
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex("#bbbbbb")(
|
|
312
|
+
${hideDateTime ? "" : `${_chalk.gray(formatTimestamp(fullDateTime))} `}${_chalk.hex("#bbbbbb")(
|
|
322
313
|
`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `
|
|
323
314
|
)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
324
315
|
`
|
|
@@ -328,9 +319,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex("#bbbbbb")(
|
|
|
328
319
|
return (message) => {
|
|
329
320
|
console.log(
|
|
330
321
|
`
|
|
331
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
332
|
-
colors.brand ?? DEFAULT_COLOR_CONFIG.dark.brand
|
|
333
|
-
)(
|
|
322
|
+
${hideDateTime ? "" : `${_chalk.gray(formatTimestamp(fullDateTime))} `}${_chalk.hex(colors.brand ?? DEFAULT_COLOR_CONFIG.dark.brand)(
|
|
334
323
|
`[${CONSOLE_ICONS[LogLevelLabel.ALL]} System] `
|
|
335
324
|
)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
336
325
|
`
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); 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 _chunkOAJB4SETjs = require('./chunk-OAJB4SET.js');
|
|
4
4
|
|
|
5
5
|
// ../config-tools/src/utilities/apply-workspace-tokens.ts
|
|
6
6
|
var applyWorkspaceBaseTokens = async (option, tokenParams) => {
|
|
@@ -37,7 +37,7 @@ var applyWorkspaceBaseTokens = async (option, tokenParams) => {
|
|
|
37
37
|
if (result.includes("{workspaceRoot}")) {
|
|
38
38
|
result = result.replaceAll(
|
|
39
39
|
"{workspaceRoot}",
|
|
40
|
-
_nullishCoalesce(_nullishCoalesce(tokenParams.workspaceRoot, () => ( _optionalChain([tokenParams, 'access', _2 => _2.config, 'optionalAccess', _3 => _3.workspaceRoot]))), () => (
|
|
40
|
+
_nullishCoalesce(_nullishCoalesce(tokenParams.workspaceRoot, () => ( _optionalChain([tokenParams, 'access', _2 => _2.config, 'optionalAccess', _3 => _3.workspaceRoot]))), () => ( _chunkOAJB4SETjs.findWorkspaceRoot.call(void 0, )))
|
|
41
41
|
);
|
|
42
42
|
}
|
|
43
43
|
return result;
|
package/dist/executors.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-XO66D74Z.js');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkN2YMA2SGjs = require('./chunk-N2YMA2SG.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
7
|
+
var _chunkJ4YA3MOHjs = require('./chunk-J4YA3MOH.js');
|
|
8
8
|
require('./chunk-KBSSJUPW.js');
|
|
9
|
-
require('./chunk-
|
|
10
|
-
require('./chunk-
|
|
9
|
+
require('./chunk-YMZMROXK.js');
|
|
10
|
+
require('./chunk-OAJB4SET.js');
|
|
11
11
|
require('./chunk-4AADQIGW.js');
|
|
12
12
|
require('./chunk-JSFRUBG5.js');
|
|
13
13
|
require('./chunk-XKOZIQT3.js');
|
|
@@ -15,4 +15,4 @@ require('./chunk-RECJ3G6F.js');
|
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
exports.getRegistryVersion =
|
|
18
|
+
exports.getRegistryVersion = _chunkN2YMA2SGjs.getRegistryVersion; exports.serveExecutor = _chunkJ4YA3MOHjs.serveExecutor;
|
package/dist/executors.mjs
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import "./chunk-YSCEY447.mjs";
|
|
2
2
|
import {
|
|
3
3
|
getRegistryVersion
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-CLSUG23S.mjs";
|
|
5
5
|
import {
|
|
6
6
|
serveExecutor
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-A23BY74M.mjs";
|
|
8
8
|
import "./chunk-WS2G4IWW.mjs";
|
|
9
|
-
import "./chunk-
|
|
10
|
-
import "./chunk-
|
|
11
|
-
import "./chunk-
|
|
9
|
+
import "./chunk-PHJ2C6SX.mjs";
|
|
10
|
+
import "./chunk-PXNJS7UH.mjs";
|
|
11
|
+
import "./chunk-YTPUIRMR.mjs";
|
|
12
12
|
import "./chunk-YXXZO2AJ.mjs";
|
|
13
13
|
import "./chunk-HGXQ6SSU.mjs";
|
|
14
|
-
import "./chunk-
|
|
14
|
+
import "./chunk-2WFRMEVI.mjs";
|
|
15
15
|
export {
|
|
16
16
|
getRegistryVersion,
|
|
17
17
|
serveExecutor
|
package/dist/generators.js
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-DHBG5ASJ.js');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkFM56KBYYjs = require('./chunk-FM56KBYY.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
8
|
-
require('./chunk-
|
|
9
|
-
require('./chunk-
|
|
10
|
-
require('./chunk-
|
|
7
|
+
var _chunkL5AIC4GNjs = require('./chunk-L5AIC4GN.js');
|
|
8
|
+
require('./chunk-BN4ZVYUX.js');
|
|
9
|
+
require('./chunk-YMZMROXK.js');
|
|
10
|
+
require('./chunk-OAJB4SET.js');
|
|
11
11
|
require('./chunk-RECJ3G6F.js');
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
|
|
15
|
-
exports.helmChartGeneratorFn =
|
|
15
|
+
exports.helmChartGeneratorFn = _chunkFM56KBYYjs.helmChartGeneratorFn; exports.helmDependencyGeneratorFn = _chunkL5AIC4GNjs.helmDependencyGeneratorFn;
|
package/dist/generators.mjs
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import "./chunk-3J7KBHMJ.mjs";
|
|
2
2
|
import {
|
|
3
3
|
helmChartGeneratorFn
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-4WG5YU76.mjs";
|
|
5
5
|
import {
|
|
6
6
|
helmDependencyGeneratorFn
|
|
7
|
-
} from "./chunk-
|
|
8
|
-
import "./chunk-
|
|
9
|
-
import "./chunk-
|
|
10
|
-
import "./chunk-
|
|
11
|
-
import "./chunk-
|
|
7
|
+
} from "./chunk-GVBPX4P3.mjs";
|
|
8
|
+
import "./chunk-HGE25HSB.mjs";
|
|
9
|
+
import "./chunk-PHJ2C6SX.mjs";
|
|
10
|
+
import "./chunk-PXNJS7UH.mjs";
|
|
11
|
+
import "./chunk-2WFRMEVI.mjs";
|
|
12
12
|
export {
|
|
13
13
|
helmChartGeneratorFn,
|
|
14
14
|
helmDependencyGeneratorFn
|
package/dist/index.js
CHANGED
|
@@ -2,25 +2,25 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
5
|
+
var _chunkA4VO4W6Hjs = require('./chunk-A4VO4W6H.js');
|
|
6
6
|
require('./chunk-XO66D74Z.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
var
|
|
9
|
+
var _chunkN2YMA2SGjs = require('./chunk-N2YMA2SG.js');
|
|
10
10
|
|
|
11
11
|
|
|
12
|
-
var
|
|
12
|
+
var _chunkJ4YA3MOHjs = require('./chunk-J4YA3MOH.js');
|
|
13
13
|
require('./chunk-KBSSJUPW.js');
|
|
14
14
|
require('./chunk-DHBG5ASJ.js');
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
var
|
|
17
|
+
var _chunkFM56KBYYjs = require('./chunk-FM56KBYY.js');
|
|
18
18
|
|
|
19
19
|
|
|
20
|
-
var
|
|
21
|
-
require('./chunk-
|
|
22
|
-
require('./chunk-
|
|
23
|
-
require('./chunk-
|
|
20
|
+
var _chunkL5AIC4GNjs = require('./chunk-L5AIC4GN.js');
|
|
21
|
+
require('./chunk-BN4ZVYUX.js');
|
|
22
|
+
require('./chunk-YMZMROXK.js');
|
|
23
|
+
require('./chunk-OAJB4SET.js');
|
|
24
24
|
require('./chunk-U76ID4TS.js');
|
|
25
25
|
|
|
26
26
|
|
|
@@ -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 = _chunkA4VO4W6Hjs.createNodesV2; exports.description = _chunkA4VO4W6Hjs.description; exports.ensureInitialized = _chunkXKOZIQT3js.ensureInitialized; exports.getRegistryVersion = _chunkN2YMA2SGjs.getRegistryVersion; exports.helmChartGeneratorFn = _chunkFM56KBYYjs.helmChartGeneratorFn; exports.helmDependencyGeneratorFn = _chunkL5AIC4GNjs.helmDependencyGeneratorFn; exports.name = _chunkA4VO4W6Hjs.name; exports.resolveUserExistingPrettierConfig = _chunk7QVOU2PTjs.resolveUserExistingPrettierConfig; exports.serveExecutor = _chunkJ4YA3MOHjs.serveExecutor;
|
package/dist/index.mjs
CHANGED
|
@@ -2,41 +2,41 @@ import {
|
|
|
2
2
|
createNodesV2,
|
|
3
3
|
description,
|
|
4
4
|
name
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-NYUL5EJI.mjs";
|
|
6
6
|
import "./chunk-YSCEY447.mjs";
|
|
7
7
|
import {
|
|
8
8
|
getRegistryVersion
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-CLSUG23S.mjs";
|
|
10
10
|
import {
|
|
11
11
|
serveExecutor
|
|
12
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-A23BY74M.mjs";
|
|
13
13
|
import "./chunk-WS2G4IWW.mjs";
|
|
14
14
|
import "./chunk-3J7KBHMJ.mjs";
|
|
15
15
|
import {
|
|
16
16
|
helmChartGeneratorFn
|
|
17
|
-
} from "./chunk-
|
|
17
|
+
} from "./chunk-4WG5YU76.mjs";
|
|
18
18
|
import {
|
|
19
19
|
helmDependencyGeneratorFn
|
|
20
|
-
} from "./chunk-
|
|
21
|
-
import "./chunk-
|
|
22
|
-
import "./chunk-
|
|
23
|
-
import "./chunk-
|
|
20
|
+
} from "./chunk-GVBPX4P3.mjs";
|
|
21
|
+
import "./chunk-HGE25HSB.mjs";
|
|
22
|
+
import "./chunk-PHJ2C6SX.mjs";
|
|
23
|
+
import "./chunk-PXNJS7UH.mjs";
|
|
24
24
|
import "./chunk-WWU25UQ4.mjs";
|
|
25
25
|
import {
|
|
26
26
|
addToPrettierIgnore,
|
|
27
27
|
resolveUserExistingPrettierConfig
|
|
28
|
-
} from "./chunk-
|
|
28
|
+
} from "./chunk-UXUMM6PX.mjs";
|
|
29
29
|
import {
|
|
30
30
|
HelmClient,
|
|
31
31
|
createHelmClient
|
|
32
|
-
} from "./chunk-
|
|
32
|
+
} from "./chunk-YTPUIRMR.mjs";
|
|
33
33
|
import {
|
|
34
34
|
AbstractHelmClient
|
|
35
35
|
} from "./chunk-YXXZO2AJ.mjs";
|
|
36
36
|
import {
|
|
37
37
|
ensureInitialized
|
|
38
38
|
} from "./chunk-HGXQ6SSU.mjs";
|
|
39
|
-
import "./chunk-
|
|
39
|
+
import "./chunk-2WFRMEVI.mjs";
|
|
40
40
|
export {
|
|
41
41
|
AbstractHelmClient,
|
|
42
42
|
HelmClient,
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkN2YMA2SGjs = require('../../../chunk-N2YMA2SG.js');
|
|
5
5
|
require('../../../chunk-KBSSJUPW.js');
|
|
6
|
-
require('../../../chunk-
|
|
7
|
-
require('../../../chunk-
|
|
6
|
+
require('../../../chunk-YMZMROXK.js');
|
|
7
|
+
require('../../../chunk-OAJB4SET.js');
|
|
8
8
|
require('../../../chunk-RECJ3G6F.js');
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
|
|
12
|
-
exports.default =
|
|
12
|
+
exports.default = _chunkN2YMA2SGjs.publishExecutor; exports.getRegistryVersion = _chunkN2YMA2SGjs.getRegistryVersion;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
2
|
getRegistryVersion,
|
|
3
3
|
publishExecutor
|
|
4
|
-
} from "../../../chunk-
|
|
4
|
+
} from "../../../chunk-CLSUG23S.mjs";
|
|
5
5
|
import "../../../chunk-WS2G4IWW.mjs";
|
|
6
|
-
import "../../../chunk-
|
|
7
|
-
import "../../../chunk-
|
|
8
|
-
import "../../../chunk-
|
|
6
|
+
import "../../../chunk-PHJ2C6SX.mjs";
|
|
7
|
+
import "../../../chunk-PXNJS7UH.mjs";
|
|
8
|
+
import "../../../chunk-2WFRMEVI.mjs";
|
|
9
9
|
export {
|
|
10
10
|
publishExecutor as default,
|
|
11
11
|
getRegistryVersion
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
5
|
-
require('../../../chunk-
|
|
6
|
-
require('../../../chunk-
|
|
4
|
+
var _chunkJ4YA3MOHjs = require('../../../chunk-J4YA3MOH.js');
|
|
5
|
+
require('../../../chunk-YMZMROXK.js');
|
|
6
|
+
require('../../../chunk-OAJB4SET.js');
|
|
7
7
|
require('../../../chunk-4AADQIGW.js');
|
|
8
8
|
require('../../../chunk-JSFRUBG5.js');
|
|
9
9
|
require('../../../chunk-XKOZIQT3.js');
|
|
@@ -11,4 +11,4 @@ require('../../../chunk-RECJ3G6F.js');
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
exports.default =
|
|
14
|
+
exports.default = _chunkJ4YA3MOHjs.executor_default; exports.serveExecutor = _chunkJ4YA3MOHjs.serveExecutor;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import {
|
|
2
2
|
executor_default,
|
|
3
3
|
serveExecutor
|
|
4
|
-
} from "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
6
|
-
import "../../../chunk-
|
|
7
|
-
import "../../../chunk-
|
|
4
|
+
} from "../../../chunk-A23BY74M.mjs";
|
|
5
|
+
import "../../../chunk-PHJ2C6SX.mjs";
|
|
6
|
+
import "../../../chunk-PXNJS7UH.mjs";
|
|
7
|
+
import "../../../chunk-YTPUIRMR.mjs";
|
|
8
8
|
import "../../../chunk-YXXZO2AJ.mjs";
|
|
9
9
|
import "../../../chunk-HGXQ6SSU.mjs";
|
|
10
|
-
import "../../../chunk-
|
|
10
|
+
import "../../../chunk-2WFRMEVI.mjs";
|
|
11
11
|
export {
|
|
12
12
|
executor_default as default,
|
|
13
13
|
serveExecutor
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
5
|
-
require('../../../chunk-
|
|
6
|
-
require('../../../chunk-
|
|
7
|
-
require('../../../chunk-
|
|
4
|
+
var _chunkFM56KBYYjs = require('../../../chunk-FM56KBYY.js');
|
|
5
|
+
require('../../../chunk-BN4ZVYUX.js');
|
|
6
|
+
require('../../../chunk-YMZMROXK.js');
|
|
7
|
+
require('../../../chunk-OAJB4SET.js');
|
|
8
8
|
require('../../../chunk-RECJ3G6F.js');
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
|
|
12
|
-
exports.default =
|
|
12
|
+
exports.default = _chunkFM56KBYYjs.generator_default; exports.helmChartGeneratorFn = _chunkFM56KBYYjs.helmChartGeneratorFn;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
2
|
generator_default,
|
|
3
3
|
helmChartGeneratorFn
|
|
4
|
-
} from "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
6
|
-
import "../../../chunk-
|
|
7
|
-
import "../../../chunk-
|
|
8
|
-
import "../../../chunk-
|
|
4
|
+
} from "../../../chunk-4WG5YU76.mjs";
|
|
5
|
+
import "../../../chunk-HGE25HSB.mjs";
|
|
6
|
+
import "../../../chunk-PHJ2C6SX.mjs";
|
|
7
|
+
import "../../../chunk-PXNJS7UH.mjs";
|
|
8
|
+
import "../../../chunk-2WFRMEVI.mjs";
|
|
9
9
|
export {
|
|
10
10
|
generator_default as default,
|
|
11
11
|
helmChartGeneratorFn
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
5
|
-
require('../../../chunk-
|
|
6
|
-
require('../../../chunk-
|
|
7
|
-
require('../../../chunk-
|
|
4
|
+
var _chunkL5AIC4GNjs = require('../../../chunk-L5AIC4GN.js');
|
|
5
|
+
require('../../../chunk-BN4ZVYUX.js');
|
|
6
|
+
require('../../../chunk-YMZMROXK.js');
|
|
7
|
+
require('../../../chunk-OAJB4SET.js');
|
|
8
8
|
require('../../../chunk-RECJ3G6F.js');
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
|
|
12
|
-
exports.default =
|
|
12
|
+
exports.default = _chunkL5AIC4GNjs.generator_default; exports.helmDependencyGeneratorFn = _chunkL5AIC4GNjs.helmDependencyGeneratorFn;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
2
|
generator_default,
|
|
3
3
|
helmDependencyGeneratorFn
|
|
4
|
-
} from "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
6
|
-
import "../../../chunk-
|
|
7
|
-
import "../../../chunk-
|
|
8
|
-
import "../../../chunk-
|
|
4
|
+
} from "../../../chunk-GVBPX4P3.mjs";
|
|
5
|
+
import "../../../chunk-HGE25HSB.mjs";
|
|
6
|
+
import "../../../chunk-PHJ2C6SX.mjs";
|
|
7
|
+
import "../../../chunk-PXNJS7UH.mjs";
|
|
8
|
+
import "../../../chunk-2WFRMEVI.mjs";
|
|
9
9
|
export {
|
|
10
10
|
generator_default as default,
|
|
11
11
|
helmDependencyGeneratorFn
|
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
5
|
+
var _chunkA4VO4W6Hjs = require('../../../chunk-A4VO4W6H.js');
|
|
6
6
|
require('../../../chunk-KBSSJUPW.js');
|
|
7
|
-
require('../../../chunk-
|
|
7
|
+
require('../../../chunk-OAJB4SET.js');
|
|
8
8
|
require('../../../chunk-RECJ3G6F.js');
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
|
|
13
|
-
exports.createNodesV2 =
|
|
13
|
+
exports.createNodesV2 = _chunkA4VO4W6Hjs.createNodesV2; exports.description = _chunkA4VO4W6Hjs.description; exports.name = _chunkA4VO4W6Hjs.name;
|
|
@@ -2,10 +2,10 @@ import {
|
|
|
2
2
|
createNodesV2,
|
|
3
3
|
description,
|
|
4
4
|
name
|
|
5
|
-
} from "../../../chunk-
|
|
5
|
+
} from "../../../chunk-NYUL5EJI.mjs";
|
|
6
6
|
import "../../../chunk-WS2G4IWW.mjs";
|
|
7
|
-
import "../../../chunk-
|
|
8
|
-
import "../../../chunk-
|
|
7
|
+
import "../../../chunk-PXNJS7UH.mjs";
|
|
8
|
+
import "../../../chunk-2WFRMEVI.mjs";
|
|
9
9
|
export {
|
|
10
10
|
createNodesV2,
|
|
11
11
|
description,
|
package/dist/src/types.mjs
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import {
|
|
2
2
|
HelmClient,
|
|
3
3
|
createHelmClient
|
|
4
|
-
} from "../../chunk-
|
|
4
|
+
} from "../../chunk-YTPUIRMR.mjs";
|
|
5
5
|
import "../../chunk-YXXZO2AJ.mjs";
|
|
6
6
|
import "../../chunk-HGXQ6SSU.mjs";
|
|
7
|
-
import "../../chunk-
|
|
7
|
+
import "../../chunk-2WFRMEVI.mjs";
|
|
8
8
|
export {
|
|
9
9
|
HelmClient,
|
|
10
10
|
createHelmClient
|
package/dist/src/utils/index.mjs
CHANGED
|
@@ -2,16 +2,16 @@ import "../../chunk-WWU25UQ4.mjs";
|
|
|
2
2
|
import {
|
|
3
3
|
addToPrettierIgnore,
|
|
4
4
|
resolveUserExistingPrettierConfig
|
|
5
|
-
} from "../../chunk-
|
|
5
|
+
} from "../../chunk-UXUMM6PX.mjs";
|
|
6
6
|
import {
|
|
7
7
|
HelmClient,
|
|
8
8
|
createHelmClient
|
|
9
|
-
} from "../../chunk-
|
|
9
|
+
} from "../../chunk-YTPUIRMR.mjs";
|
|
10
10
|
import "../../chunk-YXXZO2AJ.mjs";
|
|
11
11
|
import {
|
|
12
12
|
ensureInitialized
|
|
13
13
|
} from "../../chunk-HGXQ6SSU.mjs";
|
|
14
|
-
import "../../chunk-
|
|
14
|
+
import "../../chunk-2WFRMEVI.mjs";
|
|
15
15
|
export {
|
|
16
16
|
HelmClient,
|
|
17
17
|
addToPrettierIgnore,
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
addToPrettierIgnore,
|
|
3
3
|
resolveUserExistingPrettierConfig
|
|
4
|
-
} from "../../chunk-
|
|
5
|
-
import "../../chunk-
|
|
4
|
+
} from "../../chunk-UXUMM6PX.mjs";
|
|
5
|
+
import "../../chunk-2WFRMEVI.mjs";
|
|
6
6
|
export {
|
|
7
7
|
addToPrettierIgnore,
|
|
8
8
|
resolveUserExistingPrettierConfig
|
package/dist/tsup.config.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/k8s-tools",
|
|
3
|
-
"version": "0.42.
|
|
3
|
+
"version": "0.42.172",
|
|
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.137.
|
|
144
|
-
"@storm-software/config-tools": "^1.
|
|
145
|
-
"@storm-software/workspace-tools": "^1.295.
|
|
143
|
+
"@storm-software/config": "^1.137.33",
|
|
144
|
+
"@storm-software/config-tools": "^1.190.0",
|
|
145
|
+
"@storm-software/workspace-tools": "^1.295.57",
|
|
146
146
|
"defu": "6.1.4",
|
|
147
147
|
"yaml": "^2.8.3"
|
|
148
148
|
},
|
|
@@ -160,5 +160,5 @@
|
|
|
160
160
|
"publishConfig": { "access": "public" },
|
|
161
161
|
"executors": "./executors.json",
|
|
162
162
|
"generators": "./generators.json",
|
|
163
|
-
"gitHead": "
|
|
163
|
+
"gitHead": "8e54226b1485019afc0373ac57d8e56a394dad04"
|
|
164
164
|
}
|