Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/guilhermecamposo/camel_development_starter
example on how to put Camel tooling together for a complete development workflow
https://github.com/guilhermecamposo/camel_development_starter
ansible camel java quarkus
Last synced: about 1 month ago
JSON representation
example on how to put Camel tooling together for a complete development workflow
- Host: GitHub
- URL: https://github.com/guilhermecamposo/camel_development_starter
- Owner: GuilhermeCamposo
- Created: 2024-09-25T14:46:21.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-12-11T14:32:00.000Z (about 2 months ago)
- Last Synced: 2024-12-11T15:37:11.193Z (about 2 months ago)
- Topics: ansible, camel, java, quarkus
- Language: Jinja
- Homepage:
- Size: 92.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.adoc
Awesome Lists containing this project
README
# camel_development_starter
Examples on how to use Camel tooling, plus leveraging integrations with OpenShift, to development applications.
== Installing Using Ansible
=== Ansible Prerequisites
* `oc` client version >= 16
* https://pypi.org/project/kubernetes/[Python K8s client] for https://docs.ansible.com/ansible/latest/collections/kubernetes/core/index.html[Ansible Kubernetes collection]=== Parameters
[options="header"]
|=======================
| Parameter | Example Value | Definition
| token | sha256~vFanQbthlPKfsaldJT3bdLXIyEkd7ypO_XPygY1DNtQ | access token for a user with cluster-admin privileges
| server | https://api.mycluster.opentlc.com:6443 | OpenShift cluster API URL
|========================== Deploying the demo
----
token=REPLACE_ME
server=REPLACE_MEansible-playbook -e token=${token} -e server=${server} playbook.yml
----