@norskvideo/ctl-commands 0.1.5 → 0.1.7
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/commands.d.ts +4 -0
- package/package.json +1 -1
package/commands.d.ts
CHANGED
|
@@ -87,6 +87,10 @@ export interface InstanceLaunchTemplateOpts {
|
|
|
87
87
|
/** Raw `SPEC` / `SPEC@service` flag values; parsed into HostPort[] by the coercer. */
|
|
88
88
|
hostPorts?: string[];
|
|
89
89
|
hardware?: HardwareProfile;
|
|
90
|
+
/** Launch binding no host ports — every service's compose `ports:` is
|
|
91
|
+
* stripped, so the instance is reachable only over norsk-net. Renders as the
|
|
92
|
+
* bare `--no-publish` flag. */
|
|
93
|
+
noPublish?: boolean;
|
|
90
94
|
sidecars?: string[];
|
|
91
95
|
/** Operator environment overrides — compose files setting `environment` /
|
|
92
96
|
* `env_file` on services that already exist. Separate from `sidecars`,
|