diff options
| author | Andrew Butcher <abutcher@redhat.com> | 2016-07-25 18:10:48 -0400 | 
|---|---|---|
| committer | Andrew Butcher <abutcher@redhat.com> | 2016-07-25 18:10:48 -0400 | 
| commit | 1c05e9e6933f11156fd893083e479113fdbdc23b (patch) | |
| tree | 7c12984db9fcc013bb2a46b2e6abc371cd95eaca /playbooks | |
| parent | 755f1306066aa1fe78972d4af6e87afff57b5bc6 (diff) | |
| download | openshift-1c05e9e6933f11156fd893083e479113fdbdc23b.tar.gz openshift-1c05e9e6933f11156fd893083e479113fdbdc23b.tar.bz2 openshift-1c05e9e6933f11156fd893083e479113fdbdc23b.tar.xz openshift-1c05e9e6933f11156fd893083e479113fdbdc23b.zip | |
Template named certificates with_items.
Diffstat (limited to 'playbooks')
| -rw-r--r-- | playbooks/common/openshift-master/config.yml | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/playbooks/common/openshift-master/config.yml b/playbooks/common/openshift-master/config.yml index 37900a1e3..2f12b08c9 100644 --- a/playbooks/common/openshift-master/config.yml +++ b/playbooks/common/openshift-master/config.yml @@ -224,11 +224,11 @@      when: named_certs_specified | bool    - name: Land named certificates      copy: src="{{ item.certfile }}" dest="{{ named_certs_dir }}" -    with_items: openshift_master_named_certificates +    with_items: "{{ openshift_master_named_certificates }}"      when: named_certs_specified | bool    - name: Land named certificate keys      copy: src="{{ item.keyfile }}" dest="{{ named_certs_dir }}" mode=0600 -    with_items: openshift_master_named_certificates +    with_items: "{{ openshift_master_named_certificates }}"      when: named_certs_specified | bool  - name: Configure masters | 
