-
Notifications
You must be signed in to change notification settings - Fork 12
Feature/v4 certify #293
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
steven-schattenberg-itential
wants to merge
13
commits into
itential:feature/v4
Choose a base branch
from
steven-schattenberg-itential:feature/v4-certify
base: feature/v4
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Feature/v4 certify #293
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
a1d7c17
initial release of verify and certify
steven-schattenberg-itential 8835c3e
Fix template issues
steven-schattenberg-itential f3be7eb
Fix lint issues
steven-schattenberg-itential 17fe161
Add validation report for mongodb
steven-schattenberg-itential a32ae49
Merge branch 'dev' into certify
steven-schattenberg-itential 5d953c5
Additional changes to verify playbook
steven-schattenberg-itential 28b6020
WIP: certify playbooks call task files from roles for certification
steven-schattenberg-itential 31c2455
remove os_compatibility.py
steven-schattenberg-itential f915bec
Merge branch 'certify' into feature/v4-certify
steven-schattenberg-itential 607da6b
modified certify playbook to limit execution to groups
steven-schattenberg-itential 21ff1d8
Fix lint errors
steven-schattenberg-itential 55c7208
Add capability to verify environment readiness
steven-schattenberg-itential 9163a91
Code review changes
steven-schattenberg-itential File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
kvelarde-itential marked this conversation as resolved.
Show resolved
Hide resolved
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.