Compare commits

...

2 Commits

Author SHA1 Message Date
mbecker20
655a149f48 Update deployments description 2026-03-15 23:33:33 -07:00
mbecker20
3867305a2e example execute terminal uses bash 2026-03-15 17:21:36 -07:00
2 changed files with 3 additions and 5 deletions

View File

@@ -113,7 +113,7 @@ So in v1 Action:
await komodo.write("CreateTerminal", {
server: "my-server",
name: "my-terminal",
command: "sh",
command: "bash",
recreate: "Always",
});
await komodo.execute_terminal(
@@ -131,7 +131,7 @@ await komodo.execute_server_terminal(
server: "my-server",
terminal: "my-terminal",
command: "ls -l",
init: { command: "sh", recreate: "Always" },
init: { command: "bash", recreate: "Always" },
},
{ onLine: (line) => console.log(line) },
);

View File

@@ -80,9 +80,7 @@ export const DeploymentComponents: RequiredResourceComponents<
];
},
Description: () => (
<>Connect deployments for alerting, building, and deploying.</>
),
Description: () => <>Deploy individual containers and swarm services.</>,
New: (props) => <NewResourceWithDeployTarget type="Deployment" {...props} />,