You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+21-2Lines changed: 21 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,12 +2,31 @@
2
2
3
3
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).
- Add configuration options for conntrack settings in v1beta1 and v1beta2 [\#447](https://github.com/puppetlabs/puppetlabs-kubernetes/pull/447) ([Wiston999](https://github.com/Wiston999))
- pdksync - \(IAC-973\) - Update travis/appveyor to run on new default branch `main`[\#428](https://github.com/puppetlabs/puppetlabs-kubernetes/pull/428) ([david22swan](https://github.com/david22swan))
11
30
- Package pinning and auto restart of etcd [\#420](https://github.com/puppetlabs/puppetlabs-kubernetes/pull/420) ([scoopex](https://github.com/scoopex))
12
31
- Delegated PKI and adapt to k8s 1.15.3+ [\#412](https://github.com/puppetlabs/puppetlabs-kubernetes/pull/412) ([Wiston999](https://github.com/Wiston999))
13
32
- Add option to set the dns domain in kubernetes cluster [\#405](https://github.com/puppetlabs/puppetlabs-kubernetes/pull/405) ([BaronMsk](https://github.com/BaronMsk))
@@ -35,7 +54,6 @@ All notable changes to this project will be documented in this file. The format
35
54
36
55
### Added
37
56
38
-
- pdksync - \(IAC-973\) - Update travis/appveyor to run on new default branch `main`[\#428](https://github.com/puppetlabs/puppetlabs-kubernetes/pull/428) ([david22swan](https://github.com/david22swan))
- Add docker\_extra\_daemon\_config for use when managing docker [\#376](https://github.com/puppetlabs/puppetlabs-kubernetes/pull/376) ([mrwulf](https://github.com/mrwulf))
41
59
- Add support for managing Docker logging max-file and max-size settings. [\#358](https://github.com/puppetlabs/puppetlabs-kubernetes/pull/358) ([nickperry](https://github.com/nickperry))
@@ -73,16 +91,17 @@ All notable changes to this project will be documented in this file. The format
- make proxy mode configurable [\#297](https://github.com/puppetlabs/puppetlabs-kubernetes/pull/297) ([mrwulf](https://github.com/mrwulf))
75
93
- Fixed duplicate tlsBootstrapToken in config\_worker.yaml.erb for kubernetes 1.14 [\#287](https://github.com/puppetlabs/puppetlabs-kubernetes/pull/287) ([Hillkorn](https://github.com/Hillkorn))
76
-
- Add extra arguments for API server and controller manager [\#282](https://github.com/puppetlabs/puppetlabs-kubernetes/pull/282) ([fydai](https://github.com/fydai))
- Add extra arguments for API server and controller manager [\#282](https://github.com/puppetlabs/puppetlabs-kubernetes/pull/282) ([fydai](https://github.com/fydai))
84
102
- cluster name missing tag brackets in worker config [\#280](https://github.com/puppetlabs/puppetlabs-kubernetes/pull/280) ([jorhett](https://github.com/jorhett))
85
103
- Avoid log message about waiting for SA when it already exists [\#278](https://github.com/puppetlabs/puppetlabs-kubernetes/pull/278) ([jorhett](https://github.com/jorhett))
104
+
- MODULES-8947 fixing bugs and tests [\#274](https://github.com/puppetlabs/puppetlabs-kubernetes/pull/274) ([sheenaajay](https://github.com/sheenaajay))
Copy file name to clipboardExpand all lines: REFERENCE.md
+103-1Lines changed: 103 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -800,6 +800,10 @@ the files if they do not exist.
800
800
A hash of extra volume mounts mounted on the controller manager.
801
801
Defaults to []
802
802
803
+
[*scheduler_extra_arguments*]
804
+
A string array of extra arguments to be passed to scheduler.
805
+
Defaults to []
806
+
803
807
[*delegated_pki*]
804
808
Set to true if all required X509 certificates will be provided by external means. Setting this to true will ignore all *_crt and *_key including sa.key and sa.pub files.
805
809
Defaults to false
@@ -1015,6 +1019,24 @@ Default to 24h
1015
1019
Set the metricsBindAddress (to allow prometheus)
1016
1020
Default to 127.0.0.1
1017
1021
1022
+
[*conntrack_max_per_core*]
1023
+
Maximum number of NAT connections to track per CPU core.
1024
+
Set to 0 to leave the limit as-is and ignore conntrack_min.
1025
+
Default to 32768
1026
+
1027
+
[*conntrack_min*]
1028
+
Minimum number of conntrack entries to allocate, regardless of conntrack-max-per-core.
1029
+
Set conntrack_max_per_core to 0 to leave the limit as-is
1030
+
Default to 131072
1031
+
1032
+
[*conntrack_tcp_wait_timeout*]
1033
+
NAT timeout for TCP connections in the CLOSE_WAIT state.
1034
+
Default to 1h0m0s
1035
+
1036
+
[*conntrack_tcp_stablished_timeout*]
1037
+
Idle timeout for established TCP connections (0 to leave as-is).
1038
+
Default to 24h0m0s
1039
+
1018
1040
Authors
1019
1041
-------
1020
1042
@@ -1166,7 +1188,7 @@ Data type: `Optional[String]`
1166
1188
1167
1189
1168
1190
1169
-
Default value: `$facts['hostname']`
1191
+
Default value: `$facts['networking']['hostname']`
1170
1192
1171
1193
##### `etcd_ip`
1172
1194
@@ -1454,6 +1476,14 @@ Data type: `Optional[Array]`
1454
1476
1455
1477
1456
1478
1479
+
Default value: `[]`
1480
+
1481
+
##### `scheduler_extra_arguments`
1482
+
1483
+
Data type: `Optional[Array]`
1484
+
1485
+
1486
+
1457
1487
Default value: `[]`
1458
1488
1459
1489
##### `service_cidr`
@@ -1872,6 +1902,38 @@ Data type: `Optional[String]`
1872
1902
1873
1903
Default value: ``undef``
1874
1904
1905
+
##### `conntrack_max_per_core`
1906
+
1907
+
Data type: `Integer`
1908
+
1909
+
1910
+
1911
+
Default value: `32768`
1912
+
1913
+
##### `conntrack_min`
1914
+
1915
+
Data type: `Integer`
1916
+
1917
+
1918
+
1919
+
Default value: `131072`
1920
+
1921
+
##### `conntrack_tcp_wait_timeout`
1922
+
1923
+
Data type: `String`
1924
+
1925
+
1926
+
1927
+
Default value: `'1h0m0s'`
1928
+
1929
+
##### `conntrack_tcp_stablished_timeout`
1930
+
1931
+
Data type: `String`
1932
+
1933
+
1934
+
1935
+
Default value: `'24h0m0s'`
1936
+
1875
1937
### `kubernetes::cluster_roles`
1876
1938
1877
1939
The kubernetes::cluster_roles class.
@@ -2288,6 +2350,14 @@ Data type: `Optional[Array]`
0 commit comments