Enable sanity checks from kolla-ansible

Add a new subcommand 'check' to kolla-ansible, used to run the
smoke/sanity checks.

Add stub files to all services that don't currently have checks.

Change-Id: I9f661c5fc51fd5b9b266f23f6c524884613dee48
Partially-implements: blueprint sanity-check-container
This commit is contained in:
Paul Bourke 2017-02-24 14:22:23 +00:00
parent 0883d34d4a
commit 5418ada148
55 changed files with 62 additions and 0 deletions
ansible/roles
aodh/tasks
barbican/tasks
baremetal/tasks
bifrost/tasks
ceilometer/tasks
ceph/tasks
certificates/tasks
chrony/tasks
cloudkitty/tasks
collectd/tasks
common/tasks
congress/tasks
designate/tasks
destroy/tasks
elasticsearch/tasks
etcd/tasks
freezer/tasks
gnocchi/tasks
grafana/tasks
haproxy/tasks
heat/tasks
horizon/tasks
influxdb/tasks
ironic/tasks
iscsi/tasks
karbor/tasks
kibana/tasks
kuryr/tasks
magnum/tasks
manila/tasks
memcached/tasks
mistral/tasks
mongodb/tasks
multipathd/tasks
murano/tasks
neutron/tasks
nova/tasks
octavia/tasks
panko/tasks
prechecks/tasks
rabbitmq/tasks
rally/tasks
sahara/tasks
searchlight/tasks
senlin/tasks
solum/tasks
stop/tasks
tacker/tasks
telegraf/tasks
tempest/tasks
trove/tasks
vmtp/tasks
watcher/tasks
releasenotes/notes
tools

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1 @@
---

@ -0,0 +1,4 @@
---
features:
- Add a new subcommand 'check' to kolla-ansible, used
to run the smoke/sanity checks.

@ -46,6 +46,7 @@ Options:
Commands:
prechecks Do pre-deployment checks for hosts
check Do post-deployment smoke tests
mariadb_recovery Recover a completely stopped mariadb cluster
bootstrap-servers bootstrap servers with kolla deploy dependencies
destroy Destroy Kolla containers, volumes and host configuration
@ -157,6 +158,10 @@ case "$1" in
ACTION="Pre-deployment checking"
EXTRA_OPTS="$EXTRA_OPTS -e action=precheck"
;;
(check)
ACTION="Post-deployment checking"
EXTRA_OPTS="$EXTRA_OPTS -e action=check"
;;
(mariadb_recovery)
ACTION="Attempting to restart mariadb cluster"
EXTRA_OPTS="$EXTRA_OPTS -e action=deploy -e common_run=true"