diff options
author | Suren A. Chilingaryan <csa@suren.me> | 2018-02-27 07:10:35 +0100 |
---|---|---|
committer | Suren A. Chilingaryan <csa@suren.me> | 2018-02-27 07:10:35 +0100 |
commit | 9ff59b4db572f63a78e2a35da95ac60d86a3a0c2 (patch) | |
tree | 57adf7bfecc8a1c2d637e1ba6088736fc234f168 /roles | |
parent | ec3bc59ab20c4c21b7cfd27065c1a9b811bd9518 (diff) | |
download | openshift-9ff59b4db572f63a78e2a35da95ac60d86a3a0c2.tar.gz openshift-9ff59b4db572f63a78e2a35da95ac60d86a3a0c2.tar.bz2 openshift-9ff59b4db572f63a78e2a35da95ac60d86a3a0c2.tar.xz openshift-9ff59b4db572f63a78e2a35da95ac60d86a3a0c2.zip |
Allow upgrade to OpenShift 3.7.1
Diffstat (limited to 'roles')
-rw-r--r-- | roles/openshift_repos/templates/CentOS-OpenShift-Origin371.repo.j2 | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/roles/openshift_repos/templates/CentOS-OpenShift-Origin371.repo.j2 b/roles/openshift_repos/templates/CentOS-OpenShift-Origin371.repo.j2 new file mode 100644 index 000000000..3118c7c24 --- /dev/null +++ b/roles/openshift_repos/templates/CentOS-OpenShift-Origin371.repo.j2 @@ -0,0 +1,26 @@ +[centos-openshift-origin371] +name=CentOS OpenShift Origin +baseurl=http://ufo.kit.edu/ands/repos/openshift74/ +enabled=1 +gpgcheck=0 + +[centos-openshift-origin37-testing] +name=CentOS OpenShift Origin Testing +baseurl=http://buildlogs.centos.org/centos/7/paas/x86_64/openshift-origin37/ +enabled={{ 1 if openshift_repos_enable_testing else 0 }} +gpgcheck=0 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-PaaS + +[centos-openshift-origin37-debuginfo] +name=CentOS OpenShift Origin DebugInfo +baseurl=http://debuginfo.centos.org/centos/7/paas/x86_64/ +enabled=0 +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-PaaS + +[centos-openshift-origin37-source] +name=CentOS OpenShift Origin Source +baseurl=http://vault.centos.org/centos/7/paas/Source/openshift-origin37/ +enabled=0 +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-PaaS |