-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure-repos.yml
48 lines (42 loc) · 1.54 KB
/
configure-repos.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
- name: Install Sync Repository
hosts: localhost
become: true
tasks:
- name: Qubinode Installer Script for KVM configration
ansible.builtin.git:
repo: https://github.com/tosin2013/qubinode-installer.git
dest: /home/admin/qubinode-installer
version: master
tags: qubinode-installer
- name: Recursively change ownership of qubinode-installer directory
ansible.builtin.file:
path: /home/admin/qubinode-installer
state: directory
recurse: yes
owner: admin
group: admin
- name: kcli-openshift4-baremetal repository for bare metal IPI
ansible.builtin.git:
repo: https://github.com/karmab/kcli-openshift4-baremetal.git
dest: /root/kcli-openshift4-baremetal
version: master
tags: kcli-openshift4-baremetal
- name: openshift-4-deployment-notes repository for manual assisted-installer
ansible.builtin.git:
repo: https://github.com/tosin2013/openshift-4-deployment-notes.git
dest: /home/admin/openshift-4-deployment-notes
version: master
tags: openshift-4-deployment-notes
- name: Recursively change ownership of openshift-4-deployment-notes directory
ansible.builtin.file:
path: /home/admin/openshift-4-deployment-notes
state: directory
recurse: yes
owner: admin
group: admin
- name: OpenShift All-in-One deployment automation repository
ansible.builtin.git:
repo: https://github.com/RHFieldProductManagement/openshift-aio.git
dest: /root/openshift-aio
version: main
tags: openshift-aio