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
|
||||
protocol: TCP
|
||||
|
||||
hostPathMounts:
|
||||
- name: config
|
||||
persistence:
|
||||
conf:
|
||||
enabled: true
|
||||
mountPath: /conf
|
||||
mountPath: "/conf"
|
||||
type: pvc
|
||||
accessMode: ReadWriteOnce
|
||||
size: "100Gi"
|
||||
|
|
|
@ -29,3 +29,11 @@ service:
|
|||
ports:
|
||||
main:
|
||||
port: 8191
|
||||
|
||||
persistence:
|
||||
config:
|
||||
enabled: true
|
||||
mountPath: "/config"
|
||||
type: pvc
|
||||
accessMode: ReadWriteOnce
|
||||
size: "100Gi"
|
||||
|
|
|
@ -43,6 +43,14 @@ service:
|
|||
enabled: true
|
||||
port: 443
|
||||
|
||||
persistence:
|
||||
config:
|
||||
enabled: true
|
||||
mountPath: "/config"
|
||||
type: pvc
|
||||
accessMode: ReadWriteOnce
|
||||
size: "100Gi"
|
||||
|
||||
# -- Configures the probes for the main Pod.
|
||||
# @default -- See values.yaml
|
||||
probes:
|
||||
|
|
|
@ -31,14 +31,6 @@ persistence:
|
|||
accessMode: ReadWriteOnce
|
||||
size: "100Gi"
|
||||
|
||||
hostPathMounts:
|
||||
- name: assets
|
||||
enabled: true
|
||||
mountPath: "/assets"
|
||||
type: pvc
|
||||
accessMode: ReadWriteOnce
|
||||
size: "100Gi"
|
||||
|
||||
probes:
|
||||
liveness:
|
||||
enabled: false
|
||||
|
|
|
@ -28,6 +28,14 @@ service:
|
|||
main:
|
||||
port: 8080
|
||||
|
||||
persistence:
|
||||
config:
|
||||
enabled: true
|
||||
mountPath: "/config"
|
||||
type: pvc
|
||||
accessMode: ReadWriteOnce
|
||||
size: "100Gi"
|
||||
|
||||
ingress:
|
||||
# -- Enable and configure ingress settings for the chart under this key.
|
||||
# @default -- See values.yaml
|
||||
|
|
|
@ -30,8 +30,7 @@ service:
|
|||
persistence:
|
||||
config:
|
||||
enabled: true
|
||||
mountPath: "/var/syncthing/"
|
||||
type: pvc
|
||||
accessMode: ReadWriteOnce
|
||||
size: "100Gi"
|
||||
|
||||
mountPath: "/var/syncthing/"
|
||||
|
|
Loading…
Reference in New Issue