1.0.0 • Published 2 years ago
shomix-compute-test v1.0.0
Usage
The package exports SpheronComputeClient
class, which includes methods for working with clusters, marketplace apps, cluster instances and their configurations. The constructor of SpheronComputeClient
takes in one parameter token
. Check the Access Token section for information on how to create a token.
import SpheronComputeClient from "@spheron/compute";
...
const computeClient = new SpheronComputeClient({ token });
await computeClient.instance.create(
configuration: {
image: dockerImage,
tag: dockerImageTag,
instanceCount: numberOfInstances,
ports: [{ containerPort: containerPort, exposedPort: exposedPort }],
env: [{ key:"key", value: "value", isSecret: isSecret }],
commands: [],
args: [],
region: deployReegion,
machineImageName: machineType,
},
topicId: eventStreamSession,
clusterName: clusterName,
healthCheckUrl: healthCheckPath,
healthCheckPort: healthChekcPort,
}
);
For more information about the Compute methods, check out the DOCS
Access Token
To create the token
that is used with the SpheronComputeClient
, follow the instructions in the DOCS. When you are creating the tokens, please choose compute type in the dashboard.
Learn More
You can learn more about Spheron and Compute SDK here:
1.0.0
2 years ago