forked from billimek/k8s-gitops
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnode-red.yaml
60 lines (60 loc) · 1.47 KB
/
node-red.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
---
apiVersion: helm.toolkit.fluxcd.io/v2beta1
kind: HelmRelease
metadata:
name: node-red
namespace: default
spec:
interval: 5m
chart:
spec:
# renovate: registryUrl=https://k8s-at-home.com/charts/
chart: node-red
version: 10.3.2
sourceRef:
kind: HelmRepository
name: k8s-at-home-charts
namespace: flux-system
interval: 5m
values:
image:
repository: nodered/node-red
tag: 3.0.2-18-minimal
env:
TZ: "America/New_York"
FLOWS: "flows.json"
NODE_RED_ENABLE_PROJECTS: "true"
NODE_RED_ENABLE_SAFE_MODE: "false"
ingress:
main:
enabled: true
annotations:
kubernetes.io/ingress.class: "nginx"
nginx.ingress.kubernetes.io/auth-url: "https://auth.eviljungle.com/oauth2/auth"
nginx.ingress.kubernetes.io/auth-signin: https://auth.eviljungle.com/oauth2/start
hosts:
- host: node-red.eviljungle.com
paths:
- path: /
pathType: Prefix
tls:
- hosts:
- "node-red.eviljungle.com"
persistence:
data:
enabled: true
mountPath: /data
storageClass: "rook-ceph-block"
accessMode: ReadWriteOnce
size: "5Gi"
podAnnotations:
backup.velero.io/backup-volumes: data
tolerations:
- key: "arm"
operator: "Exists"
resources:
requests:
memory: 350Mi
cpu: 25m
limits:
memory: 500Mi