Browse Source

Merge pull request #1685 from detiber/centos_sig

Switch to using CentOS SIG repos for Origin installs
Jason DeTiberus 8 years ago
parent
commit
51f0e95bb6

roles/openshift_repos/files/origin/repos/maxamillion-origin-next-epel-7.repo → roles/openshift_repos/files/removed/repos/maxamillion-origin-next-epel-7.repo


+ 6 - 0
roles/openshift_repos/tasks/centos_sig.yaml

@@ -0,0 +1,6 @@
+---
+- name: Install the CentOS PaaS SIG release packages
+  action: "{{ ansible_pkg_mgr }} name={{ item }} state=present"
+  with_items:
+  - centos-release-paas-common
+  - centos-release-openshift-origin

+ 14 - 4
roles/openshift_repos/tasks/main.yaml

@@ -35,7 +35,7 @@
     state: absent
   with_fileglob:
   - '*/repos/*'
-  when: not openshift.common.is_containerized | bool 
+  when: not openshift.common.is_containerized | bool
         and not (item | search("/files/" ~ openshift_deployment_type ~ "/repos"))
         and (ansible_os_family == "RedHat" and ansible_distribution != "Fedora")
   notify: refresh cache
@@ -52,14 +52,18 @@
   notify: refresh cache
 
 - name: Configure gpg keys if needed
-  copy: src="{{ item }}" dest=/etc/pki/rpm-gpg/
+  copy:
+    src: "{{ item }}"
+    dest: /etc/pki/rpm-gpg/
   with_fileglob:
   - "{{ openshift_deployment_type }}/gpg_keys/*"
   notify: refresh cache
   when: not openshift.common.is_containerized | bool
 
 - name: Configure yum repositories RHEL/CentOS
-  copy: src="{{ item }}" dest=/etc/yum.repos.d/
+  copy:
+    src: "{{ item }}"
+    dest: /etc/yum.repos.d/
   with_fileglob:
   - "{{ openshift_deployment_type }}/repos/*"
   notify: refresh cache
@@ -67,8 +71,14 @@
         and not openshift.common.is_containerized | bool
 
 - name: Configure yum repositories Fedora
-  copy: src="{{ item }}" dest=/etc/yum.repos.d/
+  copy:
+    src: "{{ item }}"
+    dest: /etc/yum.repos.d/
   with_fileglob:
   - "fedora-{{ openshift_deployment_type }}/repos/*"
   notify: refresh cache
   when: (ansible_distribution == "Fedora") and not openshift.common.is_containerized | bool
+
+- name: Configure the CentOS PaaS SIG repos if needed
+  include: centos_sig.yaml
+  when: not openshift.common.is_containerized | bool and deployment_type == 'origin' and ansible_distribution == 'CentOS'