-
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.
Merge branch 'dev' into merge-dev-master
* dev: (30 commits) Get latest release of oc client from OpenShift Builds (#84) Enable service-catalog using oc cluster up option (#83) Tweak to remove_all_synced_docker_images.sh Remove all local images Updated --rcm to use latest rcm built images for openshift (#82) Use prebuilt binary stored in s3 for oc client. (#81) Added troubleshooting to README (#79) Fixed macOS to use setup_local_environment.yml add rcm option and source repetitive code (#75) Consolidate local playbooks (#73) Added broker relist interval variable to controller manager deployment (#76) Allow changing etcd image and path to support downstream (#74) adding recovery config values (#72) Fix for persistent volume cleanup on mac (#70) Add config options (#71) Recreate PV mount to avoid permissions issues on pvs. (#69) Use openshift template to deploy Ansible Service Broker (#65) Enable pod presets (#67) Bump to using v3.6.0-alpha.2 for 'oc' executable (#64) Change service catalog/apiserver to canary for testing in dev (#63) ...
- Loading branch information
Showing
43 changed files
with
691 additions
and
487 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,2 @@ | ||
my_vars.yml | ||
ansible/roles/ansible_service_broker_setup/templates/ansible-service-broker-all.yaml.j2 |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
10 changes: 10 additions & 0 deletions
10
ansible/roles/ansible_service_broker_setup/defaults/main.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
asb_src_dir: /tmp/ansible-service-broker | ||
dockerhub_user_name: changeme | ||
dockerhub_user_password: changeme | ||
|
||
asb_registry: "ansibleplaybookbundle" | ||
|
||
broker_tag: "latest" | ||
broker_image_name: "{{ asb_registry }}/ansible-service-broker-apb" | ||
broker_image: "{{ broker_image_name }}:{{ broker_tag }}" | ||
|
||
etcd_tag: "latest" | ||
etcd_image_name: "{{ asb_registry }}/ansible-service-broker-etcd" | ||
etcd_image: "{{ etcd_image_name }}:{{ etcd_tag }}" |
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 |
---|---|---|
@@ -1,3 +1,7 @@ | ||
reset_cluster: False | ||
openshift_client_release_ver: openshift-origin-client-tools-v3.6.0-alpha.1-46942ad | ||
openshift_release_url: https://github.com/openshift/origin/releases/download/v3.6.0-alpha.2 | ||
openshift_client_release_ver: openshift-origin-client-tools-v3.6.0-alpha.2-3c221d5 | ||
oc_tools_dir: /usr/local/bin | ||
|
||
# Temporary fix until release version of oc client works with latest images. | ||
openshift_client_url: https://s3.amazonaws.com/catasb/linux/amd64/oc |
Oops, something went wrong.