summaryrefslogtreecommitdiffstats
path: root/roles/repos/tasks/main.yaml
blob: 3b66bb3926b162d05713a26ff36ef6a8f9118d0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
---
# The following role lays down the correct repository and gpg key for yum
- name: Ensure rhel 7 libra candidate exists in yum.repos.d
  copy: src=rhel-7-libra-candidate.repo dest=/etc/yum.repos.d/rhel-7-libra-candidate.repo

- name: Ensure a docker repo is laid down
  copy: src=docker.repo dest=/etc/yum.repos.d/docker.repo

- name: Ensure the kubernetes repo is available
  copy: src=epel7-kubernetes.repo dest=/etc/yum.repos.d/epel7-kubernetes.repo

- name: Ensure the origin repo is available
  copy: src=epel7-origin.repo dest=/etc/yum.repos.d/epel7-origin.repo