-
Notifications
You must be signed in to change notification settings - Fork 17
/
sat.yml
69 lines (64 loc) · 1.57 KB
/
sat.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
---
- hosts: all
vars_files:
- vars.yml
- passwd.yml
collections:
- redhat.satellite
roles:
- role: redhat.satellite.manifest
vars:
satellite_server_url: "{{ sat_url }}"
satellite_username: "{{ sat_user }}"
satellite_password: "{{ sat_passwd }}"
satellite_organization: "{{ organization }}"
satellite_manifest_path: "~/manifest.zip"
tags: manifest
# - role: manifest # That is not working due to a bug
- role: firewalld
tags: firewalld
- role: sat-locations
tags: locations
- role: proxy
- role: sat-settings
- role: gpg-keys
tags: gpg-keys
- role: repos
tags: repos
- role: syncplans
tags: syncplans
- role: 3rdpartyrepos
tags: 3rdpartyrepos
- role: environments
tags: environments
- role: content-views
tags: content-views
- role: host-collections
tags: host-collections
- role: ptable
tags: ptable
- role: os
tags: os
- role: sat-domains
tags: sat-domains
- role: sat-subnets
tags: sat-subnets
- role: realms
tags: realms
# - role: compute-resources
# tags: compute-resources
- role: host-groups
tags: host-groups
- role: activationkeys
tags: activationkeys
- role: global_parameters
tags: global_parameters
- role: sat-ldap-auth
tags: ldap-auth
- role: sat-usergroups
tags: usergroups
pre_tasks:
- name: Copy manifest to target Satellite
copy:
src: "~/manifest.zip"
dest: /root/manifest.zip