diff options
author | Jason DeTiberus <jdetiber@redhat.com> | 2016-04-28 17:01:40 -0400 |
---|---|---|
committer | Jason DeTiberus <jdetiber@redhat.com> | 2016-04-28 17:01:40 -0400 |
commit | ccfff1481753e3ec177e80a3edf7f17975561a47 (patch) | |
tree | f9a4171d2cde8a70dcb4eff55154885218b4c9fb /roles/openshift_hosted_logging | |
parent | a33eab007abdbea46c2f914af2d8c01195701cf0 (diff) | |
download | openshift-ccfff1481753e3ec177e80a3edf7f17975561a47.tar.gz openshift-ccfff1481753e3ec177e80a3edf7f17975561a47.tar.bz2 openshift-ccfff1481753e3ec177e80a3edf7f17975561a47.tar.xz openshift-ccfff1481753e3ec177e80a3edf7f17975561a47.zip |
Fix templating issue with logging role
Diffstat (limited to 'roles/openshift_hosted_logging')
-rw-r--r-- | roles/openshift_hosted_logging/tasks/deploy_logging.yaml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/roles/openshift_hosted_logging/tasks/deploy_logging.yaml b/roles/openshift_hosted_logging/tasks/deploy_logging.yaml index d8a5b62a0..d79328868 100644 --- a/roles/openshift_hosted_logging/tasks/deploy_logging.yaml +++ b/roles/openshift_hosted_logging/tasks/deploy_logging.yaml @@ -15,7 +15,8 @@ changed_when: False - name: "Create logging project" - command: {{ openshift.common.admin_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig new-project logging + command: > + {{ openshift.common.admin_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig new-project logging - name: "Changing projects" command: "{{ openshift.common.client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig project logging" |