Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
43eb821d
Commit
43eb821d
authored
Oct 01, 2014
by
James Cammarata
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #9209 from franckcuny/gce-doc
Update the GCE guide with a working configuration.
parents
8f75b961
cc6f10b6
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
4 deletions
+7
-4
docsite/rst/guide_gce.rst
+7
-4
No files found.
docsite/rst/guide_gce.rst
View file @
43eb821d
...
@@ -136,15 +136,15 @@ For the following use case, let's use this small shell script as a wrapper.
...
@@ -136,15 +136,15 @@ For the following use case, let's use this small shell script as a wrapper.
#!/bin/bash
#!/bin/bash
PLAYBOOK="$1"
PLAYBOOK="$1"
if [
-z $PLAYBOOK
]; then
if [
[ -z $PLAYBOOK ]
]; then
echo "You need to pass a playb
ac
k as argument to this script."
echo "You need to pass a playb
oo
k as argument to this script."
exit 1
exit 1
fi
fi
export SSL_CERT_FILE=$(pwd)/cacert.cer
export SSL_CERT_FILE=$(pwd)/cacert.cer
export ANSIBLE_HOST_KEY_CHECKING=False
export ANSIBLE_HOST_KEY_CHECKING=False
if [
! -f "$SSL_CERT_FILE"
]; then
if [
[ ! -f "$SSL_CERT_FILE" ]
]; then
curl -O http://curl.haxx.se/ca/cacert.pem
curl -O http://curl.haxx.se/ca/cacert.pem
fi
fi
...
@@ -188,11 +188,14 @@ A playbook would looks like this:
...
@@ -188,11 +188,14 @@ A playbook would looks like this:
wait_for: host={{ item.public_ip }} port=22 delay=10 timeout=60
wait_for: host={{ item.public_ip }} port=22 delay=10 timeout=60
with_items: gce.instance_data
with_items: gce.instance_data
- name: add_host hostname={{ item.public_ip }} groupname=new_instances
- name: Add host to groupname
add_host: hostname={{ item.public_ip }} groupname=new_instances
with_items: gce.instance_data
- name: Manage new instances
- name: Manage new instances
hosts: new_instances
hosts: new_instances
connection: ssh
connection: ssh
sudo: True
roles:
roles:
- base_configuration
- base_configuration
- production_server
- production_server
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment