$ docker build -t quay.io/my-repositroy/my-plugin:latest .
You can deploy the plugin to an OKD cluster.
To deploy your plugin on a cluster, you need to build an image and push it to an image registry first.
Build the image with the following command:
$ docker build -t quay.io/my-repositroy/my-plugin:latest .
Optional: If you want to test your image, run the following command:
$ docker run -it --rm -d -p 9001:80 quay.io/my-repository/my-plugin:latest
Push the image by running the following command:
$ docker push quay.io/my-repository/my-plugin:latest
After pushing an image with your changes to a registry, you can deploy the plugin to a cluster using a Helm chart.
You must have the location of the image containing the plugin that was previously pushed.
|
You can specify additional parameters based on the needs of your plugin. The |
To deploy your plugin to a cluster, install a Helm chart with the name of the plugin as the Helm release name into a new namespace or an existing namespace as specified by the -n command-line option. Provide 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
Where:
n <my-plugin-namespace>Specifies an existing namespace to deploy your plugin into.
--create-namespaceOptional: If deploying to a new namespace, use this parameter.
--set plugin.image=my-plugin-image-locationSpecifies the location of the image within the plugin.image parameter.
|
If you are deploying on OKD 4.10 and later, it is recommended to exclude configurations related to pod security by adding the parameter |
Optional: You can specify any additional parameters by using the set of supported parameters in the charts/openshift-console-plugin/values.yaml file.
plugin:
name: ""
description: ""
image: ""
imagePullPolicy: IfNotPresent
replicas: 2
port: 9443
securityContext:
enabled: true
podSecurityContext:
enabled: true
runAsNonRoot: true
seccompProfile:
type: RuntimeDefault
containerSecurityContext:
enabled: true
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL
resources:
requests:
cpu: 10m
memory: 50Mi
basePath: /
certificateSecretName: ""
serviceAccount:
create: true
annotations: {}
name: ""
patcherServiceAccount:
create: true
annotations: {}
name: ""
jobs:
patchConsoles:
enabled: true
image: "registry.redhat.io/openshift4/ose-tools-rhel8@sha256:e44074f21e0cca6464e50cb6ff934747e0bd11162ea01d522433a1a1ae116103"
podSecurityContext:
enabled: true
runAsNonRoot: true
seccompProfile:
type: RuntimeDefault
containerSecurityContext:
enabled: true
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL
resources:
requests:
cpu: 10m
memory: 50Mi
View the list of enabled plugins by navigating from Administration → Cluster Settings → Configuration → Console operator.openshift.io → Console plugins or by visiting the Overview page.
|
It can take a few minutes for the new plugin configuration to appear. If you do not see your plugin, you might need to refresh your browser if the plugin was recently enabled. If you receive any errors at runtime, check the JS console in browser developer tools to look for any errors in your plugin code. |
If you need to make HTTP requests to an in-cluster service from your plugin, you can declare a service proxy in its ConsolePlugin resource by using the spec.proxy array field. The console backend exposes the /api/proxy/plugin/<plugin-name>/<proxy-alias>/<request-path>?<optional-query-parameters> endpoint to proxy the communication between the plugin and the service. A proxied request uses a service CA bundle by default. The service must use HTTPS.
|
The plugin must use the |
For each entry, you must specify an endpoint and alias of the proxy under the endpoint and alias fields. For the Service proxy type, you must set the endpoint type field to Service and the service must include values for the name, namespace, and port fields. For example, /api/proxy/plugin/helm/helm-charts/releases?limit=10 is a proxy request path from the helm plugin with a helm-charts service that lists ten helm releases.
apiVersion: console.openshift.io/v1
kind: ConsolePlugin
metadata:
name:<plugin-name>
spec:
proxy:
- alias: helm-charts
authorization: UserToken
caCertificate: '-----BEGIN CERTIFICATE-----\nMIID....'en
endpoint:
service:
name: <service-name>
namespace: <service-namespace>
port: <service-port>
type: Service
where:
spec.proxy.alias.helm-chartsAlias of the proxy.
spec.proxy.authorization.UserTokenIf the service proxy request must contain the logged-in user’s OKD access token, you must set the authorization field to UserToken.
|
If the service proxy request does not contain the logged-in user’s OKD access token, set the authorization field to |
spec.proxy.caCertificate.'-----BEGIN CERTIFICATE-----\nMIID....'enIf the service uses a custom service CA, the caCertificate field must contain the certificate bundle.
spec.proxy.endpointEndpoint of the proxy.
You can enable a dynamic plugin to extend the core web console with more features, such as additional pages, perspectives, or dashboard items. Use the OpenShift CLI (oc) after a scripted installation, such as an Operator or Helm-based install. Add the ConsolePlugin name to spec.plugins in the console Operator configuration (console.operator.openshift.io/cluster) so the web console loads it.
You logged in to the cluster as a user with cluster-admin privileges.
You installed the dynamic plugin using a scripted installation, such as an Operator or Helm chart.
A ConsolePlugin custom resource (CR) exists on the cluster.
Confirm the name of the ConsolePlugin resource by running the following command:
$ oc get consoleplugin
Optional: View details for a specific ConsolePlugin resource by running the following commands:
Set the plugin name as an environment variable:
$ PLUGIN_NAME="<plugin_name>"
where <plugin_name> is the name of the ConsolePlugin resource.
Verify the plugin details:
$ oc get consoleplugin "${PLUGIN_NAME}" -o yaml
The following example shows a ConsolePlugin YAML with the plugin listed in spec.plugins:
apiVersion: operator.openshift.io/v1
kind: Console
metadata:
name: cluster
spec:
plugins:
- <plugin_name>
# ...
Replace <plugin_name> with the name of your plugin.
Enable the dynamic plugin by adding the ConsolePlugin name to the console Operator configuration.
|
Make sure the Operator finishes installing the dynamic plugin before you run the following patch command. |
Set the plugin patch as an environment variable:
$ PLUGIN_PATCH=$(cat <<EOF
[
{
"op": "add",
"path": "/spec/plugins/-",
"value": "<plugin_name>"
}
]
EOF
)
Patch the console Operator configuration:
$ oc patch consoles.operator.openshift.io cluster --type=json -p "${PLUGIN_PATCH}"
Confirm that the console Operator configuration includes the ConsolePlugin name by running the following command:
$ oc get console.operator.openshift.io cluster -o jsonpath='{.spec.plugins}{"\n"}'
Refresh the OKD web console.
The console can take a few minutes to apply the updated configuration.
Console users can use the disable-plugins query parameter to disable specific or all dynamic plugins that would normally get loaded at run-time.
To disable a specific plugin(s), remove the plugin you want to disable from the comma-separated list of plugin names.
To disable all plugins, leave an empty string in the disable-plugins query parameter.
|
Cluster administrators can disable plugins in the Cluster Settings page of the web console. |