Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
Kolla Ansible
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Very Demiurge Very Mindful
Kolla Ansible
Commits
73725e53
Commit
73725e53
authored
10 years ago
by
Jenkins
Committed by
Gerrit Code Review
10 years ago
Browse files
Options
Downloads
Plain Diff
Merge "Add a stop command to shut down Kolla AIO"
parents
12b00b29
3f036e3f
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tools/stop
+35
-0
35 additions, 0 deletions
tools/stop
with
35 additions
and
0 deletions
tools/stop
0 → 100755
+
35
−
0
View file @
73725e53
#!/bin/bash
#
# This script can be used to start a minimal set of containers that allows
# you to boot an instance. Note that it requires that you have some openstack
# clients available: keystone, glance, and nova, as well as mysql to ensure
# services are up. You will also need these in order to interact with the
# installation once started.
# Move to top level directory
REAL_PATH
=
$(
python
-c
"import os,sys;print os.path.realpath('
$0
')"
)
cd
"
$(
dirname
"
$REAL_PATH
"
)
/.."
echo
Stopping rabbitmq.
docker-compose
-f
./compose/rabbitmq.yml stop
echo
Stopping mariadb.
docker-compose
-f
./compose/mariadb.yml stop
echo
Stopping keystone.
docker-compose
-f
./compose/keystone.yml stop
echo
Stopping glance.
docker-compose
-f
./compose/glance-api-registry.yml stop
echo
Stopping nova.
docker-compose
-f
./compose/nova-api-conductor-scheduler.yml stop
echo
Stopping nova compute with nova networking.
docker-compose
-f
./compose/nova-compute-network.yml stop
echo
Stopping heat.
docker-compose
-f
./compose/heat-api-engine.yml stop
echo
Stopping Horizon.
docker-compose
-f
./compose/horizon.yml stop
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment