You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In many cases, you don't want to see all of the Puppet modules in Foreman, rather only the profiles that can be applied, since you should not be applying modules, but rather profiles that use those dependent modules.
For instance:
//profile.pp
class profile {
include ::docker
}
The module "docker" should be an option when applying Puppet classes, rather you should only see "profile" when attempting to apply a class to a node.
This is possible when using exclude/include regex's in the foreman configuration.
The text was updated successfully, but these errors were encountered:
In many cases, you don't want to see all of the Puppet modules in Foreman, rather only the profiles that can be applied, since you should not be applying modules, but rather profiles that use those dependent modules.
For instance:
//profile.pp
class profile {
include ::docker
}
The module "docker" should be an option when applying Puppet classes, rather you should only see "profile" when attempting to apply a class to a node.
This is possible when using exclude/include regex's in the foreman configuration.
The text was updated successfully, but these errors were encountered: