Commit b49d9ba 1 parent a1c137c commit b49d9ba Copy full SHA for b49d9ba
File tree 3 files changed +13
-3
lines changed
3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -456,6 +456,7 @@ yaml) |
456
456
| `nodeSelector` | Global [NodeSelector](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/) | `{}` |
457
457
| `openfaasImagePullPolicy` | Image pull policy for openfaas components, can change to `IfNotPresent` in offline env | `Always` |
458
458
| `openfaasPro` | Deploy OpenFaaS Pro | `false` |
459
+ | `oem` | Deploy OpenFaaS oem | `false` |
459
460
| `psp` | Enable [Pod Security Policy](https://kubernetes.io/docs/concepts/policy/pod-security-policy/) for OpenFaaS accounts | `false` |
460
461
| `rbac` | Enable RBAC | `true` |
461
462
| `securityContext` | Deploy with a `securityContext` set, this can be disabled for use with Istio sidecar injection | `true` |
@@ -490,6 +491,7 @@ yaml) |
490
491
| `faasnetes.resources` | Resource limits and requests for faas-netes container | See [values.yaml](./values.yaml) |
491
492
| `faasnetes.writeTimeout` | Write timeout for the faas-netes API | `""` (defaults to gateway.writeTimeout) |
492
493
| `faasnetesPro.image` | Container image used for faas-netes when `openfaasPro=true` | See [values.yaml](./values.yaml) |
494
+ | `faasnetesOem.image` | Container image used for faas-netes when `oem=true` | See [values.yaml](./values.yaml) |
493
495
| `faasnetesPro.logs.format` | Set the log format, supports `console` or `json` | `console` |
494
496
| `faasnetesPro.logs.debug` | Print debug logs | `false` |
495
497
| `operator.create` | Use the OpenFaaS operator CRD controller, default uses faas-netes as the Kubernetes controller | `false` |
Original file line number Diff line number Diff line change 55
55
secret :
56
56
secretName : basic-auth
57
57
{{- end }}
58
- {{- if .Values.openfaasPro }}
58
+ {{- if or .Values.openfaasPro .Values.oem }}
59
59
- name : license
60
60
secret :
61
61
secretName : openfaas-license
@@ -353,6 +353,8 @@ spec:
353
353
{{- .Values.faasnetes.resources | toYaml | nindent 12 }}
354
354
{{- if .Values.openfaasPro }}
355
355
image : {{ .Values.faasnetesPro.image }}
356
+ {{- else if .Values.oem }}
357
+ image : {{ .Values.faasnetesOem.image}}
356
358
{{- else }}
357
359
image : {{ .Values.faasnetes.image }}
358
360
{{- end }}
@@ -364,7 +366,7 @@ spec:
364
366
{{- end }}
365
367
command :
366
368
- ./faas-netes
367
- {{- if .Values.openfaasPro }}
369
+ {{- if or .Values.openfaasPro .Values.oem }}
368
370
- " -license-file=/var/secrets/license/license"
369
371
{{- end }}
370
372
env :
@@ -445,7 +447,7 @@ spec:
445
447
readOnly : true
446
448
mountPath : " /var/secrets/issuer-key"
447
449
{{- end }}
448
- {{- if .Values.openfaasPro }}
450
+ {{- if or .Values.openfaasPro .Values.oem }}
449
451
- name : license
450
452
readOnly : true
451
453
mountPath : " /var/secrets/license"
Original file line number Diff line number Diff line change @@ -3,6 +3,9 @@ functionNamespace: openfaas-fn # Default namespace for functions
3
3
# Contact us via https://www.openfaas.com/support to purchase a license
4
4
openfaasPro : false
5
5
6
+ # Contact us via https://www.openfaas.com/support to purchase a license
7
+ oem : false
8
+
6
9
httpProbe : true # Setting to true will use HTTP for readiness and liveness probe on the OpenFaaS core components
7
10
8
11
# set clusterRole: true for:
@@ -176,6 +179,9 @@ faasnetesPro:
176
179
debug : false
177
180
format : " console"
178
181
182
+ faasnetesOem :
183
+ image : ghcr.io/openfaasltd/faas-netes-oem:0.1.0-rc1
184
+
179
185
# For the Community Edition
180
186
faasnetes :
181
187
image : ghcr.io/openfaas/faas-netes:0.18.0
You can’t perform that action at this time.
0 commit comments