This is an automated email from the ASF dual-hosted git repository.

kfaraz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/druid.git


The following commit(s) were added to refs/heads/master by this push:
     new 4b293fc2a93 Docs: Fix k8s dynamic config URL (#16720)
4b293fc2a93 is described below

commit 4b293fc2a937da64cee8c1cd257a3ce85e333884
Author: YongGang <[email protected]>
AuthorDate: Wed Jul 10 21:35:47 2024 -0700

    Docs: Fix k8s dynamic config URL (#16720)
---
 docs/development/extensions-contrib/k8s-jobs.md | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/docs/development/extensions-contrib/k8s-jobs.md 
b/docs/development/extensions-contrib/k8s-jobs.md
index 082b8735349..913e40b9373 100644
--- a/docs/development/extensions-contrib/k8s-jobs.md
+++ b/docs/development/extensions-contrib/k8s-jobs.md
@@ -62,7 +62,7 @@ Returns a JSON object with the dynamic configuration 
properties.
 
 ##### URL
 
-`GET` `/druid/indexer/v1/k8s/taskRunner/executionConfig`
+`GET` `/druid/indexer/v1/k8s/taskrunner/executionconfig`
 
 ##### Responses
 
@@ -85,14 +85,14 @@ Returns a JSON object with the dynamic configuration 
properties.
 <TabItem value="2" label="cURL">
 
 ```shell
-curl 
"http://ROUTER_IP:ROUTER_PORT/druid/indexer/v1/k8s/taskRunner/executionConfig";
+curl 
"http://ROUTER_IP:ROUTER_PORT/druid/indexer/v1/k8s/taskrunner/executionconfig";
 ```
 </TabItem>
 
 <TabItem value="3" label="HTTP">
 
 ```HTTP
-GET /druid/indexer/v1/k8s/taskRunner/executionConfig HTTP/1.1
+GET /druid/indexer/v1/k8s/taskrunner/executionconfig HTTP/1.1
 Host: http://ROUTER_IP:ROUTER_PORT
 ```
 
@@ -134,7 +134,7 @@ Updates the dynamic configuration for the Kubernetes Task 
Runner
 
 ##### URL
 
-`POST` `/druid/indexer/v1/k8s/taskRunner/executionConfig`
+`POST` `/druid/indexer/v1/k8s/taskrunner/executionconfig`
 
 ##### Header parameters
 
@@ -169,7 +169,7 @@ The endpoint supports the following optional header 
parameters to populate the `
 
 
 ```shell
-curl 
"http://ROUTER_IP:ROUTER_PORT/druid/indexer/v1/k8s/taskRunner/executionConfig"; \
+curl 
"http://ROUTER_IP:ROUTER_PORT/druid/indexer/v1/k8s/taskrunner/executionconfig"; \
 --header 'Content-Type: application/json' \
 --data '{
   "type": "default",
@@ -199,7 +199,7 @@ curl 
"http://ROUTER_IP:ROUTER_PORT/druid/indexer/v1/k8s/taskRunner/executionConf
 
 
 ```HTTP
-POST /druid/indexer/v1/k8s/taskRunner/executionConfig HTTP/1.1
+POST /druid/indexer/v1/k8s/taskrunner/executionconfig HTTP/1.1
 Host: http://ROUTER_IP:ROUTER_PORT
 Content-Type: application/json
 
@@ -240,7 +240,7 @@ an empty array if there are no history records available.
 
 ##### URL
 
-`GET` `/druid/indexer/v1/k8s/taskRunner/executionConfig/history`
+`GET` `/druid/indexer/v1/k8s/taskrunner/executionconfig/history`
 
 ##### Query parameters
 
@@ -276,7 +276,7 @@ The endpoint supports the following optional query 
parameters to filter results.
 
 
 ```shell
-curl 
"http://ROUTER_IP:ROUTER_PORT/druid/indexer/v1/k8s/taskRunner/executionConfig/history";
+curl 
"http://ROUTER_IP:ROUTER_PORT/druid/indexer/v1/k8s/taskrunner/executionconfig/history";
 ```
 
 </TabItem>
@@ -284,7 +284,7 @@ curl 
"http://ROUTER_IP:ROUTER_PORT/druid/indexer/v1/k8s/taskRunner/executionConf
 
 
 ```HTTP
-GET /druid/indexer/v1/k8s/taskRunner/executionConfig/history HTTP/1.1
+GET /druid/indexer/v1/k8s/taskrunner/executionconfig/history HTTP/1.1
 Host: http://ROUTER_IP:ROUTER_PORT
 ```
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to