Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
cspell.json
.ansible/*
.vscode/*
.DS_Store
**.DS_Store
**/ansible.cfg
Expand All @@ -8,3 +11,6 @@
**/*.pem
**/*.log
**/*.keep
inventories/*
inventories
certificates/*
12 changes: 12 additions & 0 deletions playbooks/certify.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Copyright (c) 2026, Itential, Inc
# GNU General Public License v3.0+ (see LICENSE or https://www.gnu.org/licenses/gpl-3.0.txt)
---

- name: Certify Redis Installation
import_playbook: itential.deployer.certify_redis

- name: Certify MongoDB Installation
import_playbook: itential.deployer.certify_mongodb

- name: Certify Platform Installation
import_playbook: itential.deployer.certify_platform
14 changes: 14 additions & 0 deletions playbooks/certify_mongodb.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Copyright (c) 2026, Itential, Inc
# GNU General Public License v3.0+ (see LICENSE or https://www.gnu.org/licenses/gpl-3.0.txt)
---

- name: Run MongoDB Certification Tasks
hosts: mongodb*
gather_facts: true
become: true
tasks:
- name: Certify MongoDB Installation # noqa run-once
ansible.builtin.import_role:
name: itential.deployer.mongodb
tasks_from: certify-mongodb
tags: certify-mongodb
14 changes: 14 additions & 0 deletions playbooks/certify_platform.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Copyright (c) 2026, Itential, Inc
# GNU General Public License v3.0+ (see LICENSE or https://www.gnu.org/licenses/gpl-3.0.txt)
---

- name: Run Platform Certification Tasks
hosts: platform*
gather_facts: true
become: true
tasks:
- name: Certify Platform Installation # noqa run-once
ansible.builtin.import_role:
name: itential.deployer.platform
tasks_from: certify-platform
tags: certify-platform
13 changes: 13 additions & 0 deletions playbooks/certify_redis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Copyright (c) 2026, Itential, Inc
# GNU General Public License v3.0+ (see LICENSE or https://www.gnu.org/licenses/gpl-3.0.txt)
---

- name: Run Redis Certification Tasks
hosts: redis*
gather_facts: true
become: true
tasks:
- name: Certify Redis Installation # noqa run-once
ansible.builtin.import_role:
name: itential.deployer.redis
tasks_from: certify-redis
25 changes: 0 additions & 25 deletions playbooks/preflight.yml

This file was deleted.

45 changes: 0 additions & 45 deletions playbooks/preflight_gateway.yml

This file was deleted.

46 changes: 0 additions & 46 deletions playbooks/preflight_mongodb.yml

This file was deleted.

46 changes: 0 additions & 46 deletions playbooks/preflight_platform.yml

This file was deleted.

45 changes: 0 additions & 45 deletions playbooks/preflight_redis.yml

This file was deleted.

12 changes: 12 additions & 0 deletions playbooks/verify.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Copyright (c) 2026, Itential, Inc
# GNU General Public License v3.0+ (see LICENSE or https://www.gnu.org/licenses/gpl-3.0.txt)
---

- name: Verify Redis Installation
import_playbook: itential.deployer.verify_redis

- name: Verify MongoDB Installation
import_playbook: itential.deployer.verify_mongodb

- name: Verify Platform Installation
import_playbook: itential.deployer.verify_platform
13 changes: 13 additions & 0 deletions playbooks/verify_mongodb.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Copyright (c) 2026, Itential, Inc
# GNU General Public License v3.0+ (see LICENSE or https://www.gnu.org/licenses/gpl-3.0.txt)
---

- name: Run MongoDB Verification Tasks
hosts: mongodb*
gather_facts: true
become: true
tasks:
- name: Verify MongoDB Installation # noqa run-once
ansible.builtin.import_role:
name: itential.deployer.mongodb
tasks_from: verify-mongodb
13 changes: 13 additions & 0 deletions playbooks/verify_platform.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Copyright (c) 2026, Itential, Inc
# GNU General Public License v3.0+ (see LICENSE or https://www.gnu.org/licenses/gpl-3.0.txt)
---

- name: Run Platform Verification Tasks
hosts: platform*
gather_facts: true
become: true
tasks:
- name: Verify Platform Environment # noqa run-once
ansible.builtin.import_role:
name: itential.deployer.platform
tasks_from: verify-platform
13 changes: 13 additions & 0 deletions playbooks/verify_redis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Copyright (c) 2026, Itential, Inc
# GNU General Public License v3.0+ (see LICENSE or https://www.gnu.org/licenses/gpl-3.0.txt)
---

- name: Run Redis Verification Tasks
hosts: redis*
gather_facts: true
become: true
tasks:
- name: Verify Redis Installation # noqa run-once
ansible.builtin.import_role:
name: itential.deployer.redis
tasks_from: verify-redis
Loading