summaryrefslogtreecommitdiffstats
path: root/laas-fog/pharoslaas/rules
diff options
context:
space:
mode:
authorParker Berberian <pberberian@iol.unh.edu>2017-12-20 12:55:28 -0500
committerParker Berberian <pberberian@iol.unh.edu>2017-12-20 12:55:28 -0500
commitfc52e89492c20ca7a93d4e48f0cfa01ddacf7fa8 (patch)
tree1102bbb4e7e7a40711f9e2600516fe4b97e773a0 /laas-fog/pharoslaas/rules
parent30f389c70e8a0a8bd2ef27be09839eef243ab7f5 (diff)
Added sensor and rules
JIRA: PHAROS-318 Adds pharos.py which talks with the pharos dashboard to detect when bookings are created and stores the needed information in the stackstorm datastore. By default, the sensor will poll the dashboard every 30 seconds to check for changes. The dashboard sensor will dispatch the triggers defined in dashboard_listener.yaml. The rules in rules/* links the triggers thrown by the api sensor to workflows which will do the work of deploying / cleaning the hosts. Change-Id: I7411a16ebbb48739a8f1f5b924dea6493c400071 Signed-off-by: Parker Berberian <pberberian@iol.unh.edu>
Diffstat (limited to 'laas-fog/pharoslaas/rules')
-rw-r--r--laas-fog/pharoslaas/rules/clean.yaml28
-rw-r--r--laas-fog/pharoslaas/rules/deployment.yaml30
2 files changed, 58 insertions, 0 deletions
diff --git a/laas-fog/pharoslaas/rules/clean.yaml b/laas-fog/pharoslaas/rules/clean.yaml
new file mode 100644
index 0000000..f623ce6
--- /dev/null
+++ b/laas-fog/pharoslaas/rules/clean.yaml
@@ -0,0 +1,28 @@
+---
+##############################################################################
+# Copyright 2017 Parker Berberian and Others #
+# #
+# Licensed 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. #
+##############################################################################
+
+name: on_end_deployment_trigger
+pack: pharoslaas
+description: dummy rule to link end deployment trigger to clean action
+enabled: true
+trigger:
+ type: pharoslaas.end_deployment_trigger
+action:
+ ref: pharoslaas.clean-workflow
+ parameters:
+ host: "{{ trigger.host }}"
+ key: "{{trigger.key}}"
diff --git a/laas-fog/pharoslaas/rules/deployment.yaml b/laas-fog/pharoslaas/rules/deployment.yaml
new file mode 100644
index 0000000..93942bf
--- /dev/null
+++ b/laas-fog/pharoslaas/rules/deployment.yaml
@@ -0,0 +1,30 @@
+---
+##############################################################################
+# Copyright 2017 Parker Berberian and Others #
+# #
+# Licensed 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. #
+##############################################################################
+
+name: on_deployment_trigger
+pack: pharoslaas
+description: "rule to link deployment trigger to deployment action"
+enabled: true
+trigger:
+ type: pharoslaas.start_deployment_trigger
+action:
+ ref: pharoslaas.deployment_workflow
+ parameters:
+ installer: "{{ trigger.installer }}"
+ host: "{{ trigger.host }}"
+ scenario: "{{ trigger.scenario }}"
+ booking: "{{ trigger.booking }}"