@highstate/library 0.17.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 +1 -1
- package/src/wireguard.ts +7 -0
package/package.json
CHANGED
package/src/wireguard.ts
CHANGED
|
@@ -576,6 +576,13 @@ export const nodeK8s = defineUnit({
|
|
|
576
576
|
* Useful for peer isolation where you want to prevent cross-peer communication.
|
|
577
577
|
*/
|
|
578
578
|
forwardRestrictedSubnets: z.string().array().default([]),
|
|
579
|
+
|
|
580
|
+
/**
|
|
581
|
+
* Whether to allow traffic to all pods inside the cluster from the WireGuard node.
|
|
582
|
+
*
|
|
583
|
+
* By default, is false.
|
|
584
|
+
*/
|
|
585
|
+
allowClusterPods: z.boolean().default(false),
|
|
579
586
|
},
|
|
580
587
|
|
|
581
588
|
inputs: {
|