Synchronize upstreamed folder to bd365ecf6

This commit is contained in:
bitnami-bot
2020-01-15 15:35:09 +00:00
parent 830439f7b4
commit ae9d6fad23
4 changed files with 16 additions and 1 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
apiVersion: v1
name: owncloud
version: 8.0.3
version: 8.1.0
appVersion: 10.3.2
description: A file sharing server that puts the control and security of your own data back into your hands.
keywords:
+1
View File
@@ -95,6 +95,7 @@ The following table lists the configurable parameters of the ownCloud chart and
| `persistence.owncloud.existingClaim`| An Existing PVC name for ownCloud volume | `nil` (uses alpha storage class annotation) |
| `persistence.owncloud.accessMode` | PVC Access Mode for ownCloud volume | `ReadWriteOnce` |
| `persistence.owncloud.size` | PVC Storage Request for ownCloud volume | `8Gi` |
| `updateStrategy.type` | Owncloud deployment strategy | `RollingUpdate` |
| `resources` | CPU/Memory resource requests/limits | Memory: `512Mi`, CPU: `300m` |
| `podAnnotations` | Pod annotations | `{}` |
| `affinity` | Map of node/pod affinities | `{}` |
@@ -14,6 +14,9 @@ spec:
app: {{ template "owncloud.fullname" . }}
release: "{{ .Release.Name }}"
replicas: 1
{{- if .Values.updateStrategy }}
strategy: {{ toYaml .Values.updateStrategy | nindent 4 }}
{{- end }}
template:
metadata:
labels:
+11
View File
@@ -218,6 +218,17 @@ persistence:
accessMode: ReadWriteOnce
size: 8Gi
## Set up update strategy for the ownCloud installation.
## ref: https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#strategy
## Example:
# updateStrategy:
# type: RollingUpdate
# rollingUpdate:
# maxSurge: 25%
# maxUnavailable: 25%
updateStrategy:
type: RollingUpdate
## Configure resource requests and limits
## ref: http://kubernetes.io/docs/user-guide/compute-resources/
##