main.yml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. ---
  2. ##########
  3. # Common #
  4. ##########
  5. openshift_hosted_infra_selector: "region=infra"
  6. r_openshift_hosted_use_calico_default: "{{ openshift_use_calico | default(False) }}"
  7. r_openshift_hosted_use_calico: "{{ r_openshift_hosted_use_calico_default }}"
  8. openshift_default_projects:
  9. default:
  10. default_node_selector: ''
  11. logging:
  12. default_node_selector: ''
  13. openshift-infra:
  14. default_node_selector: ''
  15. # openshift_additional_projects shares the same format as openshift_default_projects
  16. openshift_additional_projects: {}
  17. openshift_config_base: "/etc/origin"
  18. openshift_master_config_dir: "{{ openshift.common.config_base | default(openshift_config_base) }}/master"
  19. openshift_cluster_domain: 'cluster.local'
  20. ##########
  21. # Router #
  22. ##########
  23. r_openshift_hosted_router_firewall_enabled: "{{ os_firewall_enabled | default(True) }}"
  24. r_openshift_hosted_router_use_firewalld: "{{ os_firewall_use_firewalld | default(False) }}"
  25. openshift_hosted_router_wait: "{{ not (openshift_master_bootstrap_enabled | default(False)) }}"
  26. openshift_hosted_router_edits:
  27. - key: spec.strategy.rollingParams.intervalSeconds
  28. value: 1
  29. action: put
  30. - key: spec.strategy.rollingParams.updatePeriodSeconds
  31. value: 1
  32. action: put
  33. - key: spec.strategy.activeDeadlineSeconds
  34. value: 21600
  35. action: put
  36. openshift_hosted_routers:
  37. - name: router
  38. replicas: "{{ replicas | default(1) }}"
  39. namespace: default
  40. serviceaccount: router
  41. selector: "{{ openshift_hosted_router_selector | default(None) }}"
  42. images: "{{ openshift_hosted_router_image | default(None) }}"
  43. edits: "{{ openshift_hosted_router_edits }}"
  44. stats_port: 1936
  45. ports:
  46. - 80:80
  47. - 443:443
  48. certificate: "{{ openshift_hosted_router_certificate | default({}) }}"
  49. openshift_hosted_router_certificate: {}
  50. openshift_hosted_router_create_certificate: True
  51. r_openshift_hosted_router_os_firewall_deny: []
  52. r_openshift_hosted_router_os_firewall_allow: []
  53. ############
  54. # Registry #
  55. ############
  56. r_openshift_hosted_registry_firewall_enabled: "{{ os_firewall_enabled | default(True) }}"
  57. r_openshift_hosted_registry_use_firewalld: "{{ os_firewall_use_firewalld | default(False) }}"
  58. openshift_hosted_registry_name: docker-registry
  59. openshift_hosted_registry_wait: "{{ not (openshift_master_bootstrap_enabled | default(False)) }}"
  60. openshift_hosted_registry_cert_expire_days: 730
  61. r_openshift_hosted_registry_os_firewall_deny: []
  62. r_openshift_hosted_registry_os_firewall_allow:
  63. - service: Docker Registry Port
  64. port: 5000/tcp
  65. cond: "{{ r_openshift_hosted_use_calico }}"
  66. openshift_hosted_registry_serviceaccount: registry
  67. openshift_hosted_registry_volumes: []
  68. openshift_hosted_registry_env_vars: {}
  69. openshift_hosted_registry_clusterip: null
  70. # These edits are being specified only to prevent 'changed' on rerun
  71. openshift_hosted_registry_edits:
  72. - key: spec.strategy.rollingParams
  73. value:
  74. intervalSeconds: 1
  75. maxSurge: "25%"
  76. maxUnavailable: "25%"
  77. timeoutSeconds: 600
  78. updatePeriodSeconds: 1
  79. action: put
  80. openshift_hosted_registry_force:
  81. - False
  82. openshift_push_via_dns: False
  83. # NOTE: settting openshift_docker_hosted_registry_insecure may affect other roles
  84. openshift_hosted_docker_registry_insecure_default: "{{ openshift_docker_hosted_registry_insecure | default(False) }}"
  85. openshift_hosted_docker_registry_insecure: "{{ openshift_hosted_docker_registry_insecure_default }}"