pmcf 1.59.13 → 1.61.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.
- package/bin/pmcf-diagram +1 -1
- package/bin/pmcf-info +1 -1
- package/bin/pmcf-package +8 -6
- package/package.json +1 -1
- package/src/{cmd.mjs → cli.mjs} +5 -2
- package/src/cluster.mjs +3 -2
- package/types/{cmd.d.mts → cli.d.mts} +1 -0
- package/types/cluster.d.mts +6 -0
package/bin/pmcf-diagram
CHANGED
package/bin/pmcf-info
CHANGED
package/bin/pmcf-package
CHANGED
|
@@ -6,7 +6,7 @@ import { tmpdir } from "node:os";
|
|
|
6
6
|
import { env } from "node:process";
|
|
7
7
|
import { packageDirectory } from "pkg-dir";
|
|
8
8
|
import { createPublishingDetails } from "npm-pkgbuild";
|
|
9
|
-
import { prepare } from "../src/
|
|
9
|
+
import { prepare } from "../src/cli.mjs";
|
|
10
10
|
import { asArray } from "../src/utils.mjs";
|
|
11
11
|
|
|
12
12
|
const { root, args, options } = await prepare();
|
|
@@ -49,11 +49,13 @@ for (const name of args) {
|
|
|
49
49
|
options
|
|
50
50
|
);
|
|
51
51
|
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
52
|
+
if (!options.dry) {
|
|
53
|
+
await Promise.all(
|
|
54
|
+
publishingDetails.map(publishDetail =>
|
|
55
|
+
output.publish(artifact, publishDetail)
|
|
56
|
+
)
|
|
57
|
+
);
|
|
58
|
+
}
|
|
57
59
|
}
|
|
58
60
|
}
|
|
59
61
|
}
|
package/package.json
CHANGED
package/src/{cmd.mjs → cli.mjs}
RENAMED
|
@@ -11,6 +11,10 @@ export async function prepare() {
|
|
|
11
11
|
short: "v",
|
|
12
12
|
default: false
|
|
13
13
|
},
|
|
14
|
+
dry: {
|
|
15
|
+
type: "boolean",
|
|
16
|
+
default: false
|
|
17
|
+
},
|
|
14
18
|
publish: {
|
|
15
19
|
type: "string",
|
|
16
20
|
},
|
|
@@ -21,8 +25,7 @@ export async function prepare() {
|
|
|
21
25
|
},
|
|
22
26
|
output: {
|
|
23
27
|
type: "string",
|
|
24
|
-
short: "o"
|
|
25
|
-
// default: cwd()
|
|
28
|
+
short: "o"
|
|
26
29
|
}
|
|
27
30
|
},
|
|
28
31
|
allowPositionals: true
|
package/src/cluster.mjs
CHANGED
|
@@ -11,6 +11,7 @@ const ClusterTypeDefinition = {
|
|
|
11
11
|
priority: 0.7,
|
|
12
12
|
extends: Owner.typeDefinition,
|
|
13
13
|
properties: {
|
|
14
|
+
routerId: { type: "number", collection: false, writeable: true },
|
|
14
15
|
masters: { type: "network_interface", collection: true, writeable: true },
|
|
15
16
|
backups: { type: "network_interface", collection: true, writeable: true }
|
|
16
17
|
}
|
|
@@ -19,6 +20,7 @@ const ClusterTypeDefinition = {
|
|
|
19
20
|
export class Cluster extends Host {
|
|
20
21
|
#masters = new Set();
|
|
21
22
|
#backups = new Set();
|
|
23
|
+
routerId = 100;
|
|
22
24
|
|
|
23
25
|
static {
|
|
24
26
|
addType(this);
|
|
@@ -79,7 +81,7 @@ export class Cluster extends Host {
|
|
|
79
81
|
cfg.push(" virtual_ipaddress {");
|
|
80
82
|
cfg.push(` ${cluster.rawAddress}`);
|
|
81
83
|
cfg.push(" }");
|
|
82
|
-
cfg.push(
|
|
84
|
+
cfg.push(` virtual_router_id ${this.routerId}`);
|
|
83
85
|
cfg.push(" priority 255");
|
|
84
86
|
cfg.push(" advert_int 1");
|
|
85
87
|
cfg.push(" authentication {");
|
|
@@ -98,7 +100,6 @@ export class Cluster extends Host {
|
|
|
98
100
|
|
|
99
101
|
result.properties.name = name;
|
|
100
102
|
result.properties.dependencies = ["keepalived"];
|
|
101
|
-
result.properties.replaces = [`${this.typeName}-${this.owner.name}-${this.name}-${ni.host.name}`];
|
|
102
103
|
|
|
103
104
|
result.sources.push(
|
|
104
105
|
new FileContentProvider(packageStagingDir + "/")[Symbol.asyncIterator]()
|
package/types/cluster.d.mts
CHANGED
|
@@ -359,6 +359,11 @@ export class Cluster extends Host {
|
|
|
359
359
|
};
|
|
360
360
|
};
|
|
361
361
|
properties: {
|
|
362
|
+
routerId: {
|
|
363
|
+
type: string;
|
|
364
|
+
collection: boolean;
|
|
365
|
+
writeable: boolean;
|
|
366
|
+
};
|
|
362
367
|
masters: {
|
|
363
368
|
type: string;
|
|
364
369
|
collection: boolean;
|
|
@@ -371,6 +376,7 @@ export class Cluster extends Host {
|
|
|
371
376
|
};
|
|
372
377
|
};
|
|
373
378
|
};
|
|
379
|
+
routerId: number;
|
|
374
380
|
set masters(value: Set<any>);
|
|
375
381
|
get masters(): Set<any>;
|
|
376
382
|
set backups(value: Set<any>);
|