diff options
author | Brenton Leanhardt <bleanhar@redhat.com> | 2016-01-06 14:57:49 -0500 |
---|---|---|
committer | Brenton Leanhardt <bleanhar@redhat.com> | 2016-01-06 14:59:20 -0500 |
commit | 611159cc3ce834f546880e3bc65de2e708697598 (patch) | |
tree | 904f95eff62e279e63e7bfc4ef40ce603b9de6f5 /playbooks/aws | |
parent | 31a18b4e6096451bd81603b92a2d4cf7d21cecef (diff) | |
download | openshift-611159cc3ce834f546880e3bc65de2e708697598.tar.gz openshift-611159cc3ce834f546880e3bc65de2e708697598.tar.bz2 openshift-611159cc3ce834f546880e3bc65de2e708697598.tar.xz openshift-611159cc3ce834f546880e3bc65de2e708697598.zip |
Setting relative paths in the upgrade playbooks wasn't working
Diffstat (limited to 'playbooks/aws')
-rw-r--r-- | playbooks/aws/openshift-cluster/upgrades/v3_0_to_v3_1/upgrade.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/playbooks/aws/openshift-cluster/upgrades/v3_0_to_v3_1/upgrade.yml b/playbooks/aws/openshift-cluster/upgrades/v3_0_to_v3_1/upgrade.yml index 231356798..11026e38d 100644 --- a/playbooks/aws/openshift-cluster/upgrades/v3_0_to_v3_1/upgrade.yml +++ b/playbooks/aws/openshift-cluster/upgrades/v3_0_to_v3_1/upgrade.yml @@ -4,8 +4,8 @@ # ansible-playbook playbooks/aws/openshift-cluster/upgrades/v3_0_to_v3_1/upgrade.yml -e deployment_type=online -e cluster_id=<cluster_id> - include: ../../../../common/openshift-cluster/upgrades/v3_0_to_v3_1/upgrade.yml vars_files: - - ../../../../aws/openshift-cluster/vars.yml - - ../../../../aws/openshift-cluster/cluster_hosts.yml + - "{{lookup('file', '../../../../aws/openshift-cluster/vars.yml')}}" + - "{{lookup('file', '../../../../aws/openshift-cluster/cluster_hosts.yml')}}" vars: g_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}" g_sudo: "{{ deployment_vars[deployment_type].sudo }}" |