Skip to content

Commit

Permalink
[nextcloud] initial move to bitnami dependent charts and add postgres (
Browse files Browse the repository at this point in the history
…#8)

* initial move to bitnami dependent charts and add postgres

Signed-off-by: Ryan Holt <[email protected]>

* add bitnami repo as a chart location for testing

Signed-off-by: Ryan Holt <[email protected]>
  • Loading branch information
carpenike authored Aug 28, 2020
1 parent 0ed9ae3 commit d073fa0
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 28 deletions.
17 changes: 15 additions & 2 deletions charts/nextcloud/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
apiVersion: v2
name: nextcloud
version: 2.0.2
version: 2.1.0
appVersion: 17.0.0
description: A file sharing server that puts the control and security of your own data back into your hands.
keywords:
Expand All @@ -21,3 +21,16 @@ maintainers:
email: [email protected]
- name: billimek
email: [email protected]
dependencies:
- name: postgresql
version: 9.1.2
repository: https://charts.bitnami.com/bitnami
condition: postgresql.enabled
- name: mariadb
version: 7.7.1
repository: https://charts.bitnami.com/bitnami
condition: mariadb.enabled
- name: redis
version: 10.7.17
repository: https://charts.bitnami.com/bitnami
condition: redis.enabled
9 changes: 0 additions & 9 deletions charts/nextcloud/requirements.lock

This file was deleted.

9 changes: 0 additions & 9 deletions charts/nextcloud/requirements.yaml

This file was deleted.

5 changes: 0 additions & 5 deletions charts/nextcloud/values-mariadb.yaml

This file was deleted.

20 changes: 18 additions & 2 deletions charts/nextcloud/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -216,13 +216,29 @@ mariadb:
user: nextcloud
password: changeme

replication:
enabled: false

## Enable persistence using Persistent Volume Claims
## ref: http://kubernetes.io/docs/user-guide/persistent-volumes/
##
master:
persistence:
enabled: false
# storageClass: ""
accessMode: ReadWriteOnce
size: 8Gi

postgresql:
enabled: false
global:
postgresql:
postgresqlUsername: nextcloud
postgresqlPassword: changeme
postgresqlDatabase: nextcloud
persistence:
enabled: false
accessMode: ReadWriteOnce
size: 8Gi
# storageClass: ""

redis:
enabled: false
Expand Down
2 changes: 1 addition & 1 deletion ct.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ chart-dirs:
- charts
chart-repos:
- stable=https://kubernetes-charts.storage.googleapis.com/

- bitnami=https://charts.bitnami.com/bitnami

0 comments on commit d073fa0

Please sign in to comment.