registry.yml 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. ---
  2. - name: setup firewall
  3. include: 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 | default(omit) }}"
  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. openshift_hosted_registry_replicas: "{{ openshift.hosted.registry.replicas | default(l_default_replicas) }}"
  37. openshift_hosted_registry_namespace: "{{ openshift.hosted.registry.namespace | default('default') }}"
  38. openshift_hosted_registry_selector: "{{ openshift.hosted.registry.selector }}"
  39. openshift_hosted_registry_images: "{{ openshift.hosted.registry.registryurl | default('openshift3/ose-${component}:${version}')}}"
  40. - name: Update registry environment variables when pushing via dns
  41. set_fact:
  42. openshift_hosted_registry_env_vars: "{{ openshift_hosted_registry_env_vars | combine({'OPENSHIFT_DEFAULT_REGISTRY':'docker-registry.default.svc:5000'}) }}"
  43. when: openshift_push_via_dns | bool
  44. - name: Update registry proxy settings for dc/docker-registry
  45. set_fact:
  46. openshift_hosted_registry_env_vars: "{{ {'HTTPS_PROXY': (openshift.common.https_proxy | default('')),
  47. 'HTTP_PROXY': (openshift.common.http_proxy | default('')),
  48. 'NO_PROXY': (openshift.common.no_proxy | default(''))}
  49. | combine(openshift_hosted_registry_env_vars) }}"
  50. when: (openshift.common.https_proxy | default(False)) or (openshift.common.http_proxy | default('')) != ''
  51. - name: Create the registry service account
  52. oc_serviceaccount:
  53. name: "{{ openshift_hosted_registry_serviceaccount }}"
  54. namespace: "{{ openshift_hosted_registry_namespace }}"
  55. - name: Grant the registry service account access to the appropriate scc
  56. oc_adm_policy_user:
  57. user: "system:serviceaccount:{{ openshift_hosted_registry_namespace }}:{{ openshift_hosted_registry_serviceaccount }}"
  58. namespace: "{{ openshift_hosted_registry_namespace }}"
  59. resource_kind: scc
  60. resource_name: hostnetwork
  61. - name: oc adm policy add-cluster-role-to-user system:registry system:serviceaccount:default:registry
  62. oc_adm_policy_user:
  63. user: "system:serviceaccount:{{ openshift_hosted_registry_namespace }}:{{ openshift_hosted_registry_serviceaccount }}"
  64. namespace: "{{ openshift_hosted_registry_namespace }}"
  65. resource_kind: cluster-role
  66. resource_name: system:registry
  67. - name: create the default registry service
  68. oc_service:
  69. namespace: "{{ openshift_hosted_registry_namespace }}"
  70. name: "{{ openshift_hosted_registry_name }}"
  71. ports:
  72. - name: 5000-tcp
  73. port: 5000
  74. protocol: TCP
  75. targetPort: 5000
  76. selector:
  77. docker-registry: default
  78. session_affinity: ClientIP
  79. service_type: ClusterIP
  80. clusterip: '{{ openshift_hosted_registry_clusterip | default(omit) }}'
  81. - include: secure.yml
  82. static: no
  83. run_once: true
  84. when:
  85. - not (openshift.docker.hosted_registry_insecure | default(false) | bool)
  86. - include: storage/object_storage.yml
  87. static: no
  88. when:
  89. - openshift.hosted.registry.storage.kind | default(none) == 'object'
  90. - name: Update openshift_hosted facts for persistent volumes
  91. set_fact:
  92. openshift_hosted_registry_volumes: "{{ openshift_hosted_registry_volumes | union(pvc_volume_mounts) }}"
  93. vars:
  94. pvc_volume_mounts:
  95. - name: registry-storage
  96. type: persistentVolumeClaim
  97. claim_name: "{{ openshift.hosted.registry.storage.volume.name }}-claim"
  98. when:
  99. - openshift.hosted.registry.storage.kind | default(none) in ['nfs', 'openstack', '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 }}"
  106. service_account: "{{ openshift_hosted_registry_serviceaccount }}"
  107. images: "{{ openshift_hosted_registry_images }}"
  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. - name: setup registry list
  113. set_fact:
  114. r_openshift_hosted_registry_list:
  115. - name: "{{ openshift_hosted_registry_name }}"
  116. namespace: "{{ openshift_hosted_registry_namespace }}"
  117. - name: Wait for pod (Registry)
  118. include: wait_for_pod.yml
  119. vars:
  120. l_openshift_hosted_wait_for_pod: "{{ openshift_hosted_registry_wait }}"
  121. l_openshift_hosted_wfp_items: "{{ r_openshift_hosted_registry_list }}"
  122. - include: storage/glusterfs.yml
  123. when:
  124. - openshift.hosted.registry.storage.kind | default(none) == 'glusterfs' or openshift.hosted.registry.storage.glusterfs.swap