mirror of
https://github.com/rocky-linux/infrastructure
synced 2024-11-28 16:06:28 +00:00
repo changes and ipa fqdn notes
This commit is contained in:
parent
8e98dc04e0
commit
1ab71a2d4d
@ -10,19 +10,22 @@ ipareplicas
|
|||||||
ipaclients
|
ipaclients
|
||||||
|
|
||||||
# Playbook and role specific inventory hosts and groups
|
# Playbook and role specific inventory hosts and groups
|
||||||
|
# Note, for IPA collection to function, these must be fqdn
|
||||||
[ipaserver]
|
[ipaserver]
|
||||||
ipa001 ansible_host=10.100.1.110
|
ipa001.rockylinux.org ansible_host=10.100.1.110
|
||||||
|
|
||||||
[ipareplicas]
|
[ipareplicas]
|
||||||
ipa002 ansible_host=10.100.1.111
|
ipa002.rockylinux.org ansible_host=10.100.1.111
|
||||||
|
|
||||||
[ipaclients]
|
[ipaclients]
|
||||||
build-a-box ansible_host=10.100.1.112
|
build-a-box.rockylinux.org ansible_host=10.100.1.112
|
||||||
|
idp001.rockylinux.org ansible_host=10.100.x.x
|
||||||
|
chrony001.rockylinux.org ansiblehost=10.100.3.110
|
||||||
|
chrony002.rockylinux.org ansiblehost=10.200.3.111
|
||||||
|
|
||||||
[ipsilon]
|
[ipsilon]
|
||||||
idp001 ansible_host=10.100.x.x
|
idp001.rockylinux.org ansible_host=10.100.x.x
|
||||||
|
|
||||||
[chronyservers]
|
[chronyservers]
|
||||||
chrony001 ansiblehost=10.100.3.110
|
chrony001.rockylinux.org ansiblehost=10.100.3.110
|
||||||
chrony002 ansiblehost=10.200.3.111
|
chrony002.rockylinux.org ansiblehost=10.200.3.111
|
||||||
|
|
||||||
|
@ -22,6 +22,26 @@
|
|||||||
- "not no_ansible.stat.exists"
|
- "not no_ansible.stat.exists"
|
||||||
msg: "/etc/no-ansible exists - skipping run on this node"
|
msg: "/etc/no-ansible exists - skipping run on this node"
|
||||||
|
|
||||||
|
# EPEL and PowerTools are required for ipsilon to function
|
||||||
|
# I also couldn't find an ansible built-in to do this
|
||||||
|
- name: Enable the PowerTools repository
|
||||||
|
ini_file:
|
||||||
|
dest: /etc/yum.repos.d/CentOS-Linux-PowerTools.repo
|
||||||
|
section: powertools
|
||||||
|
option: enabled
|
||||||
|
value: 1
|
||||||
|
owner: root
|
||||||
|
group: root
|
||||||
|
mode: '0644'
|
||||||
|
|
||||||
|
# The CentOS extras repos has epel-release provided
|
||||||
|
- name: Enable the EPEL repository
|
||||||
|
yum:
|
||||||
|
name: epel-release
|
||||||
|
state: present
|
||||||
|
tags:
|
||||||
|
- packages
|
||||||
|
|
||||||
- name: Install arrfab ipsilon repo
|
- name: Install arrfab ipsilon repo
|
||||||
yum_repository:
|
yum_repository:
|
||||||
name: copr:copr.fedorainfracloud.org:arrfab:noggin
|
name: copr:copr.fedorainfracloud.org:arrfab:noggin
|
||||||
|
Loading…
Reference in New Issue
Block a user