registry.yml 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. ---
  2. - name: Create temp directory for doing work in
  3. command: mktemp -d /tmp/openshift-hosted-ansible-XXXXXX
  4. register: mktempHosted
  5. changed_when: False
  6. check_mode: no
  7. - name: setup firewall
  8. import_tasks: firewall.yml
  9. vars:
  10. l_openshift_hosted_firewall_enabled: "{{ r_openshift_hosted_registry_firewall_enabled }}"
  11. l_openshift_hosted_use_firewalld: "{{ r_openshift_hosted_registry_use_firewalld }}"
  12. l_openshift_hosted_fw_allow: "{{ r_openshift_hosted_registry_os_firewall_allow }}"
  13. l_openshift_hosted_fw_deny: "{{ r_openshift_hosted_registry_os_firewall_deny }}"
  14. - when: openshift_hosted_registry_replicas | default(none) is none
  15. block:
  16. - name: Retrieve list of openshift nodes matching registry selector
  17. oc_obj:
  18. state: list
  19. kind: node
  20. selector: "{{ openshift_hosted_registry_selector }}"
  21. register: registry_nodes
  22. - name: set_fact l_node_count to number of nodes matching registry selector
  23. set_fact:
  24. l_node_count: "{{ registry_nodes.results.results[0]['items'] | length }}"
  25. # Determine the default number of registry/router replicas to use if no count
  26. # has been specified.
  27. # If no registry nodes defined, the default should be 0.
  28. - name: set_fact l_default_replicas when l_node_count == 0
  29. set_fact:
  30. l_default_replicas: 0
  31. when: l_node_count | int == 0
  32. # If registry nodes are defined and the registry storage kind is
  33. # defined, default should be the number of registry nodes, otherwise
  34. # just 1:
  35. - name: set_fact l_default_replicas when l_node_count > 0
  36. set_fact:
  37. l_default_replicas: "{{ l_node_count if openshift_hosted_registry_storage_kind | default(none) is not none else 1 }}"
  38. when: l_node_count | int > 0
  39. - name: set openshift_hosted facts
  40. set_fact:
  41. # This determines the gluster_ips to use for the registry by looping over the glusterfs_registry group
  42. openshift_hosted_registry_storage_glusterfs_ips: "{%- set gluster_ips = [] %}{% if groups.glusterfs_registry is defined %}{% for node in groups.glusterfs_registry %}{%- set _ = gluster_ips.append(hostvars[node].glusterfs_ip | default(hostvars[node].openshift.common.ip)) %}{% endfor %}{{ gluster_ips }}{% elif groups.glusterfs is defined %}{% for node in groups.glusterfs %}{%- set _ = gluster_ips.append(hostvars[node].glusterfs_ip | default(hostvars[node].openshift.common.ip)) %}{% endfor %}{{ gluster_ips }}{% else %}{{ openshift_hosted_registry_storage_glusterfs_ips }}{% endif %}"
  43. - name: Update registry environment variables when pushing via dns
  44. set_fact:
  45. openshift_hosted_registry_env_vars: "{{ openshift_hosted_registry_env_vars | combine({'OPENSHIFT_DEFAULT_REGISTRY':'docker-registry.default.svc:5000'}) }}"
  46. when: openshift_push_via_dns | bool
  47. - name: Update registry proxy settings for dc/docker-registry
  48. set_fact:
  49. openshift_hosted_registry_env_vars: "{{ {'HTTPS_PROXY': (openshift.common.https_proxy | default('')),
  50. 'HTTP_PROXY': (openshift.common.http_proxy | default('')),
  51. 'NO_PROXY': (openshift.common.no_proxy | default(''))}
  52. | combine(openshift_hosted_registry_env_vars) }}"
  53. when: (openshift.common.https_proxy | default(False)) or (openshift.common.http_proxy | default('')) != ''
  54. - name: Create the registry service account
  55. oc_serviceaccount:
  56. name: "{{ openshift_hosted_registry_serviceaccount }}"
  57. namespace: "{{ openshift_hosted_registry_namespace }}"
  58. - name: Grant the registry service account access to the appropriate scc
  59. oc_adm_policy_user:
  60. user: "system:serviceaccount:{{ openshift_hosted_registry_namespace }}:{{ openshift_hosted_registry_serviceaccount }}"
  61. namespace: "{{ openshift_hosted_registry_namespace }}"
  62. resource_kind: scc
  63. resource_name: hostnetwork
  64. - name: oc adm policy add-cluster-role-to-user system:registry system:serviceaccount:default:registry
  65. oc_adm_policy_user:
  66. user: "system:serviceaccount:{{ openshift_hosted_registry_namespace }}:{{ openshift_hosted_registry_serviceaccount }}"
  67. namespace: "{{ openshift_hosted_registry_namespace }}"
  68. resource_kind: cluster-role
  69. resource_name: system:registry
  70. - name: create the default registry service
  71. oc_service:
  72. namespace: "{{ openshift_hosted_registry_namespace }}"
  73. name: "{{ openshift_hosted_registry_name }}"
  74. ports:
  75. - name: 5000-tcp
  76. port: 5000
  77. protocol: TCP
  78. targetPort: 5000
  79. selector:
  80. docker-registry: default
  81. session_affinity: ClientIP
  82. service_type: ClusterIP
  83. clusterip: '{{ openshift_hosted_registry_clusterip | default(omit) }}'
  84. - include_tasks: secure.yml
  85. run_once: true
  86. when:
  87. - not (openshift_docker_hosted_registry_insecure | default(False)) | bool
  88. - include_tasks: storage/object_storage.yml
  89. when:
  90. - openshift_hosted_registry_storage_kind | default(none) == 'object'
  91. - name: Update openshift_hosted facts for persistent volumes
  92. set_fact:
  93. openshift_hosted_registry_volumes: "{{ openshift_hosted_registry_volumes | union(pvc_volume_mounts) }}"
  94. vars:
  95. pvc_volume_mounts:
  96. - name: registry-storage
  97. type: persistentVolumeClaim
  98. claim_name: "{{ openshift_hosted_registry_storage_volume_name }}-claim"
  99. when:
  100. - openshift_hosted_registry_storage_kind | default(none) in ['nfs', 'openstack', 'glusterfs']
  101. - include_tasks: storage/glusterfs_endpoints.yml
  102. when:
  103. - openshift_hosted_registry_storage_glusterfs_ips|length > 0
  104. - openshift_hosted_registry_storage_kind | default(none) in ['glusterfs']
  105. - name: Create OpenShift registry
  106. oc_adm_registry:
  107. name: "{{ openshift_hosted_registry_name }}"
  108. namespace: "{{ openshift_hosted_registry_namespace }}"
  109. selector: "{{ openshift_hosted_registry_selector }}"
  110. replicas: "{{ openshift_hosted_registry_replicas | default(l_default_replicas) }}"
  111. service_account: "{{ openshift_hosted_registry_serviceaccount }}"
  112. images: "{{ penshift_hosted_registry_registryurl }}"
  113. env_vars: "{{ openshift_hosted_registry_env_vars }}"
  114. volume_mounts: "{{ openshift_hosted_registry_volumes }}"
  115. edits: "{{ openshift_hosted_registry_edits }}"
  116. force: "{{ True|bool in openshift_hosted_registry_force }}"
  117. - name: setup registry list
  118. set_fact:
  119. r_openshift_hosted_registry_list:
  120. - name: "{{ openshift_hosted_registry_name }}"
  121. namespace: "{{ openshift_hosted_registry_namespace }}"
  122. - name: Wait for pod (Registry)
  123. include_tasks: wait_for_pod.yml
  124. vars:
  125. l_openshift_hosted_wait_for_pod: "{{ openshift_hosted_registry_wait }}"
  126. l_openshift_hosted_wfp_items: "{{ r_openshift_hosted_registry_list }}"
  127. - include_tasks: storage/glusterfs.yml
  128. when:
  129. - openshift_hosted_registry_storage_kind | default(none) == 'glusterfs' or openshift_hosted_registry_storage_glusterfs_swap
  130. - name: Delete temp directory
  131. file:
  132. name: "{{ mktempHosted.stdout }}"
  133. state: absent
  134. changed_when: False
  135. check_mode: no