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 { RestApi } from '@eclipse-che/devworkspace-client';
import axios from 'axios';
const restApiClient = new RestApi(this.axios)
const workspaceApi = restApiClient.workspaceApi;
const promise = workspaceApi.getAllWorkspaces('my_namespace');
promise.then((workspaces) => {
});
Node side using @kubernetes/client-node:
import 'reflect-metadata';
import { container, INVERSIFY_TYPES } from '@eclipse-che/devworkspace-client';
const devWorkspaceClient = container.get(INVERSIFY_TYPES.IDevWorkspaceClient);
const nodeApi = devWorkspaceClient.getNodeApi({
inCluster: false
});
const workspaceApi = nodeApi.workspaceApi;
const promise = workspaceApi.listInNamespace('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