@flowfuse/driver-kubernetes 1.14.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/.eslintrc ADDED
@@ -0,0 +1,19 @@
1
+ {
2
+ "root": true,
3
+ "env": {
4
+ "browser": true,
5
+ "commonjs": true,
6
+ "es2021": true,
7
+ "mocha": true
8
+ },
9
+ "extends": [
10
+ "standard"
11
+ ],
12
+ "parserOptions": {
13
+ "ecmaVersion": 12
14
+ },
15
+ "rules": {
16
+ "indent": ["error", 4],
17
+ "object-shorthand": ["error"]
18
+ }
19
+ }
@@ -0,0 +1,10 @@
1
+ name: Project automations
2
+ on:
3
+ issues:
4
+ types:
5
+ - opened
6
+ jobs:
7
+ add_to_product_board:
8
+ uses: flowfuse/.github/.github/workflows/project-automation.yml@main
9
+ secrets:
10
+ token: ${{ secrets.PROJECT_ACCESS_TOKEN }}
@@ -0,0 +1,42 @@
1
+ name: Build and push packages
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
+ branches:
9
+ - main
10
+
11
+ jobs:
12
+ build:
13
+ uses: 'flowfuse/github-actions-workflows/.github/workflows/build_node_package.yml@v0.1.0'
14
+
15
+ publish:
16
+ needs: build
17
+ if: github.event_name == 'push' && github.ref == 'refs/heads/main'
18
+ uses: 'flowfuse/github-actions-workflows/.github/workflows/publish_node_package.yml@v0.1.0'
19
+ with:
20
+ package_name: driver-k8s
21
+ publish_package: true
22
+ secrets:
23
+ npm_registry_token: ${{ secrets.NPM_PUBLISH_TOKEN }}
24
+
25
+ dispatch_container_build:
26
+ needs: publish
27
+ runs-on: ubuntu-latest
28
+ steps:
29
+ - name: Generate a token
30
+ id: generate_token
31
+ uses: tibdex/github-app-token@v1
32
+ with:
33
+ app_id: ${{ secrets.GH_BOT_APP_ID }}
34
+ private_key: ${{ secrets.GH_BOT_APP_KEY }}
35
+ - name: Trigger flowfuse container build
36
+ uses: benc-uk/workflow-dispatch@v1
37
+ with:
38
+ workflow: flowforge-container.yml
39
+ repo: flowfuse/helm
40
+ ref: main
41
+ token: ${{ steps.generate_token.outputs.token }}
42
+
@@ -0,0 +1,18 @@
1
+ name: Release Published
2
+ on:
3
+ push:
4
+ tags:
5
+ - 'v*.*.*'
6
+
7
+ jobs:
8
+ publish:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v1
12
+ - uses: actions/setup-node@v1
13
+ with:
14
+ node-version: 16
15
+ - run: npm ci
16
+ - uses: JS-DevTools/npm-publish@v1
17
+ with:
18
+ token: ${{ secrets.NPM_PUBLISH_TOKEN }}
package/CHANGELOG.md ADDED
@@ -0,0 +1,142 @@
1
+ #### 1.14.0: Release
2
+
3
+
4
+ #### 1.13.0: Release
5
+
6
+ - Pin reusable workflows to v0.1.0 (#123) @ppawlowski
7
+ - Force Resource limits to Strings (#122) @hardillb
8
+
9
+ #### 1.12.1: Release
10
+
11
+ - Run promises in order (#115) @hardillb
12
+ - Expose mem/cpu limits (#119) @hardillb
13
+ - Update ff references in package.json (#117) @knolleary
14
+ - Change repo references in workflows after github org rename (#113) @ppawlowski
15
+
16
+ #### 1.12.0: Release
17
+
18
+ - Publish nightly package to npmjs (#112) @ppawlowski
19
+ - Pin reusable workflow to commit SHA (#111) @ppawlowski
20
+ - Disable scheduled package build (#110) @ppawlowski
21
+
22
+ #### 1.11.0: Release
23
+
24
+ - Add flowforge container build dispatch in the node package build pipeline (#108) @ppawlowski
25
+ - Bump kubernetes client (#107) @hardillb
26
+ - Bump word-wrap from 1.2.3 to 1.2.5 (#105) @app/dependabot
27
+ - FIX: Publish package on schedule (#104) @ppawlowski
28
+ - FIX: Allow publish only when changes are pushed to `main` branch (#103) @ppawlowski
29
+
30
+ #### 1.10.1: Release
31
+
32
+ - Fix editor path (#101) @hardillb
33
+ - Introduce package publish pipeline (#99) @ppawlowski
34
+ - Move to CluserIP (#100) @hardillb
35
+ - Remove evreything on suspend (#98) @hardillb
36
+
37
+ #### 1.10.0: Release
38
+
39
+ - Added support for annotation substitutions (#95) @dfulgham
40
+ - Editors: allow optional service account linkage (#92) @elenaviter
41
+ - Chore: Set root flag in eslint (#93) @Pezmc
42
+
43
+ #### 1.9.0: Release
44
+
45
+ - Support for changing the base domain (#88) @hardillb
46
+ - Add package-lock.json (#89) @Pezmc
47
+
48
+ #### 1.8.0: Release
49
+
50
+ - HA: multiple instance replicas (#85) @hardillb
51
+ - Log failures if not restarting susspended project (#86) @hardillb
52
+
53
+ #### 1.7.0: Release
54
+
55
+ - Editor configuration from process environment (#80) @andreikop
56
+
57
+ #### 1.6.0: Release
58
+
59
+
60
+ #### 1.5.0: Release
61
+
62
+ - Add Support for Private Certificate Authorities (#78) @hardillb
63
+
64
+ #### 1.4.0: Release
65
+
66
+ - Fix deployment state (#72) @hardillb
67
+ - Remove ALB annotations (#74) @hardillb
68
+ - Pod to deployment gradual (#71) @hardillb
69
+
70
+ #### 1.3.0: Release
71
+
72
+
73
+ #### 1.2.0: Release
74
+
75
+
76
+ #### 1.1.0: Release
77
+
78
+ - Add getDefaultStackProperies (#63) @hardillb
79
+ - Env Var values must be strings (#64) @hardillb
80
+ - Add flags to inhibit TCP/UDP inbound connections (#60) @Steve-Mcl
81
+ - Only set the nodeSelector if in options (#62) @hardillb
82
+
83
+ #### 1.0.0: Release
84
+
85
+ - Improve project status & detail reporting to frontend (#58) @Steve-Mcl
86
+ - Update eslint rules (#57) @knolleary
87
+ - Force container to run as UID 1000 (#56) @hardillb
88
+
89
+ #### 0.10.0: Release
90
+
91
+ - Prefix service names if they start with a number (#53) @hardillb
92
+
93
+ #### 0.9.0: Release
94
+
95
+ - Make use of project.safename (#51) @hardillb
96
+
97
+ #### 0.8.0: Release
98
+
99
+ - Add licenseType to launcher env (#48) @knolleary
100
+ - Add FORGE_BROKER_* credentials to launcher env (#44) @knolleary
101
+ - add env var FORGE_TEAM_ID (#47) @Steve-Mcl
102
+
103
+ #### 0.7.0: Release
104
+
105
+ - Add startup check for status (#45) @hardillb
106
+
107
+ #### 0.6.0: Release
108
+
109
+ - Map FlowForge logout to nodered auth/revoke (#39) @Steve-Mcl
110
+ - Throw proper errors when actions performed on unknown project (#40) @knolleary
111
+ - Add FORGE_NR_SECRET env if project has credSecret set (#38) @knolleary
112
+ - Add description to stack properties (#36) @hardillb
113
+
114
+ #### 0.5.0: Release
115
+
116
+ - Ensure latest version of contianer is always pulled (#33) @hardillb
117
+
118
+ #### 0.4.0: Release
119
+
120
+ - Fix ingress annotations on AWS (#30) @hardillb
121
+ - Deal with project not in internal cache (#29) @hardillb
122
+ - Update to new driver api and lifecycle (#27) @knolleary
123
+ - Update project automation (#28) @knolleary
124
+ - Fix typo in pod limits (#25) @hardillb
125
+ - Fix CPU % Validator regex (#23) @hardillb
126
+ - Allow Node selectors to be set in flowforge.yml (#22) @hardillb
127
+ - Only add AWS Ingress annotation on AWS (#21) @hardillb
128
+
129
+ #### 0.3.0: Release
130
+
131
+ - Restart missing projects (#12) @hardillb
132
+ - Add stack support (#16) @hardillb
133
+ - Stop driver setting baseURL/forgeURL (#17) @knolleary
134
+ - Automate npm publish on release (#15) @hardillb
135
+
136
+ #### 0.2.0: Release
137
+
138
+ - Bump kube client version to pick up deps (#13) @hardillb
139
+ - add Shutdown hook (#11) @hardillb
140
+ - Add CPU/Memory limits to projects (#10) @hardillb
141
+ - Match url schema to base_url (#9) @hardillb
142
+ - Add project to ALB group (#8) @hardillb
package/LICENSE ADDED
@@ -0,0 +1,178 @@
1
+ Copyright FlowForge Inc, and other contributors, https://flowforge.com/
2
+
3
+ Apache License
4
+ Version 2.0, January 2004
5
+ http://www.apache.org/licenses/
6
+
7
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
8
+
9
+ 1. Definitions.
10
+
11
+ "License" shall mean the terms and conditions for use, reproduction,
12
+ and distribution as defined by Sections 1 through 9 of this document.
13
+
14
+ "Licensor" shall mean the copyright owner or entity authorized by
15
+ the copyright owner that is granting the License.
16
+
17
+ "Legal Entity" shall mean the union of the acting entity and all
18
+ other entities that control, are controlled by, or are under common
19
+ control with that entity. For the purposes of this definition,
20
+ "control" means (i) the power, direct or indirect, to cause the
21
+ direction or management of such entity, whether by contract or
22
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
23
+ outstanding shares, or (iii) beneficial ownership of such entity.
24
+
25
+ "You" (or "Your") shall mean an individual or Legal Entity
26
+ exercising permissions granted by this License.
27
+
28
+ "Source" form shall mean the preferred form for making modifications,
29
+ including but not limited to software source code, documentation
30
+ source, and configuration files.
31
+
32
+ "Object" form shall mean any form resulting from mechanical
33
+ transformation or translation of a Source form, including but
34
+ not limited to compiled object code, generated documentation,
35
+ and conversions to other media types.
36
+
37
+ "Work" shall mean the work of authorship, whether in Source or
38
+ Object form, made available under the License, as indicated by a
39
+ copyright notice that is included in or attached to the work
40
+ (an example is provided in the Appendix below).
41
+
42
+ "Derivative Works" shall mean any work, whether in Source or Object
43
+ form, that is based on (or derived from) the Work and for which the
44
+ editorial revisions, annotations, elaborations, or other modifications
45
+ represent, as a whole, an original work of authorship. For the purposes
46
+ of this License, Derivative Works shall not include works that remain
47
+ separable from, or merely link (or bind by name) to the interfaces of,
48
+ the Work and Derivative Works thereof.
49
+
50
+ "Contribution" shall mean any work of authorship, including
51
+ the original version of the Work and any modifications or additions
52
+ to that Work or Derivative Works thereof, that is intentionally
53
+ submitted to Licensor for inclusion in the Work by the copyright owner
54
+ or by an individual or Legal Entity authorized to submit on behalf of
55
+ the copyright owner. For the purposes of this definition, "submitted"
56
+ means any form of electronic, verbal, or written communication sent
57
+ to the Licensor or its representatives, including but not limited to
58
+ communication on electronic mailing lists, source code control systems,
59
+ and issue tracking systems that are managed by, or on behalf of, the
60
+ Licensor for the purpose of discussing and improving the Work, but
61
+ excluding communication that is conspicuously marked or otherwise
62
+ designated in writing by the copyright owner as "Not a Contribution."
63
+
64
+ "Contributor" shall mean Licensor and any individual or Legal Entity
65
+ on behalf of whom a Contribution has been received by Licensor and
66
+ subsequently incorporated within the Work.
67
+
68
+ 2. Grant of Copyright License. Subject to the terms and conditions of
69
+ this License, each Contributor hereby grants to You a perpetual,
70
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
71
+ copyright license to reproduce, prepare Derivative Works of,
72
+ publicly display, publicly perform, sublicense, and distribute the
73
+ Work and such Derivative Works in Source or Object form.
74
+
75
+ 3. Grant of Patent License. Subject to the terms and conditions of
76
+ this License, each Contributor hereby grants to You a perpetual,
77
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
78
+ (except as stated in this section) patent license to make, have made,
79
+ use, offer to sell, sell, import, and otherwise transfer the Work,
80
+ where such license applies only to those patent claims licensable
81
+ by such Contributor that are necessarily infringed by their
82
+ Contribution(s) alone or by combination of their Contribution(s)
83
+ with the Work to which such Contribution(s) was submitted. If You
84
+ institute patent litigation against any entity (including a
85
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
86
+ or a Contribution incorporated within the Work constitutes direct
87
+ or contributory patent infringement, then any patent licenses
88
+ granted to You under this License for that Work shall terminate
89
+ as of the date such litigation is filed.
90
+
91
+ 4. Redistribution. You may reproduce and distribute copies of the
92
+ Work or Derivative Works thereof in any medium, with or without
93
+ modifications, and in Source or Object form, provided that You
94
+ meet the following conditions:
95
+
96
+ (a) You must give any other recipients of the Work or
97
+ Derivative Works a copy of this License; and
98
+
99
+ (b) You must cause any modified files to carry prominent notices
100
+ stating that You changed the files; and
101
+
102
+ (c) You must retain, in the Source form of any Derivative Works
103
+ that You distribute, all copyright, patent, trademark, and
104
+ attribution notices from the Source form of the Work,
105
+ excluding those notices that do not pertain to any part of
106
+ the Derivative Works; and
107
+
108
+ (d) If the Work includes a "NOTICE" text file as part of its
109
+ distribution, then any Derivative Works that You distribute must
110
+ include a readable copy of the attribution notices contained
111
+ within such NOTICE file, excluding those notices that do not
112
+ pertain to any part of the Derivative Works, in at least one
113
+ of the following places: within a NOTICE text file distributed
114
+ as part of the Derivative Works; within the Source form or
115
+ documentation, if provided along with the Derivative Works; or,
116
+ within a display generated by the Derivative Works, if and
117
+ wherever such third-party notices normally appear. The contents
118
+ of the NOTICE file are for informational purposes only and
119
+ do not modify the License. You may add Your own attribution
120
+ notices within Derivative Works that You distribute, alongside
121
+ or as an addendum to the NOTICE text from the Work, provided
122
+ that such additional attribution notices cannot be construed
123
+ as modifying the License.
124
+
125
+ You may add Your own copyright statement to Your modifications and
126
+ may provide additional or different license terms and conditions
127
+ for use, reproduction, or distribution of Your modifications, or
128
+ for any such Derivative Works as a whole, provided Your use,
129
+ reproduction, and distribution of the Work otherwise complies with
130
+ the conditions stated in this License.
131
+
132
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
133
+ any Contribution intentionally submitted for inclusion in the Work
134
+ by You to the Licensor shall be under the terms and conditions of
135
+ this License, without any additional terms or conditions.
136
+ Notwithstanding the above, nothing herein shall supersede or modify
137
+ the terms of any separate license agreement you may have executed
138
+ with Licensor regarding such Contributions.
139
+
140
+ 6. Trademarks. This License does not grant permission to use the trade
141
+ names, trademarks, service marks, or product names of the Licensor,
142
+ except as required for reasonable and customary use in describing the
143
+ origin of the Work and reproducing the content of the NOTICE file.
144
+
145
+ 7. Disclaimer of Warranty. Unless required by applicable law or
146
+ agreed to in writing, Licensor provides the Work (and each
147
+ Contributor provides its Contributions) on an "AS IS" BASIS,
148
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
149
+ implied, including, without limitation, any warranties or conditions
150
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
151
+ PARTICULAR PURPOSE. You are solely responsible for determining the
152
+ appropriateness of using or redistributing the Work and assume any
153
+ risks associated with Your exercise of permissions under this License.
154
+
155
+ 8. Limitation of Liability. In no event and under no legal theory,
156
+ whether in tort (including negligence), contract, or otherwise,
157
+ unless required by applicable law (such as deliberate and grossly
158
+ negligent acts) or agreed to in writing, shall any Contributor be
159
+ liable to You for damages, including any direct, indirect, special,
160
+ incidental, or consequential damages of any character arising as a
161
+ result of this License or out of the use or inability to use the
162
+ Work (including but not limited to damages for loss of goodwill,
163
+ work stoppage, computer failure or malfunction, or any and all
164
+ other commercial damages or losses), even if such Contributor
165
+ has been advised of the possibility of such damages.
166
+
167
+ 9. Accepting Warranty or Additional Liability. While redistributing
168
+ the Work or Derivative Works thereof, You may choose to offer,
169
+ and charge a fee for, acceptance of support, warranty, indemnity,
170
+ or other liability obligations and/or rights consistent with this
171
+ License. However, in accepting such obligations, You may act only
172
+ on Your own behalf and on Your sole responsibility, not on behalf
173
+ of any other Contributor, and only if You agree to indemnify,
174
+ defend, and hold each Contributor harmless for any liability
175
+ incurred by, or claims asserted against, such Contributor by reason
176
+ of your accepting any such warranty or additional liability.
177
+
178
+ END OF TERMS AND CONDITIONS
package/README.md ADDED
@@ -0,0 +1,43 @@
1
+ # FlowForge Docker Container Driver
2
+
3
+ FlowForge driver to create projects as docker containers
4
+
5
+ ## Configuration
6
+
7
+ In the `flowforge.yml` file
8
+
9
+ ```yaml
10
+ ...
11
+ driver:
12
+ type: kubernetes
13
+ options:
14
+ registry: containers.flowforge.com
15
+ projectSelector:
16
+ role: projects
17
+ projectNamespace: flowforge
18
+ cloudProvider: aws
19
+ privateCA: ff-ca-certs
20
+ k8sDelay: 1000
21
+ k8sRetries: 10
22
+ ```
23
+
24
+ - `registry` is the Docker Registry to load Stack Containers from
25
+ - `projectNamespace` the namespace Project pods should run in
26
+ - `projectSelector` a list of labels that should be used to select which nodes Project Pods
27
+ should run on
28
+ - `cloudProvider` can be left unset for none `aws` deployments. This triggers the adding of
29
+ AWS EKS specific annotation for ALB Ingress.
30
+ - `privateCA` name of ConfigMap holding PEM CA Cert Bundle (file name `certs.pem`) Optional
31
+ - `k8sRetries` how many times to retry actions against the K8s API
32
+ - `k8sDelay` how long to wait (in ms) between retries to the K8s API
33
+
34
+ Expects to pick up K8s credentials from the environment
35
+
36
+ ### Configuration via environment variables
37
+
38
+ Next variables are read from flowforge process environment in runtime:
39
+
40
+ * `INGRESS_CLASS_NAME` - `Ingress` class name for editor instances
41
+ * `INGRESS_ANNOTATIONS` - `Ingress` annotations for editor instances as JSON-encoded object
42
+ * `DEPLOYMENT_TOLERATIONS` - Editor `Deployment` tolerations as JSON-encoded object
43
+ * `EDITOR_SERVICE_ACCOUNT` - Editor service account.