This document describes the role-based configuration management system that controls how hosts are managed and what settings are applied.
When no role is selected:
- 0 changes are performed on the node
- The system operates in a passive state
- No configuration management occurs
The Monitoring role is designed for deploying monitoring infrastructure only.
Characteristics:
- Deploys only monitoring-related components
- Always runs in Puppet noop mode ONLY
full_host_managementis disabled and cannot be forced (hardcoded in the implementation)- Minimal footprint for dedicated monitoring hosts
Use Case: Ideal for hosts that should only run monitoring agents without any other configuration management.
The Basic role provides foundational host management with monitoring capabilities.
Components:
role::monitoring- Monitoring setup- Repository management
- System updates
- Custom certificates and system CA certificates
Characteristics:
- Runs in noop mode by default
full_host_managementis enabled by default- Full management settings only take effect when running with
--no-noopflag
Use Case: Suitable for hosts requiring basic system management and monitoring without extensive configuration.
When any custom role is selected, the system applies:
- All settings specific to the selected role
- Plus all settings from
role::basic
This ensures a baseline configuration is always present alongside role-specific settings.
The full_host_management parameter enables comprehensive configuration management across multiple system areas. When enabled and running in no-noop mode, the following settings are applied:
common::repo::manage: true # Repository management
common::logging::manage: true # Logging configuration
common::backup::manage: true # Backup management
common::cron::purge_unmanaged: 'root-only' # Cron job management
common::virtualization::manage: true # Virtualization settings
common::network::manage: true # Network configuration
common::services::manage: true # Service management
common::storage::manage: false # Storage management (disabled)
common::system::manage: true # System-level configuration
common::security::manage: true # Security settings
common::monitoring::manage: true # Monitoring configuration
common::extras::manage: false # Extra features (disabled)
common::mail::manage: true # Mail configurationfull_host_managementcan be enabled for any host- When enabled, the system operates in noop mode for that host (unless agent is run with --no-noop manually for now)
- Storage and extras management are disabled by default
- Monitoring infrastructure is only deployed when an active subscription exists
- The system will not set up monitoring components without a valid subscription (Open Source is enabled
When a subscription expires or becomes inactive:
What Happens:
- Monitoring setup is NOT removed from the host
- The monitoring infrastructure remains in place
What Changes:
- Prometheus is disabled automatically
- This prevents Obmondo from receiving metrics from the host
Result: The monitoring stack remains functional on the host but stops sending data to the central monitoring system.
# Deploys only monitoring, always in noop mode
role: monitoring# Basic management with monitoring
role: basic
full_host_management: true# Custom role + basic + full management
role: webserver
full_host_management: true| Role | Default Mode | full_host_management | Can Force No-Noop? |
|---|---|---|---|
| None | N/A | N/A | N/A |
role::monitoring |
noop | Disabled (hardcoded) | No |
role::basic |
noop | Enabled | Yes (with --no-noop) |
| Custom roles | noop | Configurable | Yes (with --no-noop) |
- Start with noop mode - Always test configurations in noop mode before applying changes
- Enable full_host_management carefully - Understand the scope of changes before enabling
- Monitor subscription status - Keep track of subscription expiration to avoid unexpected monitoring disruptions
- Role composition - Remember that custom roles inherit
role::basicsettings - SSSD requirements - Enable
full_host_managementif SSSD integration is needed
- Check if a role is assigned to the node
- Verify whether you're running in noop mode
- Confirm
full_host_managementsettings if applicable
- Check subscription status (active/expired)
- Verify pushprox is not disabled due to inactive subscription
- Confirm monitoring role or monitoring component is properly configured
For issues or questions regarding role management and configuration, please contact your system administrator or refer to the internal documentation portal.