registry_config.j2 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. version: 0.1
  2. log:
  3. level: debug
  4. http:
  5. addr: :5000
  6. storage:
  7. cache:
  8. blobdescriptor: inmemory
  9. {% if openshift.hosted.registry.storage.provider == 's3' %}
  10. s3:
  11. accesskey: {{ openshift.hosted.registry.storage.s3.accesskey }}
  12. secretkey: {{ openshift.hosted.registry.storage.s3.secretkey }}
  13. region: {{ openshift.hosted.registry.storage.s3.region }}
  14. bucket: {{ openshift.hosted.registry.storage.s3.bucket }}
  15. encrypt: false
  16. secure: true
  17. v4auth: true
  18. rootdirectory: /registry
  19. chunksize: "{{ openshift.hosted.registry.storage.s3.chunksize | default(26214400) }}"
  20. {% elif openshift.hosted.registry.storage.provider == 'azure_blob' %}
  21. azure:
  22. accountname: {{ openshift.hosted.registry.storage.azure_blob.accountname }}
  23. accountkey: {{ openshift.hosted.registry.storage.azure_blob.accountkey }}
  24. container: {{ openshift.hosted.registry.storage.azure_blob.container }}
  25. realm: {{ openshift.hosted.registry.storage.azure_blob.realm }}
  26. {% elif openshift.hosted.registry.storage.provider == 'swift' %}
  27. swift:
  28. authurl: {{ openshift.hosted.registry.storage.swift.authurl }}
  29. username: {{ openshift.hosted.registry.storage.swift.username }}
  30. password: {{ openshift.hosted.registry.storage.swift.password }}
  31. container: {{ openshift.hosted.registry.storage.swift.container }}
  32. {% if 'region' in openshift.hosted.registry.storage.swift %}
  33. region: {{ openshift.hosted.registry.storage.swift.region }}
  34. {% endif -%}
  35. {% if 'tenant' in openshift.hosted.registry.storage.swift %}
  36. tenant: {{ openshift.hosted.registry.storage.swift.tenant }}
  37. {% endif -%}
  38. {% if 'tenantid' in openshift.hosted.registry.storage.swift %}
  39. tenantid: {{ openshift.hosted.registry.storage.swift.tenantid }}
  40. {% endif -%}
  41. {% if 'domain' in openshift.hosted.registry.storage.swift %}
  42. domain: {{ openshift.hosted.registry.storage.swift.domain }}
  43. {% endif -%}
  44. {% if 'domainid' in openshift.hosted.registry.storage.swift %}
  45. domainid: {{ openshift.hosted.registry.storage.swift.domainid }}
  46. {% endif -%}
  47. {% elif openshift.hosted.registry.storage.provider == 'gcs' %}
  48. gcs:
  49. bucket: {{ openshift.hosted.registry.storage.gcs.bucket }}
  50. {% if 'keyfile' in openshift.hosted.registry.storage.gcs %}
  51. keyfile: {{ openshift.hosted.registry.storage.gcs.keyfile }}
  52. {% endif -%}
  53. {% if 'rootdirectory' in openshift.hosted.registry.storage.gcs %}
  54. rootdirectory: {{ openshift.hosted.registry.storage.gcs.rootdirectory }}
  55. {% endif -%}
  56. {% endif -%}
  57. auth:
  58. openshift:
  59. realm: openshift
  60. middleware:
  61. repository:
  62. - name: openshift
  63. {% if openshift.hosted.registry.storage.provider == 's3' and 'cloudfront' in openshift.hosted.registry.storage.s3 %}
  64. storage:
  65. - name: cloudfront
  66. options:
  67. baseurl: {{ openshift.hosted.registry.storage.s3.cloudfront.baseurl }}
  68. privatekey: {{ openshift.hosted.registry.storage.s3.cloudfront.privatekeyfile }}
  69. keypairid: {{ openshift.hosted.registry.storage.s3.cloudfront.keypairid }}
  70. {% endif -%}