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

_namespace.html.haml « clusters « clusters « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6412972e195dc16238d4d5c282b5fdca08bc1256 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
- managed_namespace_help_text = s_('ClusterIntegration|Set a prefix for your namespaces. If not set, defaults to your project path. If modified, existing environments will use their current namespaces until the cluster cache is cleared.')
- non_managed_namespace_help_text = s_('ClusterIntegration|The namespace associated with your project. This will be used for deploy boards, logs, and Web terminals.')
- managed_namespace_help_link = link_to _('More information'), help_page_path('user/project/clusters/gitlab_managed_clusters.md'), target: '_blank'

.js-namespace-prefixed
  = platform_field.text_field :namespace,
    label: s_('ClusterIntegration|Project namespace prefix (optional, unique)'), label_class: 'label-bold',
    help: '%{help_text} %{help_link}'.html_safe % { help_text: managed_namespace_help_text, help_link: managed_namespace_help_link }
.js-namespace.hidden
  = platform_field.text_field :namespace,
    label: s_('ClusterIntegration|Project namespace (optional, unique)'), label_class: 'label-bold',
    help: '%{help_text}'.html_safe % { help_text: non_managed_namespace_help_text },
    disabled: true