Reputation: 1
I'm using this ansible script https://github.com/openshift/openshift-ansible (with master branch or release-1.4). And I want to install openshift-origin 1.4, but by default, the ansible installs a 1.3 version(oc version).
I'm wondering is there any special config in ansible hosts that I need to install 1.4 ?
Thanks
Upvotes: 0
Views: 1184
Reputation: 398
What is the difference if you tried
git checkout tag/{openshift_ansible_version}
Look for the specific tag and you can check it out easily
Upvotes: 0
Reputation: 36
Try using these attributes:
deployment_type=origin
containerized=true
openshift_release=v1.4
openshift_image_tag=v1.4.0
Upvotes: 2
Reputation: 171
Take a look at the byo config for helpful examples. Specifically you're looking to add/change the following line in your Ansible hosts file:
openshift_release=v1.4
As someone who went through this installation yesterday, there are a few issues with deploying. Most notably: make sure you have Ansible version 2.2.0.0 installed. Version 2.2.1.0 causes an obscure issue when deploying. Additionally, make sure you checkout the release-1.4 branch of the openshift-ansible repo instead of master.
Upvotes: 0