registry.yml 6.3 KB

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