change_window
Version information
This version is compatible with:
- Puppet Enterprise 2023.2.x, 2023.1.x, 2023.0.x, 2021.7.x, 2021.6.x, 2021.5.x, 2021.4.x, 2021.3.x, 2021.2.x, 2021.1.x, 2021.0.x, 2019.8.x, 2019.7.x, 2019.5.x, 2019.4.x, 2019.3.x, 2019.2.x, 2019.1.x, 2019.0.x, 2018.1.x
- Puppet >= 5.5.10 < 8.0.0
- , , , , , , ,
Start using this module
Add this module to your Puppetfile:
mod 'puppetlabs-change_window', '0.2.1'
Learn more about managing modules with a PuppetfileDocumentation
change_window
This module is not supported or maintained by Puppet and does not qualify for Puppet Support plans. It's provided without guarantee or warranty and you can use it at your own risk. All bugfixes, updates, and new feature development will come from community contributions.
[tier:community]
Table of Contents
Background
This module is a fork of ipcrm-change_window which is no longer actively maintained. This fork has been moved under the puppetlabs namespace to allow for community contributions.
It is not supported or maintained by puppet.
Original Author:
- Matt Cadorette
Week in Month feature:
- Steve Jefferies (WTW)
Overview
Allows puppet code to be applied during specified change window(s).
The change_window functionality allows you to check current time against change windows and a defined type that applies noop() to classes when not within the change window.
Module Description
Why?
The original reason for this module was to use it in conjunction with the trlinkin/noop
module. However, you can actually use the functions with any resource that you need to be sensitive to change windows by simply wrapping that resource declaration with some conditional logic.
The module is made up of two functions and a defined class. The functions, change_window() and merge_change_windows(), allow the comparison of a change window schedule against the current time to determine if the run is within the change window ('true'), or outside the change window ('false'). The change_window function checks against a single window definition, while the merge_change_window function will check a list windows and return 'true' if any one of them is true.
The defined type change_window::apply will accept an array of change windows and a list of classes. The class list is then included into the catalog with the noop() mode set appropriately. This define is intended for use during role definition and allows change window control over some or all of the profiles within the role. Keeping the role definition tidy and allowing some classes to function without change control. A handy feature when you have changes that you wish applied all the time.
IMPORTANT: Remember that if you are within the change window then the value returned by the functions is a String containing 'true', otherwise it returns 'false'.
Defined types
change_window::apply
Usage
change_window::apply { 'my_controlled_changes':
change_window_set => hiera('weekly_window'),
class_list => [ 'profile::ntp', 'profile::resolver' ],
}
where:
change_window_set
= An array of arrays defining your change windows to check. Most easily defined and retrieved via hiera (but does not have to be, see merge_change_windows for details)
class_list
= an array of classes to include
The class_list will accept either simple class names to include or a hash describing the class/resource along with its parameters.
example class_list: with simple and parameterized classes
$class_list = [
'profile::parameter_class' => {
parm1 => 'value1',
parm2 => 'value2',
},
'profile::simple_class',
]
Functions
change_window
Usage
change_window( $tz, $window_type, $window_wday, $window_time, [$window_week], [$window_month], [$time])
Where:
-
$tz
is the timezone offset you want used when the current timestamp is generated.(this example is for EST) -
$window_type
accepts to values: per_day or window.per_day
tells change_window that the hours specified are valid on each day specified. For example if you set days 0-3 and start 20:00, end 23:00 - then Sunday through Wednesday from 8PM to 11PM this function will return true. For wrapped hours you receive start to midnight on the first day and midnight to end on the last day.window
tells change_window to treat the days and times as a continuous change window spanning from start day/start time through end day/end time.
-
$window_wday
is a hash where start is the first weekday in your window and end is the last weekday - expressed as weekday names or 0-6. You can specify the same day if you like and you may wrap the weekend (i.e friday .. monday). -
$window_time
is a hash where the start key is a timestamp (HH:MM), and end sets the end hour and minute. You may wrap the midnight hour (i.e. 22:00 .. 02:00). For per_day windows that wrap the midnight hour, the first day will apply the start-to-midnight and the last day will apply the midnight-to-end of the window. -
$window_week
OPTIONAL array of weeks within a month to accept as within the change window. Values in the array must be of range 1-6. See Week in month for details. -
$window_month
OPTIONAL array of months within a year to accept as within the change window. Values in the array must be of range 1-12. See Month in year for details. -
$time
is an optional parameter that lets you specify the time to test as an array. This array is passed to the Time.new() object to set the time under test. This array should take the form of [ YYYY, MM, DD, HH, MM] and will apply the timezone specified.
$tz = "-05:00"
$window_wday = { start => 'Friday', end => 'Saturday' }
$window_time = { start => '20:00', end => '23:00' }
$window_type = 'window'
$val = change_window($tz, $window_type, $window_wday, $window_time)
if $val == 'false' {
notify { "Puppet noop enabled in site.pp! Not within change window!": }
noop()
}
Another example shows wrapping the weekend. You can specify combinations like below (days 5 - 0). This will result in days 5,6,0 as being valid for the change window. In this case I'm using per_day so on Friday, Saturday, or Sunday between 8PM and 11PM changes will be allowed.
$tz = "-05:00"
$window_wday = { start => 'Friday', end => 'Sunday' }
$window_time = { start => '20:00', end => '23:00' }
$window_type = 'per_day'
$val = change_window($tz, $window_type, $window_wday, $window_time)
if $val == 'false' {
notify { "Puppet noop enabled in site.pp! Not within change window!": }
noop()
}
Example of using week and month windows, run on first and second week of the month and only between January and March.
$tz = "-05:00"
$window_wday = { start => 'Friday', end => 'Saturday' }
$window_time = { start => '20:00', end => '23:00' }
$window_type = 'window'
$window_week = [1,2]
$window_month = [1,2,3]
$val = change_window($tz, $window_type, $window_wday, $window_time, $window_week, $window_month)
if $val == 'false' {
notify { "Puppet noop enabled in site.pp! Not within change window!": }
noop()
}
You can also use hiera to enable more complex windows:
hiera:
tz_dev: "-05:00"
window_type_dev: per_day
window_wday_dev:
start: Friday
end: Sunday
window_time_dev:
start: "20:00"
end: "23:00"
site.pp:
$e = $::custom_env
$val = change_window(
hiera("tz_${e}"),
hiera("window_type_${e}"),
hiera("window_wday_${e}"),
hiera("window_time_${e}")
)
if $val == 'false' {
notify { "Puppet noop enabled in site.pp for env ${e}! Not within change window!": }
noop()
}
merge_change_windows
Usage
merge_change_windows( $list_of_windows )
Where:
$list_of_windows is an Array made up of Arrays containing change_window parameters.
Manifest Example
$tz = "-05:00"
# Friday @ 10 PM until Monday @ 2 AM
$window1_type = 'window'
$window1_wday = { start => 'Friday', end => 'Monday' }
$window1_time = { start => '22:00', end => '02:00' }
# Wednesday @ 10 PM until Thursday @ 2 AM
$window2_type = 'window'
$window2_wday = { start => 'Wednesday', end => 'Thursday' }
$window2_time = { start => '22:00', end => '02:00' }
$change_windows = [
[$tz, $window1_type, $window1_wday, $window1_time],
[$tz, $window2_type, $window2_wday, $window2_time],
]
if merge_change_windows($change_windows) == 'false' {
notify { "Puppet noop enabled in site.pp! Not within change window!": }
noop()
}
Hiera Example
hiera:
change_window_set::my_change_window:
- # Friday @ 10 PM until Monday @ 2 AM
- '-05:00'
- 'window'
- start: 'Friday'
end: 'Monday'
- start: '22:00'
end: '02:00'
- # Wednesday @ 10 PM until Thursday @ 2 AM
- '-05:00'
- 'window'
- start: 'Wednesday'
end: 'Thursday'
- start: '22:00'
end: '02:00'
site.pp:
$change_window_set = 'my_change_window'
$change_windows = hiera("change_window_set::${my_change_window}")
if merge_change_windows($change_windows) == 'false' {
notify { "Puppet noop enabled in site.pp! Not within change window!": }
noop()
}
Week in Month Change Windows
Using the $window_week
parameter in change_window
you can specify a sub-set of weeks within each month to be
accepted as valid change windows.
This parameter is optional, if not used all weeks are included
The parameter takes an Array of integers, between 1-6 as valid week definitions.
Example
Given the month is April 2021:
Then:
- Week 1 runs from first of the month to the first Sunday
- Week 2 runs from the following Monday to the next Sunday
- etc...
- Last week of the month runs from final Monday to last day of the month
Month in Year Change Windows
Using the $window_month
parameter in change_window
you can specify a sub-set of months within each year to be
accepted as valid change windows.
This parameter is optional, if not used all months are included.
The parameter takes an array of integers and/or string ranges of values.
Months are represented by numerical values:
Month | Value |
---|---|
January | 1 |
February | 2 |
March | 3 |
April | 4 |
May | 5 |
June | 6 |
July | 7 |
August | 8 |
September | 9 |
October | 10 |
November | 11 |
December | 12 |
For example:
- Run only every other month:
[1,3,5,7,9,11]
- Run only between January and March (inclusive):
[1,2,3]
or['1-3']
Individual values and ranges must only be between 1 and 12.
Acknowledgements
- window_week functionality is provided through an extension which is a modified version of week-of-month
Contributions
If anyone would like to contribute to the module, PR's are welcome.
If you're experiencing any bugs you can raise an issue below however, given that this is a community module, it will only be resolved if someone submits a PR with a fix. Puppet accepts no responsibility for this module as described in Background.
Repo: https://github.com/puppetlabs/change_window
Issues link: https://github.com/puppetlabs/change_window/issues
Reference
Table of Contents
Defined types
Functions
change_window::change_window
: Provides change_window function that allows you to check current time against change windowchange_window::merge_change_windows
: Creates complex change windows by merging a series of windows together
Defined types
change_window::apply
The change_window::apply class.
Parameters
The following parameters are available in the change_window::apply
defined type:
change_window_set
Data type: Any
An array of change_window names to be merged.
class_list
Data type: Any
An array of classes to be applied when within the change_window.
Functions
change_window::change_window
Type: Ruby 4.x API
Provides change_window function that allows you to check current time against change window
change_window::change_window(String $timezone, String $window_type, Hash $window_wday, Hash $window_time, Optional[Array] $window_week_val, Optional[Array] $window_month_val, Optional[Array] $time)
The change_window::change_window function.
Returns: String
Returns true or false as string if the time is within the change window
timezone
Data type: String
the timezone offset to use when timestamp is generated for comparing to change window
window_type
Data type: String
type of window, either 'per_day' or 'window'
window_wday
Data type: Hash
containing start and end days of week for the change window
window_time
Data type: Hash
containing start and end times of day for the change window
window_week
Data type: Array
[Optional] list of weeks in month for the change window
window_month
Data type: Array
[Optional] list of months in year for the change window
time
Data type: Optional[Array]
[Optional] array representing a fixed time to test against
window_week_val
Data type: Optional[Array]
window_month_val
Data type: Optional[Array]
change_window::merge_change_windows
Type: Ruby 4.x API
Creates complex change windows by merging a series of windows together
change_window::merge_change_windows(Array *$change_windows)
The change_window::merge_change_windows function.
Returns: String
Returns true or false as string if the time is within the merged change window
*change_windows
Data type: Array
a list of change windows to merge
Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog and this project adheres to Semantic Versioning.
v0.2.1 - 2024-01-25
Other
- (MAINT) - PDK update #16 (Ramesh7)
- Create .sync.yml #15 (liamjohnsexton)
- Create release.yml #14 (liamjohnsexton)
- Create release_prep.yml #13 (liamjohnsexton)
- Added support disclaimer #12 (binford2k)
- adjusted upper limit #10 (prolixalias)
- merging forge prep changes #7 (kinners00)
0.2.0 - 2021-04-01
Other
- merging forge prep changes #7 (kinners00)
- PDK convert 2.0 + changelog/metadata changes #6 (kinners00)
- pdk convert #5 (kinners00)
- Change window week/month functionality #1 (stevejefferies)
0.1.7 - 2016-02-03
0.1.6 - 2016-02-03
0.1.5 - 2016-01-28
0.1.4 - 2016-01-27
0.1.3 - 2016-01-27
0.1.2 - 2016-01-25
0.1.1 - 2016-01-25
0.1.0 - 2016-01-25
Dependencies
- puppetlabs/stdlib (>= 2.4.0 < 9.0.0)
- trlinkin/noop (>= 0.0.2)
Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.