Commit 3016a2a3 authored by Dylan Griffith's avatar Dylan Griffith

Remove TLD validation from Cluster#domain

parent 482b91d5
...@@ -50,7 +50,7 @@ module Clusters ...@@ -50,7 +50,7 @@ module Clusters
validates :name, cluster_name: true validates :name, cluster_name: true
validates :cluster_type, presence: 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 :restrict_modification, on: :update
validate :no_groups, unless: :group_type? validate :no_groups, unless: :group_type?
......
---
title: Fixes incorrect TLD validation errors for Kubernetes cluster domain
merge_request: 25262
author:
type: fixed
...@@ -453,7 +453,7 @@ describe Groups::ClustersController do ...@@ -453,7 +453,7 @@ describe Groups::ClustersController do
end end
context 'when domain is invalid' do 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 it 'should not update cluster attributes' do
go go
......
...@@ -265,12 +265,12 @@ describe Clusters::Cluster do ...@@ -265,12 +265,12 @@ describe Clusters::Cluster do
it { is_expected.to be_valid } it { is_expected.to be_valid }
end end
context 'when cluster has an invalid domain' do context 'when cluster is not a valid hostname' do
let(:cluster) { build(:cluster, domain: 'not-valid-domain') } let(:cluster) { build(:cluster, domain: 'http://not.a.valid.hostname') }
it 'should add an error on domain' do it 'should add an error on domain' do
expect(subject).not_to be_valid 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
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment