@flowfuse/driver-kubernetes 2.0.1-edaa1dc-202401181026.0 → 2.0.1

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 CHANGED
@@ -1,3 +1,7 @@
1
+ #### 2.0.1: Release
2
+
3
+ - Typo, extra `_` in option name (#133) @hardillb
4
+
1
5
  #### 2.0.0: Release
2
6
 
3
7
  - Add support for using cert manager (#131) @hardillb
package/kubernetes.js CHANGED
@@ -605,7 +605,7 @@ module.exports = {
605
605
  this._namespace = this._app.config.driver.options.projectNamespace || 'flowforge'
606
606
  this._k8sDelay = this._app.config.driver.options.k8sDelay || 1000
607
607
  this._k8sRetries = this._app.config.driver.options.k8sRetries || 10
608
- this._certManagerIssuer = this._app.config.driver.options._certManagerIssuer
608
+ this._certManagerIssuer = this._app.config.driver.options.certManagerIssuer
609
609
 
610
610
  const kc = new k8s.KubeConfig()
611
611
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowfuse/driver-kubernetes",
3
- "version": "2.0.1-edaa1dc-202401181026.0",
3
+ "version": "2.0.1",
4
4
  "description": "Kubernetes driver for FlowFuse",
5
5
  "main": "kubernetes.js",
6
6
  "scripts": {