Add minimal Ansible skeleton for perfSONAR testpoint deployment#4
Closed
Add minimal Ansible skeleton for perfSONAR testpoint deployment#4
Conversation
Co-authored-by: ShawnMcKee <3066214+ShawnMcKee@users.noreply.github.com>
Co-authored-by: ShawnMcKee <3066214+ShawnMcKee@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add minimal Ansible skeleton for perfSONAR testpoint with feature toggles (fail2ban, SELinux, nftables)
Add minimal Ansible skeleton for perfSONAR testpoint deployment
Nov 3, 2025
Contributor
|
@copilot Submit |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Adds idempotent Ansible automation under
ansible/to deploy perfSONAR testpoints on RHEL-family systems with optional fail2ban, SELinux, and nftables configuration.Structure
Key Design Choices
Feature toggles - Boolean flags control optional components:
OS guards - Tasks conditional on
ansible_facts.os_family == 'RedHat'to prevent failures on unsupported platforms.Minimal nftables ruleset - Allows only SSH (22), loopback, and established connections by default. perfSONAR ports commented out for user discretion.
Overridable services and sysctls - Variables for
testpoint_servicesandtestpoint_sysctlsallow version-specific customization.Usage
README provides complete documentation. No CI changes included per requirements.
Original prompt
Goal
Add a minimal, idempotent Ansible skeleton to this repository to help users quickly deploy a perfSONAR testpoint with optional features that can be toggled on or off: fail2ban, SELinux, and nftables. Keep scope minimal and self-contained under an ansible/ directory. Provide clear defaults and a simple example inventory so users can run a single command to provision a host.
Context
Requirements
Please add the following files with the exact contents below.