-
Notifications
You must be signed in to change notification settings - Fork 26
/
http-sink.kamelet.yaml
47 lines (47 loc) · 1.72 KB
/
http-sink.kamelet.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
apiVersion: camel.apache.org/v1
kind: Kamelet
metadata:
name: http-sink
annotations:
camel.apache.org/kamelet.support.level: "Stable"
camel.apache.org/catalog.version: "2.3.0"
camel.apache.org/kamelet.icon: "data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MjAiCmhlaWdodD0iNDIwIiBzdHJva2U9IiMwMDAiIGZpbGw9Im5vbmUiPgo8cGF0aCBzdHJva2Utd2lkdGg9IjI2IgpkPSJNMjA5LDE1YTE5NSwxOTUgMCAxLDAgMiwweiIvPgo8cGF0aCBzdHJva2Utd2lkdGg9IjE4IgpkPSJtMjEwLDE1djM5MG0xOTUtMTk1SDE1TTU5LDkwYTI2MCwyNjAgMCAwLDAgMzAyLDAgbTAsMjQwIGEyNjAsMjYwIDAgMCwwLTMwMiwwTTE5NSwyMGEyNTAsMjUwIDAgMCwwIDAsMzgyIG0zMCwwIGEyNTAsMjUwIDAgMCwwIDAtMzgyIi8+Cjwvc3ZnPg=="
camel.apache.org/provider: "Red Hat"
camel.apache.org/kamelet.group: "HTTP"
camel.apache.org/kamelet.namespace: "HTTP"
labels:
camel.apache.org/kamelet.type: sink
spec:
definition:
title: HTTP Sink
description: Forward data to a HTTP or HTTPS endpoint.
required:
- url
type: object
properties:
url:
title: URL
description: The URL to which you want to send data.
type: string
example: "https://my-service/path"
pattern: "^(http|https)://.*"
method:
title: Method
description: The HTTP method to use.
type: string
default: POST
enum: ["GET", "POST", "PUT", "DELETE", "HEAD", "OPTIONS", "TRACE", "PATCH"]
dependencies:
- "camel:http"
- "camel:kamelet"
- "camel:core"
template:
from:
uri: kamelet:source
steps:
- remove-header:
name: CamelHttpUri
- set-header:
name: CamelHttpMethod
constant: "{{method}}"
- to: "{{url}}"