Cloudify enables organizations to quickly deploy, manage and scale existing and new enterprise-grade applications on any cloud, with no changes to the code or architecture.
Try it Now!
service {
name "mysql"
icon "mysql.jpg"
type "DATABASE"
lifecycle{
install "mysql_install.groovy"
start "mysql_start.groovy"
...
}
}
application {
name="petclinic"
service {
name = "mysql"
}
service {
name = "tomcat"
dependsOn = ["mysql"]
}
}
scalingRule {
serviceStatistics {
metric "Requests per second"
movingTimeRangeInSeconds 20
}
highThreshold {
value 100
instancesIncrease 1
}
}