Skip to content

Commit

Permalink
Merge pull request #612 from puppetlabs/release-prep
Browse files Browse the repository at this point in the history
Release prep v7.1.0
  • Loading branch information
jordanbreen28 authored Jan 27, 2023
2 parents 55b0e99 + 8ba51bf commit d5e9537
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org).

## [v7.1.0](https://github.com/puppetlabs/puppetlabs-kubernetes/tree/v7.1.0) (2023-01-27)

[Full Changelog](https://github.com/puppetlabs/puppetlabs-kubernetes/compare/v7.0.0...v7.1.0)

### Added

- Reproducible kube-tool build [\#605](https://github.com/puppetlabs/puppetlabs-kubernetes/pull/605) ([deric](https://github.com/deric))
- add new parameter node\_extra\_taints [\#586](https://github.com/puppetlabs/puppetlabs-kubernetes/pull/586) ([BaronMsk](https://github.com/BaronMsk))

## [v7.0.0](https://github.com/puppetlabs/puppetlabs-kubernetes/tree/v7.0.0) (2022-12-15)

[Full Changelog](https://github.com/puppetlabs/puppetlabs-kubernetes/compare/v6.3.0...v7.0.0)
Expand Down
26 changes: 25 additions & 1 deletion REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -899,6 +899,12 @@ Defaults to /var/lib/etcd.
Defaults to hostname.
NOTE: Ignored when cloud_provider is AWS, until this lands fixed https://github.com/kubernetes/kubernetes/pull/61878

[*node_extra_taints*]
Additional taints for node.
Example:
[{'key' => 'dedicated','value' => 'NewNode','effect' => 'NoSchedule', 'operator' => 'Equal'}]
Defaults to undef

[*token*]
A string to use when joining nodes to the cluster. Must be in the form of '[a-z0-9]{6}.[a-z0-9]{16}'
Defaults to undef
Expand Down Expand Up @@ -1215,6 +1221,7 @@ The following parameters are available in the `kubernetes` class:
* [`scheduler_extra_arguments`](#-kubernetes--scheduler_extra_arguments)
* [`service_cidr`](#-kubernetes--service_cidr)
* [`node_label`](#-kubernetes--node_label)
* [`node_extra_taints`](#-kubernetes--node_extra_taints)
* [`controller_address`](#-kubernetes--controller_address)
* [`cloud_provider`](#-kubernetes--cloud_provider)
* [`cloud_config`](#-kubernetes--cloud_config)
Expand Down Expand Up @@ -1799,7 +1806,15 @@ Default value: `'10.96.0.0/12'`

##### <a name="-kubernetes--node_label"></a>`node_label`

Data type: `Optional[Stdlib::Fqdn]`
Data type: `Optional[String]`



Default value: `undef`

##### <a name="-kubernetes--node_extra_taints"></a>`node_extra_taints`

Data type: `Optional[Array[Hash]]`



Expand Down Expand Up @@ -3098,6 +3113,7 @@ The following parameters are available in the `kubernetes::config::worker` class
* [`feature_gates`](#-kubernetes--config--worker--feature_gates)
* [`cloud_provider`](#-kubernetes--config--worker--cloud_provider)
* [`cloud_config`](#-kubernetes--config--worker--cloud_config)
* [`node_extra_taints`](#-kubernetes--config--worker--node_extra_taints)
* [`kubelet_extra_arguments`](#-kubernetes--config--worker--kubelet_extra_arguments)
* [`kubelet_extra_config`](#-kubernetes--config--worker--kubelet_extra_config)
* [`ignore_preflight_errors`](#-kubernetes--config--worker--ignore_preflight_errors)
Expand Down Expand Up @@ -3217,6 +3233,14 @@ Data type: `Optional[String]`

Default value: `$kubernetes::cloud_config`

##### <a name="-kubernetes--config--worker--node_extra_taints"></a>`node_extra_taints`

Data type: `Optional[Array[Hash]]`



Default value: `$kubernetes::node_extra_taints`

##### <a name="-kubernetes--config--worker--kubelet_extra_arguments"></a>`kubelet_extra_arguments`

Data type: `Optional[Array]`
Expand Down
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "puppetlabs-kubernetes",
"version": "7.0.0",
"version": "7.1.0",
"author": "puppetlabs",
"summary": "The module installs and configures a Kubernetes cluster",
"license": "Apache-2.0",
Expand Down

0 comments on commit d5e9537

Please sign in to comment.