Fix cluster details form validation

This commit is contained in:
Enrique Alcantara 2019-04-03 10:40:11 -04:00
parent 842203ff33
commit 9580c93b82
2 changed files with 42 additions and 55 deletions

View File

@ -1,58 +1,51 @@
= form_for cluster, url: update_cluster_url_path, as: :cluster do |field| = bootstrap_form_for cluster, url: update_cluster_url_path, html: { class: 'gl-show-field-errors' },
= form_errors(cluster) as: :cluster do |field|
- copy_name_btn = clipboard_button(text: cluster.name, title: s_('ClusterIntegration|Copy Kubernetes cluster name'),
.form-group class: 'input-group-text btn-default') unless !cluster.read_only_kubernetes_platform_fields?
- if cluster.read_only_kubernetes_platform_fields? = field.text_field :name, class: 'js-select-on-focus cluster-name', required: true,
%label.append-bottom-10{ for: 'cluster-name' } title: s_('ClusterIntegration|Cluster name is required.'),
= s_('ClusterIntegration|Kubernetes cluster name') readonly: cluster.read_only_kubernetes_platform_fields?,
.input-group label: s_('ClusterIntegration|Kubernetes cluster name'), label_class: 'label-bold',
%input.form-control.cluster-name.js-select-on-focus{ value: cluster.name, readonly: true } input_group_class: 'gl-field-error-anchor', append: copy_name_btn
%span.input-group-append
= clipboard_button(text: cluster.name, title: s_('ClusterIntegration|Copy Kubernetes cluster name'), class: 'input-group-text btn-default')
- else
= field.label :name, s_('ClusterIntegration|Kubernetes cluster name'), class: 'label-bold'
.input-group
= field.text_field :name, class: 'form-control', placeholder: s_('ClusterIntegration|Kubernetes cluster name')
= field.fields_for :platform_kubernetes, platform do |platform_field| = field.fields_for :platform_kubernetes, platform do |platform_field|
.form-group - copy_api_url = clipboard_button(text: platform.api_url, title: s_('ClusterIntegration|Copy API URL'),
= platform_field.label :api_url, s_('ClusterIntegration|API URL') class: 'input-group-text btn-default') unless !cluster.read_only_kubernetes_platform_fields?
.input-group = platform_field.text_field :api_url, class: 'js-select-on-focus', required: true,
= platform_field.text_field :api_url, class: 'form-control js-select-on-focus', placeholder: s_('ClusterIntegration|API URL'), readonly: cluster.read_only_kubernetes_platform_fields? title: s_('ClusterIntegration|API URL should be a valid http/https url.'),
- if cluster.read_only_kubernetes_platform_fields? readonly: cluster.read_only_kubernetes_platform_fields?,
%span.input-group-append label: s_('ClusterIntegration|API URL'), label_class: 'label-bold',
= clipboard_button(text: platform.api_url, title: s_('ClusterIntegration|Copy API URL'), class: 'input-group-text btn-default') input_group_class: 'gl-field-error-anchor', append: copy_api_url
.form-group - copy_ca_cert_btn = clipboard_button(text: platform.ca_cert, title: s_('ClusterIntegration|Copy CA Certificate'),
= platform_field.label :ca_cert, s_('ClusterIntegration|CA Certificate') class: 'input-group-text btn-default') unless !cluster.read_only_kubernetes_platform_fields?
.input-group = platform_field.text_area :ca_cert, class: 'js-select-on-focus', rows: '5',
= platform_field.text_area :ca_cert, class: 'form-control js-select-on-focus', placeholder: s_('ClusterIntegration|Certificate Authority bundle (PEM format)'), readonly: cluster.read_only_kubernetes_platform_fields? readonly: cluster.read_only_kubernetes_platform_fields?,
- if cluster.read_only_kubernetes_platform_fields? placeholder: s_('ClusterIntegration|Certificate Authority bundle (PEM format)'),
%span.input-group-append.clipboard-addon label: s_('ClusterIntegration|CA Certificate'), label_class: 'label-bold',
= clipboard_button(text: platform.ca_cert, title: s_('ClusterIntegration|Copy CA Certificate'), class: 'input-group-text btn-blank') input_group_class: 'gl-field-error-anchor', append: copy_ca_cert_btn
.form-group - show_token_btn = (platform_field.button s_('ClusterIntegration|Show'),
= platform_field.label :token, s_('ClusterIntegration|Token') type: 'button', class: 'js-show-cluster-token btn btn-default')
.input-group - copy_token_btn = clipboard_button(text: platform.token, title: s_('ClusterIntegration|Copy Service Token'),
= platform_field.text_field :token, class: 'form-control js-cluster-token js-select-on-focus', type: 'password', placeholder: s_('ClusterIntegration|Token'), readonly: cluster.read_only_kubernetes_platform_fields? class: 'input-group-text btn-default') unless !cluster.read_only_kubernetes_platform_fields?
%span.input-group-append
%button.btn.btn-default.input-group-text.js-show-cluster-token{ type: 'button' } = platform_field.text_field :token, type: 'password', class: 'js-select-on-focus js-cluster-token',
= s_('ClusterIntegration|Show') required: true, title: s_('ClusterIntegration|Service token is required.'),
- if cluster.read_only_kubernetes_platform_fields? readonly: cluster.read_only_kubernetes_platform_fields?,
= clipboard_button(text: platform.token, title: s_('ClusterIntegration|Copy Token'), class: 'btn-default') label: s_('ClusterIntegration|Service Token'), label_class: 'label-bold',
input_group_class: 'gl-field-error-anchor', append: show_token_btn + copy_token_btn
- if cluster.allow_user_defined_namespace? - if cluster.allow_user_defined_namespace?
.form-group = platform_field.text_field :namespace, label: s_('ClusterIntegration|Project namespace (optional, unique)'),
= platform_field.label :namespace, s_('ClusterIntegration|Project namespace (optional, unique)') label_class: 'label-bold'
= platform_field.text_field :namespace, class: 'form-control', placeholder: s_('ClusterIntegration|Project namespace')
.form-group = platform_field.form_group :authorization_type do
.form-check = platform_field.check_box :authorization_type, { disabled: true, label: s_('ClusterIntegration|RBAC-enabled cluster'),
= platform_field.check_box :authorization_type, { class: 'form-check-input', disabled: true }, 'rbac', 'abac' label_class: 'label-bold', inline: true }, 'rbac', 'abac'
= platform_field.label :authorization_type, s_('ClusterIntegration|RBAC-enabled cluster'), class: 'form-check-label label-bold' .form-text.text-muted
.form-text.text-muted = s_('ClusterIntegration|Enable this setting if using role-based access control (RBAC).')
= s_('ClusterIntegration|Enable this setting if using role-based access control (RBAC).') = s_('ClusterIntegration|This option will allow you to install applications on RBAC clusters.')
= s_('ClusterIntegration|This option will allow you to install applications on RBAC clusters.')
.form-group .form-group
= field.submit s_('ClusterIntegration|Save changes'), class: 'btn btn-success' = field.submit s_('ClusterIntegration|Save changes'), class: 'btn btn-success'

View File

@ -1797,7 +1797,7 @@ msgstr ""
msgid "ClusterIntegration|Copy Kubernetes cluster name" msgid "ClusterIntegration|Copy Kubernetes cluster name"
msgstr "" msgstr ""
msgid "ClusterIntegration|Copy Token" msgid "ClusterIntegration|Copy Service Token"
msgstr "" msgstr ""
msgid "ClusterIntegration|Create Kubernetes cluster" msgid "ClusterIntegration|Create Kubernetes cluster"
@ -2004,9 +2004,6 @@ msgstr ""
msgid "ClusterIntegration|Project cluster" msgid "ClusterIntegration|Project cluster"
msgstr "" msgstr ""
msgid "ClusterIntegration|Project namespace"
msgstr ""
msgid "ClusterIntegration|Project namespace (optional, unique)" msgid "ClusterIntegration|Project namespace (optional, unique)"
msgstr "" msgstr ""
@ -2109,9 +2106,6 @@ msgstr ""
msgid "ClusterIntegration|Toggle Kubernetes cluster" msgid "ClusterIntegration|Toggle Kubernetes cluster"
msgstr "" msgstr ""
msgid "ClusterIntegration|Token"
msgstr ""
msgid "ClusterIntegration|Update failed. Please check the logs and try again." msgid "ClusterIntegration|Update failed. Please check the logs and try again."
msgstr "" msgstr ""