main.yml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. ---
  2. r_openshift_hosted_router_firewall_enabled: "{{ os_firewall_enabled | default(True) }}"
  3. r_openshift_hosted_router_use_firewalld: "{{ os_firewall_use_firewalld | default(False) }}"
  4. r_openshift_hosted_registry_firewall_enabled: "{{ os_firewall_enabled | default(True) }}"
  5. r_openshift_hosted_registry_use_firewalld: "{{ os_firewall_use_firewalld | default(False) }}"
  6. openshift_hosted_router_wait: "{{ not openshift_master_bootstrap_enabled | default(True) }}"
  7. openshift_hosted_registry_wait: "{{ not openshift_master_bootstrap_enabled | default(True) }}"
  8. registry_volume_claim: 'registry-claim'
  9. openshift_hosted_router_edits:
  10. - key: spec.strategy.rollingParams.intervalSeconds
  11. value: 1
  12. action: put
  13. - key: spec.strategy.rollingParams.updatePeriodSeconds
  14. value: 1
  15. action: put
  16. - key: spec.strategy.activeDeadlineSeconds
  17. value: 21600
  18. action: put
  19. openshift_hosted_routers:
  20. - name: router
  21. replicas: "{{ replicas | default(1) }}"
  22. namespace: default
  23. serviceaccount: router
  24. selector: "{{ openshift_hosted_router_selector | default(None) }}"
  25. images: "{{ openshift_hosted_router_image | default(None) }}"
  26. edits: "{{ openshift_hosted_router_edits }}"
  27. stats_port: 1936
  28. ports:
  29. - 80:80
  30. - 443:443
  31. certificate: "{{ openshift_hosted_router_certificate | default({}) }}"
  32. openshift_hosted_router_certificate: {}
  33. openshift_hosted_registry_cert_expire_days: 730
  34. openshift_hosted_router_create_certificate: True
  35. r_openshift_hosted_router_os_firewall_deny: []
  36. r_openshift_hosted_router_os_firewall_allow: []
  37. r_openshift_hosted_registry_os_firewall_deny: []
  38. r_openshift_hosted_registry_os_firewall_allow:
  39. - service: Docker Registry Port
  40. port: 5000/tcp
  41. cond: "{{ r_openshift_hosted_use_calico }}"
  42. # NOTE
  43. # r_openshift_hosted_use_calico_default may be defined external to this role.
  44. # openshift_use_calico, if defined, may affect other roles or play behavior.
  45. r_openshift_hosted_use_calico_default: "{{ openshift_use_calico | default(False) }}"
  46. r_openshift_hosted_use_calico: "{{ r_openshift_hosted_use_calico_default }}"