瀏覽代碼

Merge pull request #5353 from mgugino-upstream-stage/public_hostname_check

Add openshift_public_hostname length check
Scott Dodson 7 年之前
父節點
當前提交
f4a328ad2d
共有 1 個文件被更改,包括 4 次插入0 次删除
  1. 4 0
      playbooks/common/openshift-cluster/sanity_checks.yml

+ 4 - 0
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