ansible-ops-management/role-rocky-kojihub.yml

137 lines
4.1 KiB
YAML
Raw Permalink Normal View History

2023-04-13 22:19:30 +00:00
---
# Stands up an ipsilon instance for simple SSO
- name: Configure koji hub and web server
hosts: kojihub
become: true
vars_files:
2023-08-09 20:40:45 +00:00
- vars/vaults/encpass.yml
- vars/common.yml
- vars/production/kojihub.yml
- vars/production/koji-common.yml
2023-04-13 22:19:30 +00:00
# This is to try to avoid the handler issue in pre/post tasks
handlers:
2023-08-18 21:23:40 +00:00
- ansible.builtin.import_tasks: handlers/main.yml
2023-04-13 22:19:30 +00:00
pre_tasks:
- name: Check if ansible cannot be run here
2023-08-18 21:23:40 +00:00
ansible.builtin.stat:
2023-04-13 22:19:30 +00:00
path: /etc/no-ansible
register: no_ansible
- name: Verify if we can run ansible
2023-08-18 21:23:40 +00:00
ansible.builtin.assert:
2023-04-13 22:19:30 +00:00
that:
- "not no_ansible.stat.exists"
success_msg: "We are able to run on this node"
fail_msg: "/etc/no-ansible exists - skipping run on this node"
- name: Check for keytabs - web
2023-08-18 21:23:40 +00:00
ansible.builtin.stat:
2023-04-13 22:19:30 +00:00
path: /etc/keytabs/koji-web.keytab
register: koji_keytab
changed_when: "1 != 1"
- name: Check for keytabs - kojira
2023-08-18 21:23:40 +00:00
ansible.builtin.stat:
2023-04-13 22:19:30 +00:00
path: /etc/keytabs/kojira.keytab
register: kojira_keytab
changed_when: "1 != 1"
- name: Check for keytabs - gc
2023-08-18 21:23:40 +00:00
ansible.builtin.stat:
2023-04-13 22:19:30 +00:00
path: /etc/keytabs/koji-gc.keytab
register: gc_keytab
changed_when: "1 != 1"
- name: Check for keytabs - host
2023-08-18 21:23:40 +00:00
ansible.builtin.stat:
2023-04-13 22:19:30 +00:00
path: /etc/keytabs/host.keytab
register: host_keytab
changed_when: "1 != 1"
- name: Verify keytab
2023-08-18 21:23:40 +00:00
ansible.builtin.assert:
2023-04-13 22:19:30 +00:00
that:
- "koji_keytab.stat.exists"
- "kojira_keytab.stat.exists"
- "gc_keytab.stat.exists"
- "host_keytab.stat.exists"
success_msg: "It is likely we have all keytabs"
fail_msg: "There are no keytabs. Please build the keytabs."
# 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
2023-08-18 21:23:40 +00:00
community.general.ini_file:
2023-07-19 20:46:18 +00:00
dest: /etc/yum.repos.d/Rocky-PowerTools.repo
2023-04-13 22:19:30 +00:00
section: powertools
option: enabled
value: 1
owner: root
group: root
mode: '0644'
2023-07-19 20:46:18 +00:00
when: ansible_distribution_major_version == '8'
- name: Enable the CRB repository
2023-08-18 21:23:40 +00:00
community.general.ini_file:
2023-07-19 20:46:18 +00:00
dest: /etc/yum.repos.d/rocky.repo
section: crb
option: enabled
value: 1
owner: root
group: root
mode: '0644'
when: ansible_distribution_major_version|int >= '9'
2023-04-13 22:19:30 +00:00
- name: Enable the EPEL repository
2023-08-18 21:23:40 +00:00
ansible.builtin.dnf:
2023-04-13 22:19:30 +00:00
name: epel-release
state: present
tags:
- packages
- name: Install rocky-tools copr
2023-08-18 21:23:40 +00:00
ansible.builtin.yum_repository:
2023-04-13 22:19:30 +00:00
name: copr:copr.fedorainfracloud.org:nalika:rockylinux-tool
description: Copr repo for rockylinux-tools owned by nalika
file: copr_repos
baseurl: https://download.copr.fedorainfracloud.org/results/nalika/rockylinux-tools/epel-8-$basearch/
gpgcheck: true
gpgkey: https://download.copr.fedorainfracloud.org/results/nalika/rockylinux-tools/pubkey.gpg
enabled: true
2023-09-21 06:34:00 +00:00
when: ansible_distribution_major_version == '8'
2023-04-13 22:19:30 +00:00
# Right now, we are not sure how or where we'll get our certificates. So we
# are presenting a choice by setting a variable, koji_internal_ca. There is a
# change that we will have to do internal certs for mqtt anyway.
# TODO: We need an MQTT role and pre_tasks for the keytabs for this role
roles:
- role: geerlingguy.certbot
state: present
when: not koji_internal_ca
- role: rockylinux.ipagetcert
state: present
when: koji_internal_ca
- role: geerlingguy.postgresql
state: present
when: koji_postgresql_vm
- role: rockylinux.kojihub
state: present
post_tasks:
- name: "Setup shared filesystem mount"
2023-08-18 21:23:40 +00:00
ansible.builtin.import_tasks: tasks/koji_efs.yml
2023-04-13 22:19:30 +00:00
- name: Touching run file that ansible has ran here
file:
path: /var/log/ansible.run
state: touch
mode: '0644'
owner: root
group: root
...