[osbs] different package version per arch

This commit is contained in:
Mark O'Brien 2020-06-09 16:10:27 +01:00
parent c9bb09f93e
commit df38d67d44
2 changed files with 3 additions and 1 deletions

View file

@ -234,6 +234,7 @@
openshift_master_public_api_url: "https://{{ osbs_url }}:8443"
openshift_release: "v3.11"
openshift_version: "v3.11"
openshift_pkg_version: "-3.11*"
openshift_ansible_path: "/root/openshift-ansible"
openshift_ansible_pre_playbook: "playbooks/prerequisites.yml"
openshift_ansible_playbook: "playbooks/deploy_cluster.yml"
@ -274,6 +275,7 @@
openshift_master_public_api_url: "https://{{ osbs_url }}:8443"
openshift_release: "v3.11"
openshift_version: "v3.11"
openshift_pkg_version: "-3.11.1"
openshift_ansible_path: "/root/openshift-ansible"
openshift_ansible_pre_playbook: "playbooks/prerequisites.yml"
openshift_ansible_playbook: "playbooks/deploy_cluster.yml"

View file

@ -96,7 +96,7 @@ openshift_image_tag={{openshift_release}}
# Specify an exact rpm version to install or configure.
# WARNING: This value will be used for all hosts in RPM based environments, even those that have another version installed.
# This could potentially trigger an upgrade and downtime, so be careful with modifying this value after the cluster is set up.
openshift_pkg_version=-3.11.1
openshift_pkg_version={{openshift_pkg_version}}
# Install the openshift examples
{% if openshift_ansible_install_examples is defined %}
openshift_install_examples={{openshift_ansible_install_examples}}