Sync persistence from questions to values for few apps (#1038)
This commit is contained in:
parent
8b4c2fbf47
commit
9bd43224dc
|
@ -31,10 +31,10 @@ service:
|
||||||
port: 51050
|
port: 51050
|
||||||
protocol: TCP
|
protocol: TCP
|
||||||
|
|
||||||
hostPathMounts:
|
persistence:
|
||||||
- name: config
|
conf:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: /conf
|
mountPath: "/conf"
|
||||||
type: pvc
|
type: pvc
|
||||||
accessMode: ReadWriteOnce
|
accessMode: ReadWriteOnce
|
||||||
size: "100Gi"
|
size: "100Gi"
|
||||||
|
|
|
@ -29,3 +29,11 @@ service:
|
||||||
ports:
|
ports:
|
||||||
main:
|
main:
|
||||||
port: 8191
|
port: 8191
|
||||||
|
|
||||||
|
persistence:
|
||||||
|
config:
|
||||||
|
enabled: true
|
||||||
|
mountPath: "/config"
|
||||||
|
type: pvc
|
||||||
|
accessMode: ReadWriteOnce
|
||||||
|
size: "100Gi"
|
||||||
|
|
|
@ -43,6 +43,14 @@ service:
|
||||||
enabled: true
|
enabled: true
|
||||||
port: 443
|
port: 443
|
||||||
|
|
||||||
|
persistence:
|
||||||
|
config:
|
||||||
|
enabled: true
|
||||||
|
mountPath: "/config"
|
||||||
|
type: pvc
|
||||||
|
accessMode: ReadWriteOnce
|
||||||
|
size: "100Gi"
|
||||||
|
|
||||||
# -- Configures the probes for the main Pod.
|
# -- Configures the probes for the main Pod.
|
||||||
# @default -- See values.yaml
|
# @default -- See values.yaml
|
||||||
probes:
|
probes:
|
||||||
|
|
|
@ -31,14 +31,6 @@ persistence:
|
||||||
accessMode: ReadWriteOnce
|
accessMode: ReadWriteOnce
|
||||||
size: "100Gi"
|
size: "100Gi"
|
||||||
|
|
||||||
hostPathMounts:
|
|
||||||
- name: assets
|
|
||||||
enabled: true
|
|
||||||
mountPath: "/assets"
|
|
||||||
type: pvc
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
|
|
||||||
probes:
|
probes:
|
||||||
liveness:
|
liveness:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|
|
@ -28,6 +28,14 @@ service:
|
||||||
main:
|
main:
|
||||||
port: 8080
|
port: 8080
|
||||||
|
|
||||||
|
persistence:
|
||||||
|
config:
|
||||||
|
enabled: true
|
||||||
|
mountPath: "/config"
|
||||||
|
type: pvc
|
||||||
|
accessMode: ReadWriteOnce
|
||||||
|
size: "100Gi"
|
||||||
|
|
||||||
ingress:
|
ingress:
|
||||||
# -- Enable and configure ingress settings for the chart under this key.
|
# -- Enable and configure ingress settings for the chart under this key.
|
||||||
# @default -- See values.yaml
|
# @default -- See values.yaml
|
||||||
|
|
|
@ -30,8 +30,7 @@ service:
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
mountPath: "/var/syncthing/"
|
||||||
type: pvc
|
type: pvc
|
||||||
accessMode: ReadWriteOnce
|
accessMode: ReadWriteOnce
|
||||||
size: "100Gi"
|
size: "100Gi"
|
||||||
|
|
||||||
mountPath: "/var/syncthing/"
|
|
||||||
|
|
Loading…
Reference in New Issue