From 36e2df9e8ed2f81917a406970ff4935a1aa61e06 Mon Sep 17 00:00:00 2001 From: Lucas Koontz Date: Tue, 28 Nov 2023 23:46:44 -0500 Subject: [PATCH] docs(README): add value to worker readme --- charts/prefect-worker/README.md | 1 + charts/prefect-worker/values.schema.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/charts/prefect-worker/README.md b/charts/prefect-worker/README.md index 417d4802..8885a92c 100644 --- a/charts/prefect-worker/README.md +++ b/charts/prefect-worker/README.md @@ -246,6 +246,7 @@ helm install prefect-worker prefect/prefect-worker -f values.yaml --set-file wor | worker.cloudApiConfig.cloudUrl | string | `"https://api.prefect.cloud/api"` | prefect cloud API url; the full URL is constructed as https://cloudUrl/accounts/accountId/workspaces/workspaceId | | worker.cloudApiConfig.workspaceId | string | `""` | prefect workspace ID | | worker.clusterUid | string | `""` | unique cluster identifier, if none is provided this value will be infered at time of helm install | +| worker.config.baseJobTemplateName | string | `nil` | Name for the base job template. If unspecified, Prefect will use the default base job template name for the given worker type. | | worker.config.baseJobTemplate | string | `nil` | JSON formatted base job template. If unspecified, Prefect will use the default base job template for the given worker type. If the work pool already exists, this will be ignored. | | worker.config.http2 | bool | `true` | connect using HTTP/2 if the server supports it (experimental) | | worker.config.installPolicy | string | `"prompt"` | install policy to use workers from Prefect integration packages. | diff --git a/charts/prefect-worker/values.schema.json b/charts/prefect-worker/values.schema.json index b74df9aa..e1a07a88 100644 --- a/charts/prefect-worker/values.schema.json +++ b/charts/prefect-worker/values.schema.json @@ -155,7 +155,7 @@ "baseJobTemplateName": { "type": ["string", "null"], "title": "Base Job Template Name", - "description": "Template name of the base job template. If unspecified, Prefect will use the default base job template name for the given worker type..", + "description": "Template name of the base job template. If unspecified, Prefect will use the default base job template name for the given worker type.", "form": true }, "baseJobTemplate": {