소스 검색

Fix some bugs in OpenShift Hosted Logging role

* Fix bug: now create templates for logging accounts and the deployer use {{ examples_base }} variable
Stéphane Klein 8 년 전
부모
커밋
3006f38ed7
2개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 0
      roles/openshift_hosted_logging/defaults/main.yml
  2. 1 1
      roles/openshift_hosted_logging/tasks/deploy_logging.yaml

+ 2 - 0
roles/openshift_hosted_logging/defaults/main.yml

@@ -0,0 +1,2 @@
+---
+examples_base: "{{ openshift.common.config_base if openshift.common.is_containerized | bool else '/usr/share/openshift' }}/examples"

+ 1 - 1
roles/openshift_hosted_logging/tasks/deploy_logging.yaml

@@ -40,7 +40,7 @@
 
   - name: "Create templates for logging accounts and the deployer"
     command: >
-      {{ openshift.common.client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig create -f /usr/share/openshift/examples/infrastructure-templates/enterprise/logging-deployer.yaml
+      {{ openshift.common.client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig create -f {{ examples_base }}/infrastructure-templates/{{ 'enterprise' if openshift_deployment_type == 'openshift-enterprise' else 'origin' }}/logging-deployer.yaml
     register: template_output
     failed_when: "template_output.rc == 1 and 'exists' not in template_output.stderr"