@flowfuse/driver-kubernetes 2.22.1-ade66aa-202510011028.0 → 2.22.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 +5 -0
- package/README.md +4 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
#### 2.22.1: Release
|
|
2
|
+
|
|
3
|
+
- Bump JS-DevTools/npm-publish from 4.0.1 to 4.1.1 (#240)
|
|
4
|
+
- feat: add possibility to apply custom labels on project-related resources (#241) @ppawlowski
|
|
5
|
+
|
|
1
6
|
#### 2.22.0: Release
|
|
2
7
|
|
|
3
8
|
- Bump JS-DevTools/npm-publish from 4.0.0 to 4.0.1 (#236)
|
package/README.md
CHANGED
|
@@ -15,6 +15,9 @@ driver:
|
|
|
15
15
|
projectSelector:
|
|
16
16
|
role: projects
|
|
17
17
|
projectNamespace: flowforge
|
|
18
|
+
projectLabels:
|
|
19
|
+
environment: production
|
|
20
|
+
team: alpha
|
|
18
21
|
cloudProvider: aws
|
|
19
22
|
privateCA: ff-ca-certs
|
|
20
23
|
certManagerIssuer: lets-encrypt
|
|
@@ -40,6 +43,7 @@ driver:
|
|
|
40
43
|
- `projectNamespace` the namespace Project pods should run in
|
|
41
44
|
- `projectSelector` a list of labels that should be used to select which nodes Project Pods
|
|
42
45
|
should run on
|
|
46
|
+
- `projectLabels` a list of custom labels that should be applied to all resources created for Projects (Pods, Services, Ingresses, PVCs)
|
|
43
47
|
- `cloudProvider` normally not set, but can be `aws` This triggers the adding of
|
|
44
48
|
AWS EKS specific annotation for ALB Ingress. or `openshift` to allow running on OpenShift (Enterprise license only)
|
|
45
49
|
- `privateCA` name of ConfigMap holding PEM CA Cert Bundle (file name `certs.pem`) Optional
|