Update wiki Home page for elasticsearch-search-source

gitea_admin 2026-03-11 14:36:01 +00:00
parent 364a72087e
commit fc6aa4d70b

46
Home.md

@ -1,21 +1,39 @@
# Deploy the Project on CamelX Platform # ElasticSearch Search Source
Deploy on CamelX Platform in three steps Search data on ElasticSearch
## Step 1: Create a release The `query` parameter must be formatted in JSON.
From the project space, click on **"Create a release"**
The new version is automatically available in the list If you specify the `certificate` property, you must base64 encode it before you pass it as a parameter.
## Step 2: Deploy ## Metadata
Click on **"Deploy"**
- **Version:** Select the desired release | Property | Value |
- **Environment:** Choose `Development`, `Staging`, or `Production` |----------|-------|
- **Configuration:** Select the configuration source | Type | source |
- **Resources:** Set CPU and Memory | Group | ElasticSearch |
| Namespace | Search |
| Support Level | Stable |
| Provider | Apache Software Foundation |
## Step 3: Expose ## Properties
Enable **"Expose"**
Choose an **API Gateway** (Internal, Public, etc.) | Name | Type | Required | Default | Description |
|------|------|----------|---------|-------------|
| `period` | integer | | `1000` | The time interval between two searches |
| `query` | string | ✓ | | The query we want to use to search on ElasticSearch. |
| `user` | string | | | Username to connect to ElasticSearch. |
| `password` | string | | | Password to connect to ElasticSearch. |
| `enableSSL` | boolean | | `true` | Do we want to connect using SSL? |
| `hostAddresses` | string | ✓ | | Comma separated list with ip:port formatted remote transport addresses to use. |
| `indexName` | string | ✓ | | The name of the index to act against. |
| `clusterName` | string | ✓ | | The name of the cluster. |
| `certificate` | string | | | The Certificate for accessing the Elasticsearch cluster. You must encode this value in base64. |
## Dependencies
- `camel:core`
- `camel:kamelet`
- `camel:timer`
- `camel:elasticsearch`
- `camel:gson`