@highstate/library 0.16.0 → 0.18.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/dist/highstate.library.msgpack +0 -0
- package/dist/index.js +9 -1
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
- package/src/wireguard.ts +7 -0
|
Binary file
|
package/dist/index.js
CHANGED
|
@@ -5487,7 +5487,15 @@ var nodeK8s = defineUnit({
|
|
|
5487
5487
|
This prevents other peers from reaching these destination CIDRs while still allowing
|
|
5488
5488
|
the peers in those CIDRs to access the internet and other allowed endpoints.
|
|
5489
5489
|
|
|
5490
|
-
Useful for peer isolation where you want to prevent cross-peer communication.`)
|
|
5490
|
+
Useful for peer isolation where you want to prevent cross-peer communication.`),
|
|
5491
|
+
/**
|
|
5492
|
+
* Whether to allow traffic to all pods inside the cluster from the WireGuard node.
|
|
5493
|
+
*
|
|
5494
|
+
* By default, is false.
|
|
5495
|
+
*/
|
|
5496
|
+
allowClusterPods: $addArgumentDescription(z.boolean().default(false), `Whether to allow traffic to all pods inside the cluster from the WireGuard node.
|
|
5497
|
+
|
|
5498
|
+
By default, is false.`)
|
|
5491
5499
|
},
|
|
5492
5500
|
inputs: {
|
|
5493
5501
|
identity: identityEntity,
|