소스 검색

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