This broker runs as an init container on the workspace pod. Its job is to take in a list of plugin identifiers (either references to a plugin in the registry or a link to a plugin meta.yaml) and ensure that the correct .vsix and .theia extenions are downloaded into the /plugins
directory, for each plugin requested for the workspace.
This broker must be run prior to starting the workspace's pod, as its job is to provision required containers, volumes, and environment variables for the workspace to be able to start with the installed plugins enabled.
Mocks are generated from interfaces using library mockery To add new mock implementation for an interface or regenerate to an existing one use following command when current dir is location of the folder containing the interface:
mockery -name=NameOfAnInterfaceToMock
There is a Makefile included in the repo to make building and testing the code easier:
make target | function |
---|---|
make ci |
Run CI tests in docker |
make build |
Build all code |
make build-artifacts |
Build only the artifacts broker, as binary plugin-artifacts-broker in the root of this repo |
make build-metadata |
Build only the metadata broker, as binary plugin-metadata-broekr in the root of this repo |
make test |
Run all tests in repo |
make lint |
Run golangci-lint on repo |
make fmt |
Run go fmt on all .go files |
make build-docker-artifacts |
Build eclipse/che-plugin-artifacts-broker image |
make build-docker-metadata |
Build eclipse/che-plugin-metadata-broker image |
test-metadata |
Build and run metadata broker locally, using plugin ids from brokers/testdata/config-plugin-ids.json ; prints output to stdout |
test-artifacts |
Build and run artifacts broker locally, using plugin ids from brokers/testdata/config-plugin-ids.json ; downloads all extensions to /plugins locally (directory must be writable, e.g. via a softlink to a user-writable directory) |
For more information, view the targets in the Makefile.
The following CentOS CI jobs are associated with the repository:
master
- builds CentOS images on each commit to themaster
branch and pushes them to quay.io.nightly
- builds CentOS images and pushes them to quay.io on a daily basis from themaster
branch.release
- builds CentOS and corresponding RHEL images from therelease
branch. CentOS images are public and pushed to quay.io. RHEL images are also pushed to quay.io, but to the private repositories.