diff options
author | Dan Osborne <djosborne10@gmail.com> | 2017-08-17 17:42:52 -0700 |
---|---|---|
committer | Dan Osborne <djosborne10@gmail.com> | 2017-08-17 17:42:52 -0700 |
commit | ddfe82bd796b9b77a50b4b1ed55b941d8f621b23 (patch) | |
tree | b1ed453785f42308fb4ad34ae26ddee92f41d126 | |
parent | eedee4481030c8a34c27e7c426671e508f0f8909 (diff) | |
download | openshift-ddfe82bd796b9b77a50b4b1ed55b941d8f621b23.tar.gz openshift-ddfe82bd796b9b77a50b4b1ed55b941d8f621b23.tar.bz2 openshift-ddfe82bd796b9b77a50b4b1ed55b941d8f621b23.tar.xz openshift-ddfe82bd796b9b77a50b4b1ed55b941d8f621b23.zip |
Fix missing space in calico ansible roles
-rw-r--r-- | roles/calico/defaults/main.yaml | 2 | ||||
-rw-r--r-- | roles/calico/tasks/main.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/roles/calico/defaults/main.yaml b/roles/calico/defaults/main.yaml index 03c96be36..b1907f8cb 100644 --- a/roles/calico/defaults/main.yaml +++ b/roles/calico/defaults/main.yaml @@ -1,5 +1,5 @@ --- -kubeconfig: "{{openshift.common.config_base}}/node/{{ 'system:node:' + openshift.common.hostname }}.kubeconfig" +kubeconfig: "{{ openshift.common.config_base }}/node/{{ 'system:node:' + openshift.common.hostname }}.kubeconfig" cni_conf_dir: "/etc/cni/net.d/" cni_bin_dir: "/opt/cni/bin/" diff --git a/roles/calico/tasks/main.yml b/roles/calico/tasks/main.yml index e62378532..39f730462 100644 --- a/roles/calico/tasks/main.yml +++ b/roles/calico/tasks/main.yml @@ -38,7 +38,7 @@ path: "{{ item }}" with_items: - "{{ calico_etcd_ca_cert_file }}" - - "{{ calico_etcd_cert_file}}" + - "{{ calico_etcd_cert_file }}" - "{{ calico_etcd_key_file }}" - name: Calico Node | Configure Calico service unit file |