-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
minor formatting for README files #48
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Make sure all of the commands that need to get run are escaped with the tick marks.
ec2/README.md
Outdated
@@ -30,7 +30,7 @@ These playbooks will: | |||
$ python -c "import ansible;print(ansible.__version__)" | |||
2.2.2.0 | |||
* Install python dependencies (This is needed for python2. Use pip2 if using python3) | |||
* `pip install boto boto3 six` | |||
$ pip install boto boto3 six |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This needs to be marked with ``` you can't see it in the formatted view.
- Install python dependencies (...)
$ pip install boto boto3 six
something like that
ec2/README.md
Outdated
$ ./run_create_infrastructure.sh | ||
* Run the setup script | ||
$ ./run_setup_environment.sh | ||
* Open a Web Browser |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You're adding a newline to try to make it easier to read, but it doesn't work. It just ends up being on the same line. I would make all the commands escaped with triple tick marks ```
* Accept the SSL certificate for the apiserver-service-catalog endpoint | ||
* Ignore the text that appears and proceed to the main OpenShift URL next | ||
* Note: must accept the new SSL cert, each time you reset your OpenShift environment | ||
* Visit: `https://<USERNAME>.ec2.dog8code.com:8443` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No changes here.
local/README.md
Outdated
* `cd local` | ||
* `./reset_environment.sh` | ||
* To reset the environment to a clean instance of origin with ASB and Service Catalog run the below | ||
$ ./reset_environment.sh |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Again, these commands get butted to the end of the sentences and you can't really see they are commands that need executing.
encapsulate shell commands and examples with a ```
@jmrodri thank you. I've made the changes you suggested. |
No description provided.