@flowfuse/driver-kubernetes 2.23.2-e13c08d-202511191025.0 → 2.24.0
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/CHANGELOG.md +6 -0
- package/kubernetes.js +0 -9
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
#### 2.24.0: Release
|
|
2
|
+
|
|
3
|
+
- feat: Add default startup probe values (#257)
|
|
4
|
+
- Revert "feat: Add default startup probe values (#257)" (#258) @ppawlowski
|
|
5
|
+
- Bump js-yaml from 4.1.0 to 4.1.1 (#256) @app/dependabot
|
|
6
|
+
|
|
1
7
|
#### 2.23.1: Release
|
|
2
8
|
|
|
3
9
|
- Bump flowfuse/github-actions-workflows from 0.42.0 to 0.43.0 (#254)
|
package/kubernetes.js
CHANGED
|
@@ -229,15 +229,6 @@ const createDeployment = async (project, options) => {
|
|
|
229
229
|
}
|
|
230
230
|
if (this._app.config.driver.options?.projectProbes?.startupProbe) {
|
|
231
231
|
localPod.spec.containers[0].startupProbe = this._app.config.driver.options.projectProbes.startupProbe
|
|
232
|
-
} else {
|
|
233
|
-
localPod.spec.containers[0].startupProbe = {
|
|
234
|
-
httpGet: {
|
|
235
|
-
path: '/flowforge/ready',
|
|
236
|
-
port: deploymentTemplate.spec.template.spec.containers[0].ports[1].name
|
|
237
|
-
},
|
|
238
|
-
initialDelaySeconds: 5,
|
|
239
|
-
periodSeconds: 2
|
|
240
|
-
}
|
|
241
232
|
}
|
|
242
233
|
|
|
243
234
|
const ha = await project.getSetting('ha')
|