-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1110 from lsst-it/IT-5219/enc-to-puppetdb
(profile::core::node_info) fwv
- Loading branch information
Showing
5 changed files
with
47 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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 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,22 @@ | ||
# @summary | ||
# This empty class exists solely as a vehicle for shipping enc data to puppetdb. | ||
# | ||
# Note that the facts hash does not contain enc parameters and they must be | ||
# accessed as top scoped variables. | ||
# | ||
# @param site | ||
# @param role | ||
# @param cluster | ||
# @param variant | ||
# @param subvariant | ||
# | ||
# lint:ignore:top_scope_facts | ||
class profile::core::node_info ( | ||
Optional[String[1]] $site = $::site, | ||
Optional[String[1]] $role = $::role, | ||
Optional[String[1]] $cluster = $::cluster, | ||
Optional[String[1]] $variant = $::variant, | ||
Optional[String[1]] $subvariant = $::subvariant, | ||
) { | ||
# lint:endignore | ||
} |
This file contains 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 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 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