router.yml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. ---
  2. - name: setup firewall
  3. import_tasks: firewall.yml
  4. vars:
  5. l_openshift_hosted_firewall_enabled: "{{ r_openshift_hosted_router_firewall_enabled }}"
  6. l_openshift_hosted_use_firewalld: "{{ r_openshift_hosted_router_use_firewalld }}"
  7. l_openshift_hosted_fw_allow: "{{ r_openshift_hosted_router_os_firewall_allow }}"
  8. l_openshift_hosted_fw_deny: "{{ r_openshift_hosted_router_os_firewall_deny }}"
  9. - name: Retrieve list of openshift nodes matching router selector
  10. oc_obj:
  11. state: list
  12. kind: node
  13. namespace: "{{ openshift_hosted_router_namespace }}"
  14. selector: "{{ openshift_hosted_router_selector }}"
  15. register: router_nodes
  16. when: openshift_hosted_router_replicas | default(none) is none
  17. - name: set_fact replicas
  18. set_fact:
  19. replicas: "{{ openshift_hosted_router_replicas | default(None) | get_router_replicas(router_nodes) }}"
  20. - name: Get the certificate contents for router
  21. copy:
  22. backup: True
  23. dest: "/etc/origin/master/{{ item | basename }}"
  24. src: "{{ item }}"
  25. with_items: "{{ openshift_hosted_routers | oo_collect(attribute='certificate') |
  26. oo_select_keys_from_list(['keyfile', 'certfile', 'cafile']) }}"
  27. when: ( not openshift_hosted_router_create_certificate | bool ) or openshift_hosted_router_certificate != {} or
  28. ( openshift_hosted_routers | oo_collect(attribute='certificate') | oo_select_keys_from_list(['keyfile', 'certfile', 'cafile'])|length > 0 )
  29. # This is for when we desire a cluster signed cert
  30. # The certificate is generated and placed in master_config_dir/
  31. - block:
  32. - name: generate a default wildcard router certificate
  33. oc_adm_ca_server_cert:
  34. signer_cert: "{{ openshift_master_config_dir }}/ca.crt"
  35. signer_key: "{{ openshift_master_config_dir }}/ca.key"
  36. signer_serial: "{{ openshift_master_config_dir }}/ca.serial.txt"
  37. hostnames:
  38. - "{{ openshift_master_default_subdomain }}"
  39. - "*.{{ openshift_master_default_subdomain }}"
  40. cert: "{{ openshift_master_config_dir ~ '/openshift-router.crt' }}"
  41. key: "{{ openshift_master_config_dir ~ '/openshift-router.key' }}"
  42. with_items: "{{ openshift_hosted_routers }}"
  43. - name: set the openshift_hosted_router_certificate
  44. set_fact:
  45. openshift_hosted_router_certificate:
  46. certfile: "{{ openshift_master_config_dir ~ '/openshift-router.crt' }}"
  47. keyfile: "{{ openshift_master_config_dir ~ '/openshift-router.key' }}"
  48. cafile: "{{ openshift_master_config_dir ~ '/ca.crt' }}"
  49. when:
  50. - openshift_hosted_router_create_certificate | bool
  51. - openshift_hosted_router_certificate == {}
  52. - openshift_hosted_routers | oo_collect(attribute='certificate') | oo_select_keys_from_list(['keyfile', 'certfile', 'cafile'])|length == 0
  53. - name: Create the router service account(s)
  54. oc_serviceaccount:
  55. name: "{{ item.serviceaccount }}"
  56. namespace: "{{ item.namespace }}"
  57. state: present
  58. with_items: "{{ openshift_hosted_routers }}"
  59. - name: Grant the router service account(s) access to the appropriate scc
  60. oc_adm_policy_user:
  61. user: "system:serviceaccount:{{ item.namespace }}:{{ item.serviceaccount }}"
  62. namespace: "{{ item.namespace }}"
  63. resource_kind: scc
  64. resource_name: hostnetwork
  65. with_items: "{{ openshift_hosted_routers }}"
  66. - name: Set additional permissions for router service account
  67. oc_adm_policy_user:
  68. user: "system:serviceaccount:{{ item.namespace }}:{{ item.serviceaccount }}"
  69. namespace: "{{ item.namespace }}"
  70. resource_kind: cluster-role
  71. resource_name: cluster-reader
  72. when: item.namespace == 'default'
  73. with_items: "{{ openshift_hosted_routers }}"
  74. - name: Create OpenShift router
  75. oc_adm_router:
  76. name: "{{ item.name }}"
  77. replicas: "{{ item.replicas }}"
  78. namespace: "{{ item.namespace | default('default') }}"
  79. # This option is not yet implemented
  80. # force_subdomain: "{{ openshift_hosted_router_force_subdomain | default(none) }}"
  81. service_account: "{{ item.serviceaccount | default('router') }}"
  82. selector: "{{ item.selector | default(none) }}"
  83. images: "{{ item.images | default(omit) }}"
  84. cert_file: "{{ ('/etc/origin/master/' ~ (item.certificate.certfile | basename)) if 'certfile' in item.certificate else omit }}"
  85. key_file: "{{ ('/etc/origin/master/' ~ (item.certificate.keyfile | basename)) if 'keyfile' in item.certificate else omit }}"
  86. cacert_file: "{{ ('/etc/origin/master/' ~ (item.certificate.cafile | basename)) if 'cafile' in item.certificate else omit }}"
  87. edits: "{{ openshift_hosted_router_edits | union(item.edits) }}"
  88. ports: "{{ item.ports }}"
  89. stats_port: "{{ item.stats_port }}"
  90. with_items: "{{ openshift_hosted_routers }}"
  91. - name: Wait for pod (Routers)
  92. include_tasks: wait_for_pod.yml
  93. vars:
  94. l_openshift_hosted_wait_for_pod: "{{ openshift_hosted_router_wait }}"
  95. l_openshift_hosted_wfp_items: "{{ openshift_hosted_routers }}"