Merge branch '57650-remove-tld-validation-from-cluster' into 'master'
Remove TLD validation from cluster domain Closes #57650 See merge request gitlab-org/gitlab-ce!25262
This commit is contained in:
commit
d02ca09731
4 changed files with 10 additions and 5 deletions
|
@ -50,7 +50,7 @@ module Clusters
|
|||
|
||||
validates :name, cluster_name: true
|
||||
validates :cluster_type, presence: true
|
||||
validates :domain, allow_blank: true, hostname: { allow_numeric_hostname: true, require_valid_tld: true }
|
||||
validates :domain, allow_blank: true, hostname: { allow_numeric_hostname: true }
|
||||
|
||||
validate :restrict_modification, on: :update
|
||||
validate :no_groups, unless: :group_type?
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
title: Fixes incorrect TLD validation errors for Kubernetes cluster domain
|
||||
merge_request: 25262
|
||||
author:
|
||||
type: fixed
|
|
@ -453,7 +453,7 @@ describe Groups::ClustersController do
|
|||
end
|
||||
|
||||
context 'when domain is invalid' do
|
||||
let(:domain) { 'not-a-valid-domain' }
|
||||
let(:domain) { 'http://not-a-valid-domain' }
|
||||
|
||||
it 'should not update cluster attributes' do
|
||||
go
|
||||
|
|
|
@ -265,12 +265,12 @@ describe Clusters::Cluster do
|
|||
it { is_expected.to be_valid }
|
||||
end
|
||||
|
||||
context 'when cluster has an invalid domain' do
|
||||
let(:cluster) { build(:cluster, domain: 'not-valid-domain') }
|
||||
context 'when cluster is not a valid hostname' do
|
||||
let(:cluster) { build(:cluster, domain: 'http://not.a.valid.hostname') }
|
||||
|
||||
it 'should add an error on domain' do
|
||||
expect(subject).not_to be_valid
|
||||
expect(subject.errors[:domain].first).to eq('is not a fully qualified domain name')
|
||||
expect(subject.errors[:domain].first).to eq('contains invalid characters (valid characters: [a-z0-9\\-])')
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue