0
votes

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

3

3 Answers

2
votes

Try using these attributes:

deployment_type=origin
containerized=true
openshift_release=v1.4
openshift_image_tag=v1.4.0
0
votes

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.

0
votes

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