75 lines
1.3 KiB
YAML
75 lines
1.3 KiB
YAML
|
secrets:
|
||
|
config:
|
||
|
env: true
|
||
|
enabled: false
|
||
|
data:
|
||
|
secret: dGVzdAo=
|
||
|
blabla: dGVzdAo=
|
||
|
stringData:
|
||
|
USERNAME: foo
|
||
|
PASSWORD: bar
|
||
|
file:
|
||
|
stringData:
|
||
|
game.conf: "this is a long file"
|
||
|
|
||
|
configs:
|
||
|
mariadb:
|
||
|
enabled: false
|
||
|
env: true
|
||
|
data:
|
||
|
ABC: 123
|
||
|
file:
|
||
|
data:
|
||
|
file.txt: |
|
||
|
this is a multi line
|
||
|
file that should be mounted
|
||
|
|
||
|
|
||
|
enva:
|
||
|
- name: TESTING
|
||
|
value: "kasll"
|
||
|
|
||
|
|
||
|
namespace: kallekalas
|
||
|
controller:
|
||
|
enabled: true
|
||
|
type: statefulset
|
||
|
image:
|
||
|
repository: docker.io/nodered/node-red
|
||
|
pullPolicy:
|
||
|
# Overrides the image tag whose default is the chart appVersion.
|
||
|
tag: ""
|
||
|
|
||
|
service:
|
||
|
main:
|
||
|
enabled: false
|
||
|
type: ClusterIP
|
||
|
ports:
|
||
|
http:
|
||
|
port: 80
|
||
|
targetPort: 1880
|
||
|
protocol: HTTP
|
||
|
ingress:
|
||
|
enabled: false
|
||
|
className: ""
|
||
|
service: main
|
||
|
annotations: {}
|
||
|
# kubernetes.io/ingress.class: nginx
|
||
|
# kubernetes.io/tls-acme: "true"
|
||
|
hosts:
|
||
|
- host: chart-example.local
|
||
|
paths:
|
||
|
- path: /
|
||
|
pathType: ImplementationSpecific
|
||
|
tls: []
|
||
|
# - secretName: chart-example-tls
|
||
|
# hosts:
|
||
|
# - chart-example.local
|
||
|
|
||
|
volumeClaimTemplates:
|
||
|
- name: www
|
||
|
mountPath: /var/www/html
|
||
|
accessMode: "ReadWriteOnce"
|
||
|
storageClassName: "local-path"
|
||
|
size: 1Gi
|