config.yml 497 B

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