소스 검색

atomic-openshift-installer: add containerized to inventory

Updates to actually check the containerized setting and add it
to the inventory.
Samuel Munilla 9 년 전
부모
커밋
eb6cb4ff6c
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      utils/src/ooinstall/openshift_ansible.py

+ 2 - 0
utils/src/ooinstall/openshift_ansible.py

@@ -128,6 +128,8 @@ def write_host(host, inventory, schedulable=None):
         facts += ' openshift_hostname={}'.format(host.hostname)
     if host.public_hostname:
         facts += ' openshift_public_hostname={}'.format(host.public_hostname)
+    if host.containerized:
+        facts += ' containerized={}'.format(host.containerized)
     # TODO: For not write_host is handles both master and nodes.
     # Technically only nodes will ever need this.