This repository has been archived by the owner on Mar 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 184
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Replace puppetlabs references with working links to the open source project * Create a help controller to display help pages The help icon above the node status block was pointing to a non-existing url for a long time now. Luckily this page was in the converted docs. I integrated the page directly as a help overlay with the colorbox which is already used for the file diff view.
- Loading branch information
1 parent
2abd76d
commit ec194e2
Showing
10 changed files
with
43 additions
and
7 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
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,7 @@ | ||
class HelpController < ApplicationController | ||
def node_status | ||
respond_to do |format| | ||
format.html { render(partial: 'node_status') } | ||
end | ||
end | ||
end |
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,19 @@ | ||
%h2= 'In Puppet Dashboard, every node is in one of six states:' | ||
|
||
%span{style: 'font-family: Helvetica, Arial, Verdana; font-size: larger; color: #888;'}= 'Unresponsive:' | ||
%p= "This node hasn't reported to the puppet master recently; something may be wrong. The cutoff for considering a node unresponsive defaults to one hour, and can be configured in `settings.yml` with the `no_longer_reporting_cutoff` setting." | ||
|
||
%span{style: 'font-family: Helvetica, Arial, Verdana; font-size: larger; color: #c21;'}= 'Failed:' | ||
%p= "During its last Puppet run, this node encountered some error from which it couldn't recover. Something is probably wrong, and investigation is recommended." | ||
|
||
%span{style: 'font-family: Helvetica, Arial, Verdana; font-size: larger; color: #e72;'}= 'Pending:' | ||
%p= "During its last Puppet run, this node _would_ have made changes, but it was either running in no-op mode or found a discrepancy in a resource whose `noop` metaparameter was set to `true`." | ||
|
||
%span{style: 'font-family: Helvetica, Arial, Verdana; font-size: larger; color: #069;'}= 'Changed:' | ||
%p= "This node's last Puppet run was successful, and changes were made to bring the node into compliance." | ||
|
||
%span{style: 'font-family: Helvetica, Arial, Verdana; font-size: larger; color: #093;'}= 'Unchanged:' | ||
%p= "This node's last Puppet run was successful, and it was fully compliant; no changes were necessary." | ||
|
||
%span{style: 'font-family: Helvetica, Arial, Verdana; font-size: larger; color: #aaa;'}= 'Unreported:' | ||
%p= "Although Dashboard is aware of this node's existence, it has never submitted a Puppet report. It may be a newly-commissioned node, it may have never come online, or its copy of Puppet may not be configured correctly." |
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
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