openshift-ansible fixes merged upstream, remove osbs work arounds
Signed-off-by: Adam Miller <admiller@redhat.com>
This commit is contained in:
parent
f40ce9d969
commit
a534e0b447
3 changed files with 10 additions and 14 deletions
|
@ -22,15 +22,7 @@ osbs_client_conf_path: /etc/osbs.conf
|
||||||
|
|
||||||
# openshift-ansible variables
|
# openshift-ansible variables
|
||||||
|
|
||||||
#
|
oa_version: release-1.5
|
||||||
# FIXME - Use my branch and fork for stage until this issue is resolved:
|
|
||||||
#
|
|
||||||
# https://github.com/openshift/openshift-ansible/issues/4801
|
|
||||||
#
|
|
||||||
# oa_version: openshift-ansible-3.5.101-1
|
|
||||||
#
|
|
||||||
oa_version: fix-fedora-python-check-3.5.101
|
|
||||||
|
|
||||||
oa_ssh_user: root
|
oa_ssh_user: root
|
||||||
oa_install_examples: false
|
oa_install_examples: false
|
||||||
oa_containerized_deploy: false
|
oa_containerized_deploy: false
|
||||||
|
|
|
@ -60,6 +60,13 @@
|
||||||
option: pipelining
|
option: pipelining
|
||||||
value: "True"
|
value: "True"
|
||||||
|
|
||||||
|
- name: Install necessary packages that openshift-ansible control host needs
|
||||||
|
package: name="{{ item }}" state=installed
|
||||||
|
with_items:
|
||||||
|
- ansible
|
||||||
|
- git
|
||||||
|
- java-1.8.0-openjdk-headless
|
||||||
|
|
||||||
|
|
||||||
# This section sets up the SSL Certs for "public facing" which is how Koji will
|
# This section sets up the SSL Certs for "public facing" which is how Koji will
|
||||||
# interact with the OSBS Orchestration cluster. This is not needed on the worker
|
# interact with the OSBS Orchestration cluster. This is not needed on the worker
|
||||||
|
@ -138,6 +145,7 @@
|
||||||
- libselinux-python3
|
- libselinux-python3
|
||||||
- origin
|
- origin
|
||||||
- python3-PyYAML
|
- python3-PyYAML
|
||||||
|
- java-1.8.0-openjdk-headless
|
||||||
|
|
||||||
- name: Deploy controller public ssh keys to osbs cluster hosts
|
- name: Deploy controller public ssh keys to osbs cluster hosts
|
||||||
authorized_key:
|
authorized_key:
|
||||||
|
|
|
@ -16,13 +16,9 @@
|
||||||
version: "{{ openshift_ansible_version }}"
|
version: "{{ openshift_ansible_version }}"
|
||||||
when: env == "production"
|
when: env == "production"
|
||||||
|
|
||||||
# FIXME - Use my branch and fork for stage until this issue is resolved:
|
|
||||||
#
|
|
||||||
# https://github.com/openshift/openshift-ansible/issues/4801
|
|
||||||
#
|
|
||||||
- name: git clone the openshift-ansible repo
|
- name: git clone the openshift-ansible repo
|
||||||
git:
|
git:
|
||||||
repo: "https://github.com/maxamillion/openshift-ansible.git"
|
repo: "https://github.com/openshift/openshift-ansible.git"
|
||||||
dest: "{{ openshift_ansible_path }}"
|
dest: "{{ openshift_ansible_path }}"
|
||||||
version: "{{ openshift_ansible_version }}"
|
version: "{{ openshift_ansible_version }}"
|
||||||
when: env == "staging"
|
when: env == "staging"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue