registry.yml 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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. - name: set openshift_hosted facts
  10. set_fact:
  11. # This determines the gluster_ips to use for the registry by looping over the glusterfs_registry group
  12. 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 %}"
  13. - name: Update registry environment variables when pushing via dns
  14. set_fact:
  15. openshift_hosted_registry_env_vars: "{{ openshift_hosted_registry_env_vars | combine({'REGISTRY_OPENSHIFT_SERVER_ADDR':'docker-registry.default.svc:5000'}) }}"
  16. when: openshift_push_via_dns | bool
  17. - name: Update registry proxy settings for dc/docker-registry
  18. set_fact:
  19. openshift_hosted_registry_env_vars: "{{ {'HTTPS_PROXY': (openshift.common.https_proxy | default('')),
  20. 'HTTP_PROXY': (openshift.common.http_proxy | default('')),
  21. 'NO_PROXY': (openshift.common.no_proxy | default(''))}
  22. | combine(openshift_hosted_registry_env_vars) }}"
  23. when: (openshift.common.https_proxy | default(False)) or (openshift.common.http_proxy | default('')) != ''
  24. - name: Create the registry service account
  25. oc_serviceaccount:
  26. name: "{{ openshift_hosted_registry_serviceaccount }}"
  27. namespace: "{{ openshift_hosted_registry_namespace }}"
  28. - name: Grant the registry service account access to the appropriate scc
  29. oc_adm_policy_user:
  30. user: "system:serviceaccount:{{ openshift_hosted_registry_namespace }}:{{ openshift_hosted_registry_serviceaccount }}"
  31. namespace: "{{ openshift_hosted_registry_namespace }}"
  32. resource_kind: scc
  33. resource_name: hostnetwork
  34. - name: oc adm policy add-cluster-role-to-user system:registry system:serviceaccount:default:registry
  35. oc_adm_policy_user:
  36. user: "system:serviceaccount:{{ openshift_hosted_registry_namespace }}:{{ openshift_hosted_registry_serviceaccount }}"
  37. namespace: "{{ openshift_hosted_registry_namespace }}"
  38. resource_kind: cluster-role
  39. resource_name: system:registry
  40. - name: create the default registry service
  41. oc_service:
  42. namespace: "{{ openshift_hosted_registry_namespace }}"
  43. name: "{{ openshift_hosted_registry_name }}"
  44. ports:
  45. - name: 5000-tcp
  46. port: 5000
  47. protocol: TCP
  48. targetPort: 5000
  49. selector:
  50. docker-registry: default
  51. session_affinity: ClientIP
  52. service_type: ClusterIP
  53. clusterip: '{{ openshift_hosted_registry_clusterip | default(omit) }}'
  54. - include_tasks: secure.yml
  55. run_once: true
  56. when:
  57. - not (openshift_docker_hosted_registry_insecure | default(False)) | bool
  58. - include_tasks: storage/object_storage.yml
  59. when:
  60. - openshift_hosted_registry_storage_kind | default(none) == 'object'
  61. - name: Update openshift_hosted facts for persistent volumes
  62. set_fact:
  63. openshift_hosted_registry_volumes: "{{ openshift_hosted_registry_volumes | union(pvc_volume_mounts) }}"
  64. vars:
  65. pvc_volume_mounts:
  66. - name: registry-storage
  67. type: persistentVolumeClaim
  68. claim_name: "{{ openshift_hosted_registry_storage_volume_name }}-claim"
  69. when:
  70. - openshift_hosted_registry_storage_kind | default(none) in ['nfs', 'glusterfs', 'hostpath', 'openstack', 'vsphere']
  71. - include_tasks: storage/glusterfs_endpoints.yml
  72. when:
  73. - openshift_hosted_registry_storage_glusterfs_ips|length > 0
  74. - openshift_hosted_registry_storage_kind | default(none) in ['glusterfs']
  75. - name: Create OpenShift registry
  76. oc_adm_registry:
  77. name: "{{ openshift_hosted_registry_name }}"
  78. namespace: "{{ openshift_hosted_registry_namespace }}"
  79. selector: "{{ openshift_hosted_registry_selector }}"
  80. replicas: "{{ openshift_hosted_registry_replicas }}"
  81. service_account: "{{ openshift_hosted_registry_serviceaccount }}"
  82. images: "{{ openshift_hosted_registry_registryurl }}"
  83. env_vars: "{{ openshift_hosted_registry_env_vars }}"
  84. volume_mounts: "{{ openshift_hosted_registry_volumes }}"
  85. edits: "{{ openshift_hosted_registry_edits }}"
  86. force: "{{ True|bool in openshift_hosted_registry_force }}"
  87. - include_tasks: storage/hostpath.yml
  88. when:
  89. - openshift_hosted_registry_storage_kind | default(none) in ['hostpath']