-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Updated to use summit labels (#47) * Adds macOS support for local environment (#49) * Successful run local on macOS, postgres/python bind worked. * Reverted asbcli up to use openshift_url variable * Update README * Add note 'socat' needs to be installed on mac * Fix for install asb pip requirements * Update README for 2 local directories * README tweak * Change to pip install docker instead of the older docker-py (#50) * Revert "Updated to use summit labels (#47)" This reverts commit 3c7e187. * Minor fixes necessary after merging master. * Adapting vars_prompt to ec2 and mac.
- Loading branch information
Showing
29 changed files
with
315 additions
and
119 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
my_vars.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
- hosts: localhost | ||
gather_facts: True | ||
vars_prompt: | ||
- name: dockerhub_user_name | ||
prompt: "Enter your dockerhub username: " | ||
private: no | ||
- name: dockerhub_user_password | ||
prompt: "Enter your dockerhub password: " | ||
private: yes | ||
- name: dockerhub_org_name | ||
prompt: "Enter the dockerhub organization you'd like to pull images from: " | ||
private: no | ||
roles: | ||
- { role: openshift_setup, reset_cluster: True } | ||
- service_catalog_setup | ||
- ansible_service_broker_setup | ||
- local_demo_prep | ||
- env_hacks | ||
post_tasks: | ||
- set_fact: | ||
msg: | | ||
Hostname: {{ openshift_hostname }} | ||
Next steps: | ||
1) Visit https://apiserver-service-catalog.{{ openshift_routing_suffix }} | ||
2) Accept the certificate | ||
3) Visit https://{{ openshift_hostname }}:8443 for the console | ||
OR | ||
For CLI access: | ||
oc login --insecure-skip-tls-verify {{ openshift_hostname }}:8443 -u {{ cluster_user }} -p {{ cluster_user_password }} | ||
- debug: | ||
msg: "{{ msg.split('\n') }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
asb_src_dir: /tmp/ansible-service-broker | ||
dockerhub_user_name: changeme | ||
dockerhub_user_password: changeme |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
window.OPENSHIFT_CONFIG.additionalServers = [{ | ||
hostPort: "apiserver-service-catalog.{{ openshift_hostname }}", | ||
hostPort: "apiserver-service-catalog.{{ openshift_routing_suffix }}", | ||
prefix: "/apis" | ||
}]; |
Oops, something went wrong.