Sem descrição

Mylanos 5c01b0c115 Added i18next parser config file, put all string in the example page into i18n hook, generated locale files há 3 anos atrás
.devcontainer d4e799fb32 add vscode remote container infra há 4 anos atrás
.vscode c6c2f122d1 chore: JSON lint há 3 anos atrás
charts cc9bd2326a CONSOLE-3349: Update plugin template with ConsolePlugin v1 API changes há 3 anos atrás
i18n-scripts 5c01b0c115 Added i18next parser config file, put all string in the example page into i18n hook, generated locale files há 3 anos atrás
integration-tests d937490c47 fix-ci-failing-test há 3 anos atrás
locales 5c01b0c115 Added i18next parser config file, put all string in the example page into i18n hook, generated locale files há 3 anos atrás
src 5c01b0c115 Added i18next parser config file, put all string in the example page into i18n hook, generated locale files há 3 anos atrás
.ci-operator.yaml e47297810e update ci operator nodejs-16 há 3 anos atrás
.eslintrc.yml e9fb978540 initial commit há 4 anos atrás
.gitignore eb7bb819a4 OCPBUGS-10850: Enable source maps for typescript há 3 anos atrás
.prettierrc.yml e9fb978540 initial commit há 4 anos atrás
.stylelintrc.yaml fcdff48030 chore: upgrade to latest minor há 3 anos atrás
Dockerfile b65c9a2d92 copy-artifects-target há 3 anos atrás
LICENSE e9fb978540 initial commit há 4 anos atrás
OWNERS 29ea437be0 chore: initial OWNERS file há 3 anos atrás
README.md f487b7d7b5 Fix typo in `README.md` há 3 anos atrás
console-extensions.json e9fb978540 initial commit há 4 anos atrás
ct.yaml 5adad99c46 Added Helm chart to install plugin há 4 anos atrás
i18next-parser.config.js 5c01b0c115 Added i18next parser config file, put all string in the example page into i18n hook, generated locale files há 3 anos atrás
install_helm.sh bc406962dd Setup and config Cypress há 3 anos atrás
package-lock.json 5c01b0c115 Added i18next parser config file, put all string in the example page into i18n hook, generated locale files há 3 anos atrás
package.json 5c01b0c115 Added i18next parser config file, put all string in the example page into i18n hook, generated locale files há 3 anos atrás
start-console.sh 1b68e045da fix: don't fail if monitoring or gitops are not installed há 4 anos atrás
test-prow-e2e.sh 4ecb88d960 fix login and logout issue in CI há 3 anos atrás
tsconfig.json eb7bb819a4 OCPBUGS-10850: Enable source maps for typescript há 3 anos atrás
webpack.config.ts 18cbfef2c1 Update webpack.config.ts há 3 anos atrás
yarn.lock 5c01b0c115 Added i18next parser config file, put all string in the example page into i18n hook, generated locale files há 3 anos atrás

README.md

OpenShift Console Plugin Template

This project is a minimal template for writing a new OpenShift Console dynamic plugin.

Dynamic plugins allow you to extend the OpenShift UI at runtime, adding custom pages and other extensions. They are based on webpack module federation. Plugins are registered with console using the ConsolePlugin custom resource and enabled in the console operator config by a cluster administrator.

Using the latest v1 API version of ConsolePlugin CRD, requires OpenShift 4.12 and higher. For using old v1alpha1 API version us OpenShift version 4.10 or 4.11.

For an example of a plugin that works with OpenShift 4.11, see the release-4.11 branch. For a plugin that works with OpenShift 4.10, see the release-4.10 branch.

Node.js and yarn are required to build and run the example. To run OpenShift console in a container, either Docker or podman 3.2.0+ and oc are required.

Getting started

After cloning this repo, you should update the plugin metadata such as the plugin name in the consolePlugin declaration of package.json.

"consolePlugin": {
  "name": "my-plugin",
  "version": "0.0.1",
  "displayName": "My Plugin",
  "description": "Enjoy this shiny, new console plugin!",
  "exposedModules": {
    "ExamplePage": "./components/ExamplePage"
  },
  "dependencies": {
    "@console/pluginAPI": "*"
  }
}

The template adds a single example page in the Home navigation section. The extension is declared in the console-extensions.json file and the React component is declared in src/components/ExamplePage.tsx.

You can run the plugin using a local development environment or build an image to deploy it to a cluster.

Development

Option 1: Local

In one terminal window, run:

  1. yarn install
  2. yarn run start

In another terminal window, run:

  1. oc login (requires oc and an OpenShift cluster)
  2. yarn run start-console (requires Docker or podman 3.2.0+)

This will run the OpenShift console in a container connected to the cluster you've logged into. The plugin HTTP server runs on port 9001 with CORS enabled. Navigate to http://localhost:9000/example to see the running plugin.

Running start-console with Apple silicon and podman

If you are using podman on a Mac with Apple silicon, yarn run start-console might fail since it runs an amd64 image. You can workaround the problem with qemu-user-static by running these commands:

podman machine ssh
sudo -i
rpm-ostree install qemu-user-static
systemctl reboot

Option 2: Docker + VSCode Remote Container

Make sure the Remote Containers extension is installed. This method uses Docker Compose where one container is the OpenShift console and the second container is the plugin. It requires that you have access to an existing OpenShift cluster. After the initial build, the cached containers will help you start developing in seconds.

  1. Create a dev.env file inside the .devcontainer folder with the correct values for your cluster:

    OC_PLUGIN_NAME=my-plugin
    OC_URL=https://api.example.com:6443
    OC_USER=kubeadmin
    OC_PASS=<password>
    
  2. (Ctrl+Shift+P) => Remote Containers: Open Folder in Container...

  3. yarn run start

  4. Navigate to http://localhost:9000/example

Docker image

Before you can deploy your plugin on a cluster, you must build an image and push it to an image registry.

  1. Build the image:

    docker build -t quay.io/my-repository/my-plugin:latest .
    
  2. Run the image:

    docker run -it --rm -d -p 9001:80 quay.io/my-repository/my-plugin:latest
    
  3. Push the image:

    docker push quay.io/my-repository/my-plugin:latest
    

NOTE: If you have a Mac with Apple silicon, you will need to add the flag --platform=linux/amd64 when building the image to target the correct platform to run in-cluster.

Deployment on cluster

A Helm chart is available to deploy the plugin to an OpenShift environment.

The following Helm parameters are required:

plugin.image: The location of the image containing the plugin that was previously pushed

Additional parameters can be specified if desired. Consult the chart values file for the full set of supported parameters.

Installing the Helm Chart

Install the chart using the name of the plugin as the Helm release name into a new namespace or an existing namespace as specified by the my-plugin-namespace parameter and providing the location of the image within the plugin.image parameter by using the following command:

helm upgrade -i  my-plugin charts/openshift-console-plugin -n my-plugin-namespace --create-namespace --set plugin.image=my-plugin-image-location

NOTE: When deploying on OpenShift 4.10, it is recommended to add the parameter --set plugin.securityContext.enabled=false which will omit configurations related to Pod Security.

Linting

This project adds prettier, eslint, and stylelint. Linting can be run with yarn run lint.

The stylelint config disallows hex colors since these cause problems with dark mode (starting in OpenShift console 4.11). You should use the PatternFly global CSS variables for colors instead.

The stylelint config also disallows naked element selectors like table and .pf- or .co- prefixed classes. This prevents plugins from accidentally overwriting default console styles, breaking the layout of existing pages. The best practice is to prefix your CSS classnames with your plugin name to avoid conflicts. Please don't disable these rules without understanding how they can break console styles!

Reporting

Steps to generate reports

  1. In command prompt, navigate to root folder and execute the command yarn run cypress-merge
  2. Then execute command yarn run cypress-generate The cypress-report.html file is generated and should be in (/integration-tests/screenshots) directory

References