router.yml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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. # get_router_replicas is a custom filter in role lib_utils
  20. replicas: "{{ openshift_hosted_router_replicas | default(None) | get_router_replicas(router_nodes) }}"
  21. - name: Get the certificate contents for router
  22. copy:
  23. backup: True
  24. dest: "/etc/origin/master/{{ item | basename }}"
  25. src: "{{ item }}"
  26. with_items: "{{ openshift_hosted_routers | lib_utils_oo_collect(attribute='certificate') |
  27. lib_utils_oo_select_keys_from_list(['keyfile', 'certfile', 'cafile']) }}"
  28. when: ( not openshift_hosted_router_create_certificate | bool ) or openshift_hosted_router_certificate != {} or
  29. ( openshift_hosted_routers | lib_utils_oo_collect(attribute='certificate') | lib_utils_oo_select_keys_from_list(['keyfile', 'certfile', 'cafile'])|length > 0 )
  30. # This is for when we desire a cluster signed cert
  31. # The certificate is generated and placed in master_config_dir/
  32. - block:
  33. - name: generate a default wildcard router certificate
  34. oc_adm_ca_server_cert:
  35. signer_cert: "/etc/origin/master/ca.crt"
  36. signer_key: "/etc/origin/master/ca.key"
  37. signer_serial: "/etc/origin/master/ca.serial.txt"
  38. hostnames:
  39. - "{{ openshift_master_default_subdomain }}"
  40. - "*.{{ openshift_master_default_subdomain }}"
  41. cert: "/etc/origin/master/openshift-router.crt"
  42. key: "/etc/origin/master/openshift-router.key"
  43. with_items: "{{ openshift_hosted_routers }}"
  44. - name: set the openshift_hosted_router_certificate
  45. set_fact:
  46. openshift_hosted_router_certificate:
  47. certfile: "/etc/origin/master/openshift-router.crt"
  48. keyfile: "/etc/origin/master/openshift-router.key"
  49. cafile: "/etc/origin/master/ca.crt"
  50. when:
  51. - openshift_hosted_router_create_certificate | bool
  52. - openshift_hosted_router_certificate == {}
  53. - openshift_hosted_routers | lib_utils_oo_collect(attribute='certificate') | lib_utils_oo_select_keys_from_list(['keyfile', 'certfile', 'cafile'])|length == 0
  54. - name: Create the router service account(s)
  55. oc_serviceaccount:
  56. name: "{{ item.serviceaccount }}"
  57. namespace: "{{ item.namespace }}"
  58. state: present
  59. with_items: "{{ openshift_hosted_routers }}"
  60. - name: Grant the router service account(s) access to the appropriate scc
  61. oc_adm_policy_user:
  62. user: "system:serviceaccount:{{ item.namespace }}:{{ item.serviceaccount }}"
  63. namespace: "{{ item.namespace }}"
  64. resource_kind: scc
  65. resource_name: hostnetwork
  66. with_items: "{{ openshift_hosted_routers }}"
  67. - name: Set additional permissions for router service account
  68. oc_adm_policy_user:
  69. user: "system:serviceaccount:{{ item.namespace }}:{{ item.serviceaccount }}"
  70. namespace: "{{ item.namespace }}"
  71. resource_kind: cluster-role
  72. resource_name: cluster-reader
  73. when: item.namespace == 'default'
  74. with_items: "{{ openshift_hosted_routers }}"
  75. - name: Create OpenShift router
  76. oc_adm_router:
  77. name: "{{ item.name }}"
  78. replicas: "{{ item.replicas }}"
  79. namespace: "{{ item.namespace | default('default') }}"
  80. # This option is not yet implemented
  81. # force_subdomain: "{{ openshift_hosted_router_force_subdomain | default(none) }}"
  82. service_account: "{{ item.serviceaccount | default('router') }}"
  83. selector: "{{ item.selector | default(none) }}"
  84. images: "{{ item.images | default(omit) }}"
  85. cert_file: "{{ ('/etc/origin/master/' ~ (item.certificate.certfile | basename)) if 'certfile' in item.certificate else omit }}"
  86. key_file: "{{ ('/etc/origin/master/' ~ (item.certificate.keyfile | basename)) if 'keyfile' in item.certificate else omit }}"
  87. cacert_file: "{{ ('/etc/origin/master/' ~ (item.certificate.cafile | basename)) if 'cafile' in item.certificate else omit }}"
  88. edits: "{{ openshift_hosted_router_edits | union(item.edits) }}"
  89. ports: "{{ item.ports }}"
  90. stats_port: "{{ item.stats_port }}"
  91. with_items: "{{ openshift_hosted_routers }}"