|
|
il y a 4 ans | |
|---|---|---|
| src | il y a 4 ans | |
| .eslintrc.yml | il y a 4 ans | |
| .gitignore | il y a 4 ans | |
| .prettierrc.yml | il y a 4 ans | |
| Dockerfile | il y a 4 ans | |
| LICENSE | il y a 4 ans | |
| README.md | il y a 4 ans | |
| console-extensions.json | il y a 4 ans | |
| package.json | il y a 4 ans | |
| template.yaml | il y a 4 ans | |
| tsconfig.json | il y a 4 ans | |
| webpack.config.ts | il y a 4 ans | |
| yarn.lock | il y a 4 ans |
This project is a minimal template for writing a new OpenShift Console dynamic plugin. It requires OpenShift 4.10.
Node.js and yarn are required to build and run the example.
After cloning this repo, you should update the plugin metadata such as the
plugin name in the consolePlugin declaration of package.json.
yarn installyarn run startThe server runs on port 9001 with CORS enabled.
See the plugin development section in Console Dynamic Plugins README for details on how to run OpenShift console using local plugins.
When a local console server is running, visit http://localhost:9000/example to see the example plugin page.
Build the image:
docker build -t quay.io/my-repositroy/my-plugin:latest .
Run the image:
docker run -it --rm -d -p 9001:80 quay.io/my-repository/my-plugin:latest
Push the image to the image registry:
docker push quay.io/my-repository/my-plugin:latest
After pushing an image with your changes to an image registry, you can deploy the plugin to a cluster by instantiating the template:
oc process -f template.yaml \
-p PLUGIN_NAME=my-plugin \
-p NAMESPACE=my-plugin-namespace \
-p IMAGE=quay.io/my-repository/my-plugin:latest \
| oc create -f -
The PLUGIN_NAME value must match the plugin name you used in the
consolePlugin declaration of package.json.
Once deployed, patch the Console operator config to enable the plugin.
oc patch consoles.operator.openshift.io cluster \
--patch '{ "spec": { "plugins": ["my-plugin"] } }' --type=merge