Skip to content

Commit 936c099

Browse files
sync docs
1 parent a0b632e commit 936c099

2 files changed

Lines changed: 8 additions & 6 deletions

File tree

pages/api-reference/kubernetes/agent-api-reference.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ _Appears in:_
271271
| `bootstrapScript` _string_ | BootstrapScript is a bash script that will be executed inside the cloned repository<br />directory before the coding agent starts. It can be used to install dependencies,<br />configure tooling, or perform any other setup required by the agent. | | Optional: \{\} <br /> |
272272
| `git` _[GitSpec](#gitspec)_ | Git configure commit signing on agent run. When provided, the runtime will be configured to sign git commits using the provided key reference. | | |
273273
| `babysitInterval` _[Duration](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.29/#duration-v1-meta)_ | BabysitInterval configures the interval for the operator to check on the health of the agent runtime and perform necessary babysitting actions (e.g. restarting unhealthy runtimes). When not provided, a default interval of 1 minute will be used. | | |
274-
| `exaMcpServers` _[ExaMcpServerConfig](#examcpserverconfig) array_ | ExaMcpServers defines external MCP servers that the agent runtime should connect to. When provided, the runtime will be configured to connect to these external MCP servers for tool and action execution. | | |
274+
| `exaConnection` _[ExaConnection](#exaconnection)_ | ExaConnection enables Exa web search and content retrieval tools on the Plural MCP server. | | |
275275

276276

277277
#### Binding
@@ -561,7 +561,7 @@ _Appears in:_
561561

562562

563563

564-
#### ExaMcpServerConfig
564+
#### ExaConnection
565565

566566

567567

@@ -574,9 +574,9 @@ _Appears in:_
574574

575575
| Field | Description | Default | Validation |
576576
| --- | --- | --- | --- |
577-
| `name` _string_ | | | |
578-
| `url` _string_ | | | |
579-
| `apiKey` _[SecretKeySelector](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.29/#secretkeyselector-v1-core)_ | | | |
577+
| `url` _string_ | URL is the Exa API base URL. Defaults to https://api.exa.ai when unset. | | Optional: \{\} <br /> |
578+
| `apiKeySecretRef` _[SecretKeySelector](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.29/#secretkeyselector-v1-core)_ | ApiKeySecretRef references a Secret containing the Exa API key. | | Optional: \{\} <br /> |
579+
| `proxyUrl` _string_ | ProxyURL is an HTTP proxy URL used for Exa API requests. | | Optional: \{\} <br /> |
580580

581581

582582

pages/api-reference/kubernetes/management-api-reference.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4417,6 +4417,7 @@ _Appears in:_
44174417
| `tags` _object (keys:string, values:string)_ | the cluster tags to select where to run this job | | Optional: \{\} <br /> |
44184418
| `rerunFailures` _boolean_ | RerunFailures when true, failed tests will be rerun (e.g. to reduce flakiness). Defaults to false. | | Optional: \{\} <br /> |
44194419
| `rerunFailuresCount` _integer_ | RerunFailuresCount is the number of times to rerun failed tests when RerunFailures is true. Defaults to 2. | | Optional: \{\} <br /> |
4420+
| `postrunScript` _string_ | PostrunScript is a script to run after the integration test job completes. | | Optional: \{\} <br /> |
44204421
| `repositoryRef` _[ObjectReference](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.29/#objectreference-v1-core)_ | RepositoryRef references a Git repository to use for this integration test. | | Optional: \{\} <br /> |
44214422
| `git` _[GitRef](#gitref)_ | The git location to use for this integration test. | | Optional: \{\} <br /> |
44224423
| `default` _[SentinelCheckIntegrationTestDefault](#sentinelcheckintegrationtestdefault)_ | Default configures default test cases and global behavior (e.g. namespace labels and annotations for created resources). | | Optional: \{\} <br /> |
@@ -4694,6 +4695,7 @@ _Appears in:_
46944695

46954696
_Appears in:_
46964697
- [ServiceSpec](#servicespec)
4698+
- [ServiceTemplate](#servicetemplate)
46974699

46984700
| Field | Description | Default | Validation |
46994701
| --- | --- | --- | --- |
@@ -4874,7 +4876,7 @@ _Appears in:_
48744876
| `helm` _[ServiceHelm](#servicehelm)_ | Helm defines Helm-specific settings for deploying Helm charts as part of this service.<br />This includes chart specifications, values files, repository references,<br />and Helm-specific deployment options. | | Optional: \{\} <br /> |
48754877
| `kustomize` _[ServiceKustomize](#servicekustomize)_ | Kustomize defines Kustomize-specific settings for manifest customization.<br />This enables sophisticated YAML manipulation and configuration overlay<br />capabilities for complex deployment scenarios. | | Optional: \{\} <br /> |
48764878
| `syncConfig` _[SyncConfigAttributes](#syncconfigattributes)_ | SyncConfig defines advanced synchronization settings for the service deployment.<br />This includes options for namespace management, drift detection configuration,<br />and deployment behavior customization. | | Optional: \{\} <br /> |
4877-
| `dependencies` _[ObjectReference](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.29/#objectreference-v1-core) array_ | Dependencies specify other services that must be healthy before this service is deployed.<br />This ensures proper deployment ordering and dependency resolution<br />within the managed namespace. | | Optional: \{\} <br /> |
4879+
| `dependencies` _[ServiceDependency](#servicedependency) array_ | Dependencies specify services that must be healthy before this service can be deployed. | | Optional: \{\} <br /> |
48784880
| `configurationRef` _[SecretReference](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.29/#secretreference-v1-core)_ | ConfigurationRef references a Kubernetes Secret containing service-specific configuration.<br />This secret should contain key-value pairs that will be made available<br />to the service for runtime configuration and secrets management. | | Optional: \{\} <br /> |
48794881
| `configuration` _object (keys:string, values:string)_ | Configuration provides a set of non-secret service-specific configuration values.<br />These key-value pairs are useful for templating and can be referenced<br />in manifest templates for environment-specific customization. | | Optional: \{\} <br /> |
48804882
| `sources` _[Source](#source) array_ | Sources specify additional Git repositories or locations to source manifests from.<br />This enables multi-repository deployments and complex source composition<br />for sophisticated application architectures. | | Optional: \{\} <br /> |

0 commit comments

Comments
 (0)