config.yml 520 B

12345678910111213141516171819
  1. ---
  2. - name: Configure master instances
  3. hosts: oo_masters_to_config
  4. roles:
  5. - openshift_master
  6. - openshift_examples
  7. - role: fluentd_master
  8. when: openshift.common.use_fluentd | 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