I am looking for an entity or a yaml file to install a Tibco Spotfire in a Windows OS via Apache Brooklyn.
Amazon Web Services (AWS) offers the installation of this service: https://aws.amazon.com/marketplace/pp/B00PB74KYY
This is my yaml file which install successfully in AWS a windows Server:
name: Windows_OS_Example
location:
jclouds:aws-ec2:
region: eu-central-1
identity: <identity>
credential: <credential>
imageNameRegex: Windows_Server-2012-R2_RTM-English-64Bit-Base
hardwareId: m3.medium
useJcloudsSshInit: false
templateOptions: {mapNewVolumeToDeviceName: ["/dev/sda1", 100, true]}
services:
- type: brooklyn.entity.basic.VanillaWindowsProcess
brooklyn.config:
install.command: echo true
customize.command: echo true
launch.command: echo true
stop.command: echo true
checkRunning.command: echo true
I think that maybe,
- there is another image (imageNameRegex) which has the Windows Server and the Spotfire together
- or one Service or something similar which it could be added to jclouds spec in the yaml file to install a Spotfire after the Windows Server installation
- or an example/workaround of a Java Entity to install the Spotfire
If somebody knows some of these solutions or another one, I really appreciate it.