From 444d0feff77844425480fa1da1dd12806caaf4bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20J=2E=20Salmer=C3=B3n-Garc=C3=ADa?= Date: Tue, 12 Jun 2018 15:52:27 +0200 Subject: [PATCH] [stable/phabricator] Set dependencies to the latest version (#6049) * [stable/phabricator] Set dependencies to the latest version * Bump chart version --- stable/phabricator/Chart.yaml | 2 +- stable/phabricator/README.md | 2 +- stable/phabricator/requirements.lock | 6 ++--- stable/phabricator/requirements.yaml | 2 +- stable/phabricator/values.yaml | 34 +++++++++++++++++----------- 5 files changed, 27 insertions(+), 19 deletions(-) diff --git a/stable/phabricator/Chart.yaml b/stable/phabricator/Chart.yaml index ee96121e99..44feafa834 100644 --- a/stable/phabricator/Chart.yaml +++ b/stable/phabricator/Chart.yaml @@ -1,5 +1,5 @@ name: phabricator -version: 1.0.12 +version: 2.0.0 appVersion: 2018.23.0 description: Collection of open source web applications that help software companies build better software. keywords: diff --git a/stable/phabricator/README.md b/stable/phabricator/README.md index d21b257dca..ca438f9e5c 100644 --- a/stable/phabricator/README.md +++ b/stable/phabricator/README.md @@ -64,7 +64,7 @@ The following table lists the configurable parameters of the Phabricator chart a | `smtpUser` | SMTP user | `nil` | | `smtpPassword` | SMTP password | `nil` | | `smtpProtocol` | SMTP protocol [`ssl`, `tls`] | `nil` | -| `mariadb.mariadbRootPassword` | MariaDB admin password | `nil` | +| `mariadb.rootUser.password` | MariaDB admin password | `nil` | | `serviceType` | Kubernetes Service type | `LoadBalancer` | | `persistence.enabled` | Enable persistence using PVC | `true` | | `persistence.apache.storageClass` | PVC Storage Class for Apache volume | `nil` (uses alpha storage class annotation) | diff --git a/stable/phabricator/requirements.lock b/stable/phabricator/requirements.lock index f8006fdbab..2f103339c3 100644 --- a/stable/phabricator/requirements.lock +++ b/stable/phabricator/requirements.lock @@ -1,6 +1,6 @@ dependencies: - name: mariadb repository: https://kubernetes-charts.storage.googleapis.com/ - version: 0.7.0 -digest: sha256:e1af13ac4ac21f67582006f12d2b4eb78a1a2a59b34338fac850f2bec0b08b41 -generated: 2017-08-09T22:52:56.763676666-04:00 + version: 4.2.2 +digest: sha256:24134c936ea3fe53c0b99529efc97db98284daa3a8fbd22ab79e8d1c8ba441c9 +generated: 2018-06-11T16:15:42.792809373+02:00 diff --git a/stable/phabricator/requirements.yaml b/stable/phabricator/requirements.yaml index 4896aa89de..1966821ad6 100644 --- a/stable/phabricator/requirements.yaml +++ b/stable/phabricator/requirements.yaml @@ -1,4 +1,4 @@ dependencies: - name: mariadb - version: 0.7.0 + version: 4.x.x repository: https://kubernetes-charts.storage.googleapis.com/ diff --git a/stable/phabricator/values.yaml b/stable/phabricator/values.yaml index 41153c4162..484cb8b1e2 100644 --- a/stable/phabricator/values.yaml +++ b/stable/phabricator/values.yaml @@ -66,26 +66,34 @@ phabricatorLastName: Last Name ## MariaDB chart configuration ## mariadb: + ## Whether to deploy a mariadb server to satisfy the applications database requirements. To use an external database set this to false and configure the externalDatabase parameters + enabled: true + ## Disable MariaDB replication + replication: + enabled: false + ## MariaDB admin password ## ref: https://github.com/bitnami/bitnami-docker-mariadb/blob/master/README.md#setting-the-root-password-on-first-run ## - # mariadbRootPassword: + # rootUser: + # password: ## Enable persistence using Persistent Volume Claims ## ref: http://kubernetes.io/docs/user-guide/persistent-volumes/ ## - persistence: - enabled: true - ## mariadb data Persistent Volume Storage Class - ## If defined, storageClassName: - ## If set to "-", storageClassName: "", which disables dynamic provisioning - ## If undefined (the default) or set to null, no storageClassName spec is - ## set, choosing the default provisioner. (gp2 on AWS, standard on - ## GKE, AWS & OpenStack) - ## - # storageClass: "-" - accessMode: ReadWriteOnce - size: 8Gi + master: + persistence: + enabled: true + ## mariadb data Persistent Volume Storage Class + ## If defined, storageClassName: + ## If set to "-", storageClassName: "", which disables dynamic provisioning + ## If undefined (the default) or set to null, no storageClassName spec is + ## set, choosing the default provisioner. (gp2 on AWS, standard on + ## GKE, AWS & OpenStack) + ## + # storageClass: "-" + accessMode: ReadWriteOnce + size: 8Gi ## Kubernetes configuration ## For minikube, set this to NodePort, elsewhere use LoadBalancer