config.yml 612 B

1234567891011121314151617181920
  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. - fluentd_master
  10. tasks:
  11. - name: Create group for deployment type
  12. group_by: key=oo_masters_deployment_type_{{ openshift.common.deployment_type }}
  13. changed_when: False
  14. # Additional instance config for online deployments
  15. - name: Additional instance config
  16. hosts: oo_masters_deployment_type_online
  17. roles:
  18. - pods
  19. - os_env_extras