This is an automated email from the ASF dual-hosted git repository. nferraro pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-k.git
commit ba84787c0308350c90f201a2d124a170c65d30d5 Author: Pasquale Congiusti <[email protected]> AuthorDate: Thu May 27 10:26:44 2021 +0200 chore(example): modeline config --- .../modeline/modeline-config-file-route.groovy | 30 ++++++++++++++++++++ examples/modeline/modeline-secret-route.groovy | 32 ++++++++++++++++++++++ examples/modeline/resources-data.txt | 1 + 3 files changed, 63 insertions(+) diff --git a/examples/modeline/modeline-config-file-route.groovy b/examples/modeline/modeline-config-file-route.groovy new file mode 100644 index 0000000..850f7ad --- /dev/null +++ b/examples/modeline/modeline-config-file-route.groovy @@ -0,0 +1,30 @@ +// camel-k: language=groovy +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +// +// To run this integrations use: +// kamel run modeline-config-file-route.groovy --dev +// + +// camel-k: config=file:resources-data.txt + +from('timer:resources') + .routeId('resources') + .setBody() + .simple("resource:classpath:resources-data.txt") + .log('resource file content is: ${body}') diff --git a/examples/modeline/modeline-secret-route.groovy b/examples/modeline/modeline-secret-route.groovy new file mode 100644 index 0000000..0107b28 --- /dev/null +++ b/examples/modeline/modeline-secret-route.groovy @@ -0,0 +1,32 @@ +// camel-k: language=groovy +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +// +// To run this integrations use: +// +// kubectl create secret generic my-sec --from-literal=my-secret-key="very top secret" +// kamel run secret-route.groovy --dev +// + +// camel-k: config=secret:my-sec + +from('timer:secret') + .routeId('secret') + .setBody() + .simple("resource:classpath:my-secret-key") + .log('secret content is: ${body}') diff --git a/examples/modeline/resources-data.txt b/examples/modeline/resources-data.txt new file mode 100644 index 0000000..dff7947 --- /dev/null +++ b/examples/modeline/resources-data.txt @@ -0,0 +1 @@ +the file body \ No newline at end of file
