diff options
author | Scott Dodson <sdodson@redhat.com> | 2017-09-12 09:26:24 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-12 09:26:24 -0400 |
commit | f4a328ad2dc1d1ba93efa15ac0bf4502bad40079 (patch) | |
tree | 69d911f4f345919acdc236394aaeb10d818ba01f /playbooks/common/openshift-cluster | |
parent | 555503784981589562a281e0d96ed89114a02e61 (diff) | |
parent | b626e982bdb87bffd3f05fcbfc05e40abadd84e2 (diff) | |
download | openshift-f4a328ad2dc1d1ba93efa15ac0bf4502bad40079.tar.gz openshift-f4a328ad2dc1d1ba93efa15ac0bf4502bad40079.tar.bz2 openshift-f4a328ad2dc1d1ba93efa15ac0bf4502bad40079.tar.xz openshift-f4a328ad2dc1d1ba93efa15ac0bf4502bad40079.zip |
Merge pull request #5353 from mgugino-upstream-stage/public_hostname_check
Add openshift_public_hostname length check
Diffstat (limited to 'playbooks/common/openshift-cluster')
-rw-r--r-- | playbooks/common/openshift-cluster/sanity_checks.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/playbooks/common/openshift-cluster/sanity_checks.yml b/playbooks/common/openshift-cluster/sanity_checks.yml index 7e28a11e8..26716a92d 100644 --- a/playbooks/common/openshift-cluster/sanity_checks.yml +++ b/playbooks/common/openshift-cluster/sanity_checks.yml @@ -45,3 +45,7 @@ - fail: msg: openshift_hostname must be 63 characters or less when: openshift_hostname is defined and openshift_hostname | length > 63 + + - fail: + msg: openshift_public_hostname must be 63 characters or less + when: openshift_public_hostname is defined and openshift_public_hostname | length > 63 |