Skip to content

Commit

Permalink
Set replicas to 1 and turn off probes to enable installing the chart …
Browse files Browse the repository at this point in the history
…without dependencies
  • Loading branch information
suda committed Feb 5, 2022
1 parent ac416c8 commit c34c45a
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions charts/documentserver/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ persistence:
# Enabling persistence
enabled: false
# Storage class name
# storageClass: ""
storageClass: ""
# Storage volume size
size: 8Gi

Expand All @@ -41,11 +41,11 @@ example:

docservice:
# docservice replicas quantity
replicas: 2
replicas: 1
# docservice container image name
containerImage: onlyoffice/docs-docservice-de:7.0.0.132
# Enable readinessProbe for docservice
readinessProbeEnabled: true
readinessProbeEnabled: false
readinessProbe:
failureThreshold: 2
httpGet:
Expand All @@ -55,7 +55,7 @@ docservice:
successThreshold: 1
timeoutSeconds: 3
# Enable livenessProbe for docservice
livenessProbeEnabled: true
livenessProbeEnabled: false
livenessProbe:
failureThreshold: 5
httpGet:
Expand All @@ -65,7 +65,7 @@ docservice:
successThreshold: 1
timeoutSeconds: 3
# Enable startupProbe for docservice
startupProbeEnabled: true
startupProbeEnabled: false
startupProbe:
httpGet:
path: /index.html
Expand All @@ -86,7 +86,7 @@ proxy:
# docservice proxy container image name
proxyContainerImage: onlyoffice/docs-proxy-de:7.0.0.132
# Enable livenessProbe for proxy
livenessProbeEnabled: true
livenessProbeEnabled: false
livenessProbe:
failureThreshold: 3
httpGet:
Expand All @@ -96,7 +96,7 @@ proxy:
successThreshold: 1
timeoutSeconds: 3
# Enable startupProbe for proxy
startupProbeEnabled: true
startupProbeEnabled: false
startupProbe:
httpGet:
path: /index.html
Expand All @@ -115,7 +115,7 @@ proxy:

converter:
# Converter replicas quantity
replicas: 2
replicas: 1
# Converter container image name
containerImage: onlyoffice/docs-converter-de:7.0.0.132

Expand Down

0 comments on commit c34c45a

Please sign in to comment.