registry_config.j2 3.6 KB

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