Remove docker containers from the master node

As we got rid of using docker containers on the
Fuel master node, we don't need anymore to
run any commands inside docker containers.

Depends-On: I9c2a3b1f988ba9bb937546eab2a0dbe84d19b18b
Implements blueprint: get-rid-docker-containers
Change-Id: I345fcadc3dd138251657571641bc505b721bd76f
This commit is contained in:
Vladimir Kozhukalov 2016-01-29 13:18:14 +03:00
parent 0682f20c42
commit 0d5f343781
1 changed files with 1 additions and 20 deletions

View File

@ -4,6 +4,7 @@ dump:
- type: command
command:
- cat /etc/fuel_build_id
- cat /etc/fuel_build_number
- cat /etc/fuel_release
- cat /etc/fuel_openstack_version
- |
@ -13,23 +14,3 @@ dump:
echo $package
rpm -q --changelog $package | head -2
done
- type: docker_command
containers:
- nginx
- rabbitmq
- astute
- rsync
- keystone
- postgres
- rsyslog
- nailgun
- cobbler
- ostf
- mcollective
command: |
rpm -qa | \
egrep 'fuel|astute|network-checker|shotgun' | \
while read package; do
echo $package
rpm -q --changelog $package | head -2
done