# Openshift

## Install KubeMQ operator

### Find KubeMQ Operator

1. Open Operators/OperatorHub
2. Goto Streaming & Messaging
3. Type KubeMQ in search box
4. Click on Kubemq Enterprise Operator

![](/files/-MN7uO4KOISDeStqBVP0)

### Install KubeMQ Operator

1. Set Installation mode to A specific namespace on the cluster
2. Set the namespace
3. Click Subscribe

![](/files/-MN7ukXZjYXcgzz-xyKZ)

### Verify Operator Installation

![](/files/-MN7vRR5EAR_vqm8ZWPG)

![](/files/-MN7vUVuCHKuKuEfQ8zO)

### Install KubeMQ Connector

1. Click On Kubemq Connector&#x20;
2. Click on Create KubemqConnector
3. Click on Configure via YAML View
4. A yaml editor will open with default configuration will open
5. Select one of the configurations below

#### Create Targets Connector

```yaml
apiVersion: core.k8s.kubemq.io/v1alpha1
kind: KubemqConnector
metadata:
  name: kubemq-targets
spec:
  type: targets
  config: |-
    bindings: null
```

#### Create Sources Connector

```yaml
apiVersion: core.k8s.kubemq.io/v1alpha1
kind: KubemqConnector
metadata:
  name: kubemq-sources
spec:
  type: sources
  config: |-
    bindings: null
```

#### Create Bridges Connector

```yaml
apiVersion: core.k8s.kubemq.io/v1alpha1
kind: KubemqConnector
metadata:
  name: kubemq-bridges
spec:
  type: bridges
  config: |-
    bindings: null
```

6\. Click Create

![](/files/-MN85C0KjV3ffGncrdwW)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.kubemq.io/getting-started/create-connector/openshift.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
