config.yml 593 B

12345678910111213141516171819
  1. ---
  2. - name: Configure master instances
  3. hosts: oo_masters_to_config
  4. vars:
  5. openshift_sdn_master_url: https://{{ openshift.common.hostname }}:4001
  6. roles:
  7. - openshift_master
  8. - { role: openshift_sdn_master, when: openshift.common.use_openshift_sdn | bool }
  9. tasks:
  10. - name: Create group for deployment type
  11. group_by: key=oo_masters_deployment_type_{{ openshift.common.deployment_type }}
  12. changed_when: False
  13. # Additional instance config for online deployments
  14. - name: Additional instance config
  15. hosts: oo_masters_deployment_type_online
  16. roles:
  17. - pods
  18. - os_env_extras