From f00deedc9f9213d31c0d404bf315218425ba87be Mon Sep 17 00:00:00 2001 From: "Chang, Hui-Tang" Date: Mon, 18 Nov 2024 15:13:07 +0800 Subject: [PATCH] feat(vdp): expose webhook dispatcher endpoint (#266) Because - A new webhook dispatcher endpoint has been added. This commit - Exposes the webhook dispatcher endpoint. --- config/settings-env/endpoints.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/config/settings-env/endpoints.json b/config/settings-env/endpoints.json index 323eedd..6c50155 100644 --- a/config/settings-env/endpoints.json +++ b/config/settings-env/endpoints.json @@ -1391,6 +1391,13 @@ } ], "webhook": [ + { + "endpoint": "/v1beta/pipeline-webhooks/{webhook_id}", + "url_pattern": "/v1beta/pipeline-webhooks/{webhook_id}", + "method": "POST", + "timeout": "3600s", + "input_query_strings": [] + }, { "endpoint": "/v1beta/namespaces/{namespace_id}/pipelines/{pipeline_id}/events", "url_pattern": "/v1beta/namespaces/{namespace_id}/pipelines/{pipeline_id}/events",