-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Expand upon notifications for QUADS.
* Add optional IRC notifications for when new systems are provisioned and available. * Add optional email notifications for when new systems are provisioned and available * Rename alert-expiration to quads-notify patchset #2: whitespace patchset #3: fix mistake in IRC notification adding channel option patchset #4: typo in IRC channel variable fixes #2 Change-Id: Ib49b5d5d92081b7bbfc1f23179f7096acaf79f8e
- Loading branch information
Showing
3 changed files
with
67 additions
and
9 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 |
---|---|---|
|
@@ -8,6 +8,19 @@ domain: example.com | |
# used for reporting | ||
report_cc: [email protected], [email protected], [email protected], [email protected] | ||
|
||
# notification options | ||
# set to true to receive notifications when: | ||
# 1) upon systems assignment | ||
# 2) 1,3,5,7 days out from when assignment ends | ||
email_notify: true | ||
# set to true to receive notifications when: | ||
# 1) upon systems assignment | ||
# * Note* you'll need Supybot with the notify plugin | ||
irc_notify: true | ||
ircbot_ipaddr: 192.168.0.100 | ||
ircbot_port: 5050 | ||
ircbot_channel: #yourchannel | ||
|
||
# wordpress wiki | ||
wp_wiki: wiki.example.com | ||
wp_username: wikiadmin | ||
|
@@ -37,9 +50,8 @@ racks: b09 b10 c01 c02 c03 c04 c05 c06 c07 c08 c09 c10 | |
# this is where we place the generated instackenv.json files | ||
json_web_path: /var/www/html/cloud | ||
|
||
# untouchable_hosts is used for paranoid people that worry that quads | ||
# might in some way effect changes on critical infrastructure. Use this | ||
# to define hosts quads should never move. | ||
# untouchable_hosts are hosts that should be avoided by QUADS in any way. | ||
# use this to define hosts QUADS should never move. | ||
untouchable_hosts: foreman.example.com c08-h30-r630.example.com | ||
|
||
# phpical | ||
|
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