adjust more netbox, vars for mantis
This commit is contained in:
parent
24eb76dfc1
commit
50b2258e9b
@ -27,8 +27,19 @@
|
|||||||
success_msg: "We are able to run on this node"
|
success_msg: "We are able to run on this node"
|
||||||
fail_msg: "/etc/no-ansible exists - skipping run on this node"
|
fail_msg: "/etc/no-ansible exists - skipping run on this node"
|
||||||
|
|
||||||
#tasks:
|
- name: Verify applicable vars are set
|
||||||
#- include_tasks: tasks/efs_mount.yml
|
ansible.builtin.assert:
|
||||||
|
that:
|
||||||
|
- netbox_server_name
|
||||||
|
- netbox_db_host
|
||||||
|
- netbox_db_user
|
||||||
|
- netbox_db_password
|
||||||
|
- netbox_secret_key
|
||||||
|
success_msg: "Required vars set"
|
||||||
|
fail_msg: "We are missing required vars. Please ensure you have them set."
|
||||||
|
|
||||||
|
# tasks:
|
||||||
|
# - include_tasks: tasks/efs_mount.yml
|
||||||
# loop: "{{ mounts }}"
|
# loop: "{{ mounts }}"
|
||||||
# tags: ["mounts"]
|
# tags: ["mounts"]
|
||||||
|
|
||||||
|
@ -5,10 +5,7 @@
|
|||||||
name: "{{ item }}"
|
name: "{{ item }}"
|
||||||
persistent: true
|
persistent: true
|
||||||
state: true
|
state: true
|
||||||
with_items:
|
with_items: "{{ mantis_selinux_booleans }}"
|
||||||
- httpd_can_network_connect_db
|
|
||||||
- httpd_can_network_connect
|
|
||||||
- httpd_can_sendmail
|
|
||||||
|
|
||||||
- name: Install necessary packages
|
- name: Install necessary packages
|
||||||
ansible.builtin.dnf:
|
ansible.builtin.dnf:
|
||||||
|
@ -1,7 +1,17 @@
|
|||||||
---
|
---
|
||||||
- name: Download netbox
|
- name: Make symlink to latest version
|
||||||
ansible.builtin.get_url:
|
ansible.builtin.file:
|
||||||
url: "https://github.com/netbox-community/netbox/archive/refs/tags/v{{ netbox_version }}.tar.gz"
|
src: "/opt/netbox-{{ netbox_version }}"
|
||||||
dest: "/tmp/netbox-{{ netbox_version }}"
|
dest: "/opt/netbox"
|
||||||
checksum: "{{ netbox_checksum }}"
|
owner: netbox
|
||||||
|
group: netbox
|
||||||
|
state: link
|
||||||
|
|
||||||
|
- name: Deploy templated configuration
|
||||||
|
ansible.builtin.template:
|
||||||
|
src: "opt/netbox/netbox/netbox/configuration.py.j2"
|
||||||
|
dest: "/opt/netbox/netbox/netbox/configuration.py"
|
||||||
|
mode: '0644'
|
||||||
|
owner: netbox
|
||||||
|
group: netbox
|
||||||
...
|
...
|
||||||
|
@ -1,23 +1,8 @@
|
|||||||
---
|
---
|
||||||
- name: Install git and nginx
|
- name: Install required software to build python libs and run netbox
|
||||||
become: true
|
become: true
|
||||||
ansible.builtin.package:
|
ansible.builtin.package:
|
||||||
name:
|
name: "{{ netbox_pkg }}"
|
||||||
- git
|
|
||||||
- nginx
|
|
||||||
state: present
|
|
||||||
|
|
||||||
- name: Install required software to build python libs
|
|
||||||
become: true
|
|
||||||
ansible.builtin.package:
|
|
||||||
name:
|
|
||||||
- gcc
|
|
||||||
- libxml2-devel
|
|
||||||
- libxslt-devel
|
|
||||||
- libffi-devel
|
|
||||||
- libpq-devel
|
|
||||||
- openssl-devel
|
|
||||||
- redhat-rpm-config
|
|
||||||
state: present
|
state: present
|
||||||
|
|
||||||
- name: Setup initial netbox user
|
- name: Setup initial netbox user
|
||||||
@ -26,4 +11,42 @@
|
|||||||
name: netbox
|
name: netbox
|
||||||
comment: "NetBox"
|
comment: "NetBox"
|
||||||
system: true
|
system: true
|
||||||
|
uid: "2001"
|
||||||
|
|
||||||
|
- name: Configuring SELinux booleans
|
||||||
|
ansible.posix.seboolean:
|
||||||
|
name: "{{ item }}"
|
||||||
|
persistent: true
|
||||||
|
state: true
|
||||||
|
with_items: "{{ netbox_selinux_booleans }}"
|
||||||
|
|
||||||
|
- name: Setup firewalld services
|
||||||
|
ansible.posix.firewalld:
|
||||||
|
service: "{{ item }}"
|
||||||
|
permanent: true
|
||||||
|
state: enabled
|
||||||
|
loop:
|
||||||
|
- http
|
||||||
|
- https
|
||||||
|
|
||||||
|
- name: Setup firewalld port because of netbox's weird setup
|
||||||
|
ansible.posix.firewalld:
|
||||||
|
port: "8000/tcp"
|
||||||
|
permanent: true
|
||||||
|
state: enabled
|
||||||
|
|
||||||
|
- name: Download netbox
|
||||||
|
ansible.builtin.get_url:
|
||||||
|
url: "https://github.com/netbox-community/netbox/archive/refs/tags/v{{ netbox_version }}.tar.gz"
|
||||||
|
dest: "/tmp/netbox-{{ netbox_version }}.tar.gz"
|
||||||
|
checksum: "{{ netbox_checksum }}"
|
||||||
|
|
||||||
|
- name: Unpack netbox
|
||||||
|
ansible.builtin.unarchive:
|
||||||
|
src: "/tmp/netbox-{{ netbox_version }}.tar.gz"
|
||||||
|
dest: "/opt"
|
||||||
|
owner: netbox
|
||||||
|
group: netbox
|
||||||
|
mode: '0644'
|
||||||
|
remote_src: true
|
||||||
...
|
...
|
||||||
|
@ -13,6 +13,10 @@ mantis_pkg:
|
|||||||
- openldap
|
- openldap
|
||||||
- php-json
|
- php-json
|
||||||
- php-soap
|
- php-soap
|
||||||
|
mantis_selinux_booleans:
|
||||||
|
- httpd_can_network_connect_db
|
||||||
|
- httpd_can_network_connect
|
||||||
|
- httpd_can_sendmail
|
||||||
mantis_db_host: db.rockylinux.org
|
mantis_db_host: db.rockylinux.org
|
||||||
mantis_db_name: mantisdb
|
mantis_db_name: mantisdb
|
||||||
mantis_db_user: mantis
|
mantis_db_user: mantis
|
||||||
|
@ -1,6 +1,20 @@
|
|||||||
---
|
---
|
||||||
netbox_version: "3.7.4"
|
netbox_version: "3.7.4"
|
||||||
netbox_checksum: "f0c2026b81ab9785f3530eb3c59a922517630976c2af1f95eea02f8bfb9613fd"
|
netbox_checksum: "f0c2026b81ab9785f3530eb3c59a922517630976c2af1f95eea02f8bfb9613fd"
|
||||||
|
netbox_pkg:
|
||||||
|
- git
|
||||||
|
- libxml2-devel
|
||||||
|
- libxslt-devel
|
||||||
|
- libffi-devel
|
||||||
|
- libpq-devel
|
||||||
|
- nginx
|
||||||
|
- openssl-devel
|
||||||
|
- redhat-rpm-config
|
||||||
|
- redis
|
||||||
|
netbox_selinux_booleans:
|
||||||
|
- httpd_can_network_connect_db
|
||||||
|
- httpd_can_network_connect
|
||||||
|
- httpd_can_sendmail
|
||||||
netbox_server_name: "netbox.rockylinux.org"
|
netbox_server_name: "netbox.rockylinux.org"
|
||||||
netbox_admin_name: "Infrastructure Team"
|
netbox_admin_name: "Infrastructure Team"
|
||||||
netbox_admin_content: "infrastructure@rockylinux.org"
|
netbox_admin_content: "infrastructure@rockylinux.org"
|
||||||
|
Loading…
Reference in New Issue
Block a user