DevWorkspace Client
The DevWorkspace Client is a library for interacting with DevWorkspaces on your cluster. Both browser and node support are available. The browser side code uses the kubernetes api directly and the node side uses @kubernetes/client-node.
Examples
Browser side using kubernetes Rest API:
import { DevWorkspaceClient } from '@eclipse-che/devworkspace-client';
import axios from 'axios';
const restApiClient = DevWorkspaceClient.getRestApi();
const workspaceApi = restApiClient.workspaceApi;
const promise = workspaceApi.getAllWorkspaces('my_namespace');
promise.then((workspaces) => {
});
Node side using @kubernetes/client-node:
import { DevWorkspaceClient } from '@eclipse-che/devworkspace-client';
const restApiClient = DevWorkspaceClient.getNodeApi();
const workspaceApi = restApiClient.workspaceApi;
const promise = workspaceApi.getAllWorkspaces('my_namespace');
promise.then((workspaces) => {
});
Developer support
Getting Started
- Install prerequisite tooling:
- Install dependencies
- Build the project
- To test the project
Integration tests
Integration tests can be run locally by using export INTEGRATION_TESTS=true
. Refer to the Environment variables section to learn more.
The devworkspace-controller must be on the cluster before running the integration tests.
Environment variables
INTEGRATION_TESTS
: When the INTEGRATION_TESTS environment variable is defined and it's value is true, the integration tests will run against your currently authenticated cluster.
License
EPL-2