kubernetes-fluent-client 3.0.1 → 3.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/fluent/watch.js +2 -2
- package/package.json +12 -12
- package/src/fluent/watch.ts +2 -2
package/dist/fluent/watch.js
CHANGED
|
@@ -90,8 +90,8 @@ class Watcher {
|
|
|
90
90
|
constructor(model, filters, callback, watchCfg = {}) {
|
|
91
91
|
// Set the retry delay to 5 seconds if not specified
|
|
92
92
|
watchCfg.resyncDelaySec ??= 5;
|
|
93
|
-
// Set the relist interval to
|
|
94
|
-
watchCfg.relistIntervalSec ??=
|
|
93
|
+
// Set the relist interval to 10 minutes if not specified
|
|
94
|
+
watchCfg.relistIntervalSec ??= 600;
|
|
95
95
|
// Set the resync interval to 10 minutes if not specified
|
|
96
96
|
watchCfg.lastSeenLimitSeconds ??= 600;
|
|
97
97
|
// Set the last seen limit to the resync interval
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kubernetes-fluent-client",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.3",
|
|
4
4
|
"description": "A @kubernetes/client-node fluent API wrapper that leverages K8s Server Side Apply.",
|
|
5
5
|
"bin": "./dist/cli.js",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -41,26 +41,26 @@
|
|
|
41
41
|
"http-status-codes": "2.3.0",
|
|
42
42
|
"node-fetch": "2.7.0",
|
|
43
43
|
"quicktype-core": "23.0.170",
|
|
44
|
-
"type-fest": "4.
|
|
44
|
+
"type-fest": "4.26.1",
|
|
45
45
|
"yargs": "17.7.2"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@commitlint/cli": "19.
|
|
49
|
-
"@commitlint/config-conventional": "19.
|
|
48
|
+
"@commitlint/cli": "19.5.0",
|
|
49
|
+
"@commitlint/config-conventional": "19.5.0",
|
|
50
50
|
"@jest/globals": "29.7.0",
|
|
51
51
|
"@types/byline": "4.2.36",
|
|
52
52
|
"@types/readable-stream": "4.0.15",
|
|
53
53
|
"@types/urijs": "^1.19.25",
|
|
54
|
-
"@types/yargs": "17.0.
|
|
55
|
-
"@typescript-eslint/eslint-plugin": "8.
|
|
56
|
-
"@typescript-eslint/parser": "8.
|
|
57
|
-
"eslint-plugin-jsdoc": "
|
|
54
|
+
"@types/yargs": "17.0.33",
|
|
55
|
+
"@typescript-eslint/eslint-plugin": "8.5.0",
|
|
56
|
+
"@typescript-eslint/parser": "8.5.0",
|
|
57
|
+
"eslint-plugin-jsdoc": "50.2.3",
|
|
58
58
|
"jest": "29.7.0",
|
|
59
|
-
"nock": "13.5.
|
|
59
|
+
"nock": "13.5.5",
|
|
60
60
|
"prettier": "3.3.3",
|
|
61
|
-
"semantic-release": "24.
|
|
62
|
-
"ts-jest": "29.2.
|
|
63
|
-
"typescript": "5.
|
|
61
|
+
"semantic-release": "24.1.1",
|
|
62
|
+
"ts-jest": "29.2.5",
|
|
63
|
+
"typescript": "5.6.2"
|
|
64
64
|
},
|
|
65
65
|
"release": {
|
|
66
66
|
"branches": [
|
package/src/fluent/watch.ts
CHANGED
|
@@ -113,8 +113,8 @@ export class Watcher<T extends GenericClass> {
|
|
|
113
113
|
// Set the retry delay to 5 seconds if not specified
|
|
114
114
|
watchCfg.resyncDelaySec ??= 5;
|
|
115
115
|
|
|
116
|
-
// Set the relist interval to
|
|
117
|
-
watchCfg.relistIntervalSec ??=
|
|
116
|
+
// Set the relist interval to 10 minutes if not specified
|
|
117
|
+
watchCfg.relistIntervalSec ??= 600;
|
|
118
118
|
|
|
119
119
|
// Set the resync interval to 10 minutes if not specified
|
|
120
120
|
watchCfg.lastSeenLimitSeconds ??= 600;
|