pmcf 1.59.13 → 1.60.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmcf",
3
- "version": "1.59.13",
3
+ "version": "1.60.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
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(" virtual_router_id 101");
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 {");
@@ -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>);