You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ A Kubernetes operator for Kubernetes built with [Operator SDK](https://github.co
13
13
-[Deploy an `AnsibleAIConnect` instance](#deploy-an-ansibleaiconnect-instance)
14
14
-[Deploying on OpenShift](#deploying-on-openshift)
15
15
-[Deploying on `minikube`](#deploying-on-minikube)
16
-
-[Deploy an `AnsibleMCPServer` instance](#deploy-an-ansiblemcpserver-instance)
16
+
-[Deploy an `AnsibleMCPConnect` instance](#deploy-an-ansiblemcpconnect-instance)
17
17
-[Upgrades](#upgrades)
18
18
-[Integrating with Ansible Automation Platform and IBM watsonx Code Assistant](#integrating-with-ansible-automation-platform-and-ibm-watsonx-code-assistant)
19
19
-[Advanced Configuration for `AnsibleAIConnect`](#advanced-configuration-for-ansibleaiconnect)
@@ -24,7 +24,7 @@ A Kubernetes operator for Kubernetes built with [Operator SDK](https://github.co
These are [provisioned](https://docs.openshift.com/rosa/storage/persistent_storage/persistent-storage-aws.html) by OpenShift ROSA.
176
176
177
-
## Create an `AnsibleMCPServer` instance
177
+
## Create an `AnsibleMCPConnect` instance
178
178
179
179
The Ansible MCP (Model Context Protocol) Server can be deployed alongside the `AnsibleAIConnect` instance to provide MCP functionality.
180
180
181
181
### Using Operator Lifecycle Management
182
182
183
-
If the Operator was installed using the Operator Lifecycle Manager's `Catalog`, you can create an `AnsibleMCPServer` instance through the OpenShift console using the Operator's UI components.
183
+
If the Operator was installed using the Operator Lifecycle Manager's `Catalog`, you can create an `AnsibleMCPConnect` instance through the OpenShift console using the Operator's UI components.
184
184
185
185
### Using the CLI
186
186
187
-
To create an `AnsibleMCPServer` instance using the CLI:
187
+
To create an `AnsibleMCPConnect` instance using the CLI:
188
188
189
189
1. Create a file `mcpserver.yaml` with the following content:
190
190
191
191
```yaml
192
192
apiVersion: mcpserver.ansible.com/v1alpha1
193
-
kind: AnsibleMCPServer
193
+
kind: AnsibleMCPConnect
194
194
metadata:
195
195
name: my-mcpserver
196
196
namespace: <target-namespace>
@@ -210,15 +210,15 @@ spec:
210
210
kubectl apply -f mcpserver.yaml
211
211
```
212
212
213
-
3. Once deployed, the `AnsibleMCPServer` instance will be accessible by running:
213
+
3. Once deployed, the `AnsibleMCPConnect` instance will be accessible by running:
214
214
215
215
```bash
216
216
oc get route -n <target-namespace> my-mcpserver
217
217
```
218
218
219
219
### Configuration Options
220
220
221
-
Key configuration options for the `AnsibleMCPServer` include:
221
+
Key configuration options for the `AnsibleMCPConnect` include:
222
222
223
223
- `public_base_url`: **Required.** The URL of your Ansible Automation Platform
224
224
- `allow_write_operations` : Enable tools that support modification and data changes (using POST, DELETE, and PATCH methods). (default: `false`)
0 commit comments