Skip to content

Commit

Permalink
Updated READMEs for Ansible 2.3.0.0, added workaround (#66)
Browse files Browse the repository at this point in the history
- Changed references from Ansible 2.2.3.0 to 2.3.0.0
 - Added workaround for issue with APBs not showing up in OpenShift UI
  • Loading branch information
djwhatle authored and jwmatthews committed Jun 14, 2017
1 parent 90325a5 commit cc33e74
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 7 deletions.
6 changes: 3 additions & 3 deletions ec2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ These playbooks will:
* Ansible needs to be installed so its source code is available to Python.
* Check to see if Ansible modules are available to Python
$ python -c "import ansible;print(ansible.__version__)"
2.2.2.0
2.3.0.0
* MacOS requires Ansible to be installed from `pip` and not `brew`
$ python -c "import ansible;print(ansible.__version__)"
Traceback (most recent call last):
Expand All @@ -28,7 +28,7 @@ These playbooks will:
pip install ansible

$ python -c "import ansible;print(ansible.__version__)"
2.2.2.0
2.3.0.0
* Install python dependencies (This is needed for python2. Use pip2 if using python3)
* `pip install boto boto3 six`
* Configure a SSH Key in your AWS EC-2 account for the given region
Expand Down Expand Up @@ -70,5 +70,5 @@ To reset the ec2 instance back to clean origin and deployment of ASB and Service


### Tested with
* ansible 2.2.2.0 & 2.3.0.0
* ansible 2.3.0.0
* Problems were seen using ansible 2.0
17 changes: 14 additions & 3 deletions local/linux/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ These playbooks will:
* Check to see if Ansible modules are available to Python

$ python -c "import ansible;print(ansible.__version__)"
2.2.2.0
2.3.0.0
* MacOS requires Ansible to be installed from `pip` and not `brew`
$ python -c "import ansible;print(ansible.__version__)"
Traceback (most recent call last):
Expand All @@ -24,7 +24,7 @@ These playbooks will:
pip install ansible

$ python -c "import ansible;print(ansible.__version__)"
2.2.2.0
2.3.0.0
* Install python dependencies
* `pip install six`

Expand Down Expand Up @@ -52,7 +52,7 @@ To reset the environment to a clean instance of origin with ASB and Service Cata
* `./reset_environment.sh`

### Tested with
* ansible 2.2.2.0 & 2.3.0.0
* ansible 2.3.0.0
* Problems were seen using ansible 2.0

### Troubleshooting
Expand All @@ -69,3 +69,14 @@ The recommended fix for this is to uninstall docker-py, as there is an ansible t
```
<sudo> pip uninstall docker-py
```

**APBs not visible from OpenShift Web UI**

In some cases APBs won't be visible from the OpenShift Console after `./run_setup_local.sh`.
This can happen when the catalog is unable to talk to the broker due to an issue with iptables.

The recommended fix is to flush iptables rules and reset the catasb environment.
```
sudo iptables -F
./reset_environment.sh
```
2 changes: 1 addition & 1 deletion local/mac/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,5 +89,5 @@ To reset the environment to a clean instance of origin with ASB and Service Cata
* `./reset_environment.sh`

### Tested with
* ansible 2.2.2.0 & 2.3.0.0
* ansible 2.3.0.0
* Problems were seen using ansible 2.0

0 comments on commit cc33e74

Please sign in to comment.