Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_registry.html.haml « application_settings « admin « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 364a7cf5a8e09630f05b144be3fbb52e37922855 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
= form_for @application_setting, url: ci_cd_admin_application_settings_path(anchor: 'js-registry-settings'), html: { class: 'fieldset-form' } do |f|
  = form_errors(@application_setting)

  %fieldset
    .form-group
      = f.label :container_registry_token_expire_delay, _('Authorization token duration (minutes)'), class: 'label-bold'
      = f.number_field :container_registry_token_expire_delay, class: 'form-control gl-form-input'
    .form-group
      .form-check
        = f.check_box :container_expiration_policies_enable_historic_entries, class: 'form-check-input'
        = f.label :container_expiration_policies_enable_historic_entries, class: 'form-check-label' do
          = _("Enable container expiration and retention policies for projects created earlier than GitLab 12.7.")
          = link_to sprite_icon('question-o'), help_page_path('user/packages/container_registry/reduce_container_registry_storage', anchor: 'cleanup-policy')
        .form-text.text-muted
          = _("Existing projects will be able to use expiration policies. Avoid enabling this if an external Container Registry is being used, as there is a performance risk if many images exist on one project.")
          = link_to sprite_icon('question-o'), help_page_path('user/packages/container_registry/reduce_container_registry_storage', anchor: 'use-with-external-container-registries')
    - if container_registry_expiration_policies_throttling?
      .form-group
        = f.label :container_registry_delete_tags_service_timeout, _('Cleanup policy maximum processing time (seconds)'), class: 'label-bold'
        = f.number_field :container_registry_delete_tags_service_timeout, min: 0, class: 'form-control gl-form-input'
        .form-text.text-muted
          = _("Tags are deleted until the timeout is reached. Any remaining tags are included the next time the policy runs. To remove the time limit, set it to 0.")
      .form-group
        = f.label :container_registry_expiration_policies_worker_capacity, _('Cleanup policy maximum workers running concurrently'), class: 'label-bold'
        = f.number_field :container_registry_expiration_policies_worker_capacity, min: 0, class: 'form-control'
        .form-text.text-muted
          = _("Cleanup policies are executed by background workers. This setting defines the maximum number of workers that can run concurrently. Set it to 0 to remove all workers and not execute the cleanup policies.")
      .form-group
        = f.label :container_registry_cleanup_tags_service_max_list_size, _('Cleanup policy maximum number of tags to be deleted'), class: 'label-bold'
        = f.number_field :container_registry_cleanup_tags_service_max_list_size, min: 0, class: 'form-control'
        .form-text.text-muted
          = _("The maximum number of tags that a single worker accepts for cleanup. If the number of tags goes above this limit, the list of tags to delete is truncated to this number. To remove this limit, set it to 0.")
      .form-group
        .form-check
          = f.check_box :container_registry_expiration_policies_caching, class: 'form-check-input'
          = f.label :container_registry_expiration_policies_caching, class: 'form-check-label' do
            = _("Enable container expiration caching.")
          .form-text.text-muted
            = _("When enabled, cleanup polices execute faster but put more load on Redis.")
            = link_to sprite_icon('question-o'), help_page_path('user/packages/container_registry/reduce_container_registry_storage', anchor: 'set-cleanup-limits-to-conserve-resources')

  = f.submit _('Save changes'), class: "gl-button btn btn-confirm"