Synchronize upstreamed folder to 36752205e

This commit is contained in:
bitnami-bot
2019-11-12 09:35:05 +00:00
parent 7bab7929f1
commit 73669f9b6c
54 changed files with 227 additions and 56 deletions

View File

@@ -1,6 +1,6 @@
apiVersion: v1
name: drupal
version: 5.2.9
version: 6.0.0
appVersion: 8.7.8
description: One of the most versatile open source content management systems.
keywords:

View File

@@ -195,6 +195,14 @@ $ helm install --name my-release --set persistence.drupal.existingClaim=PVC_NAME
## Upgrading
### To 6.0.0
Helm performs a lookup for the object based on its group (apps), version (v1), and kind (Deployment). Also known as its GroupVersionKind, or GVK. Changing the GVK is considered a compatibility breaker from Kubernetes' point of view, so you cannot "upgrade" those objects to the new GVK in-place. Earlier versions of Helm 3 did not perform the lookup correctly which has since been fixed to match the spec.
In https://github.com/helm/charts/pull/17295 the `apiVersion` of the deployment resources was updated to `apps/v1` in tune with the api's deprecated, resulting in compatibility breakage.
This major version signifies this change.
### To 2.0.0
Backwards compatibility is not guaranteed unless you modify the labels used on the chart's deployments.

View File

@@ -1,6 +1,6 @@
dependencies:
- name: mariadb
repository: https://kubernetes-charts.storage.googleapis.com/
version: 6.12.2
digest: sha256:a363428d6463718a9523a88c70e485218373e315f2979cb1bb17b034ec2be96a
generated: 2019-10-29T07:26:54.90698574Z
version: 7.0.0
digest: sha256:cd64413a4a697ccf85c0091e9c55cdc5876938ddced84c05d37c57ff9abc5864
generated: "2019-11-09T09:50:12.572245686+05:30"

View File

@@ -1,5 +1,5 @@
dependencies:
- name: mariadb
version: 6.x.x
version: 7.x.x
repository: https://kubernetes-charts.storage.googleapis.com/
condition: mariadb.enabled

View File

@@ -153,3 +153,14 @@ but Helm 2.9 and 2.10 does not support it, so we need to implement this if-else
{{- end -}}
{{- end -}}
{{- end -}}
{{/*
Return the appropriate apiVersion for deployment.
*/}}
{{- define "drupal.deployment.apiVersion" -}}
{{- if semverCompare "<1.14-0" .Capabilities.KubeVersion.GitVersion -}}
{{- print "extensions/v1beta1" -}}
{{- else -}}
{{- print "apps/v1" -}}
{{- end -}}
{{- end -}}

View File

@@ -1,4 +1,4 @@
apiVersion: apps/v1
apiVersion: {{ template "drupal.deployment.apiVersion" . }}
kind: Deployment
metadata:
name: {{ template "drupal.fullname" . }}

View File

@@ -1,6 +1,6 @@
apiVersion: v1
name: odoo
version: 11.1.11
version: 12.0.0
appVersion: 12.0.20191015
description: A suite of web based open source business apps.
home: https://www.odoo.com/

View File

@@ -166,6 +166,14 @@ See the [Parameters](#parameters) section to configure the PVC or to disable per
## Upgrading
### To 12.0.0
Helm performs a lookup for the object based on its group (apps), version (v1), and kind (Deployment). Also known as its GroupVersionKind, or GVK. Changing the GVK is considered a compatibility breaker from Kubernetes' point of view, so you cannot "upgrade" those objects to the new GVK in-place. Earlier versions of Helm 3 did not perform the lookup correctly which has since been fixed to match the spec.
In https://github.com/helm/charts/pull/17352 the `apiVersion` of the deployment resources was updated to `apps/v1` in tune with the api's deprecated, resulting in compatibility breakage.
This major version signifies this change.
### To 3.0.0
Backwards compatibility is not guaranteed unless you modify the labels used on the chart's deployments.

View File

@@ -1,6 +1,6 @@
dependencies:
- name: postgresql
repository: https://kubernetes-charts.storage.googleapis.com/
version: 6.5.4
digest: sha256:3fb60c16194499f6ebb30080e98e402f6c6d0fcf1133b8b03c2a90224b3fc291
generated: 2019-10-29T18:16:22.284254529Z
version: 7.0.0
digest: sha256:e7c3fc1c0606c69cfd4240a86f1ada88086f7b37b51d16a4ce56cf48314065e3
generated: "2019-11-09T11:07:10.545595711+05:30"

View File

@@ -1,5 +1,5 @@
dependencies:
- name: postgresql
condition: postgresql.enabled
version: 6.x.x
version: 7.x.x
repository: https://kubernetes-charts.storage.googleapis.com/

View File

@@ -124,3 +124,14 @@ but Helm 2.9 and 2.10 does not support it, so we need to implement this if-else
{{- end -}}
{{- end -}}
{{- end -}}
{{/*
Return the appropriate apiVersion for deployment.
*/}}
{{- define "odoo.deployment.apiVersion" -}}
{{- if semverCompare "<1.14-0" .Capabilities.KubeVersion.GitVersion -}}
{{- print "extensions/v1beta1" -}}
{{- else -}}
{{- print "apps/v1" -}}
{{- end -}}
{{- end -}}

View File

@@ -1,4 +1,4 @@
apiVersion: apps/v1
apiVersion: {{ template "odoo.deployment.apiVersion" . }}
kind: Deployment
metadata:
name: {{ template "odoo.fullname" . }}

View File

@@ -1,6 +1,6 @@
apiVersion: v1
name: osclass
version: 6.2.7
version: 7.0.0
appVersion: 3.7.4
description: Osclass is a php script that allows you to quickly create and manage
your own free classifieds site.

View File

@@ -168,6 +168,14 @@ See the [Parameters](#parameters) section to configure the PVC or to disable per
## Upgrading
### To 7.0.0
Helm performs a lookup for the object based on its group (apps), version (v1), and kind (Deployment). Also known as its GroupVersionKind, or GVK. Changing the GVK is considered a compatibility breaker from Kubernetes' point of view, so you cannot "upgrade" those objects to the new GVK in-place. Earlier versions of Helm 3 did not perform the lookup correctly which has since been fixed to match the spec.
In https://github.com/helm/charts/pull/17303 the `apiVersion` of the deployment resources was updated to `apps/v1` in tune with the api's deprecated, resulting in compatibility breakage.
This major version signifies this change.
### To 3.0.0
Backwards compatibility is not guaranteed unless you modify the labels used on the chart's deployments.

View File

@@ -1,6 +1,6 @@
dependencies:
- name: mariadb
repository: https://kubernetes-charts.storage.googleapis.com/
version: 6.12.2
digest: sha256:a363428d6463718a9523a88c70e485218373e315f2979cb1bb17b034ec2be96a
generated: 2019-10-29T22:48:43.385675723Z
version: 7.0.0
digest: sha256:cd64413a4a697ccf85c0091e9c55cdc5876938ddced84c05d37c57ff9abc5864
generated: "2019-11-09T11:12:32.914247693+05:30"

View File

@@ -1,5 +1,5 @@
dependencies:
- name: mariadb
version: 6.x.x
version: 7.x.x
repository: https://kubernetes-charts.storage.googleapis.com/
condition: mariadb.enabled

View File

@@ -175,3 +175,14 @@ but Helm 2.9 and 2.10 does not support it, so we need to implement this if-else
{{- end -}}
{{- end -}}
{{- end -}}
{{/*
Return the appropriate apiVersion for deployment.
*/}}
{{- define "osclass.deployment.apiVersion" -}}
{{- if semverCompare "<1.14-0" .Capabilities.KubeVersion.GitVersion -}}
{{- print "extensions/v1beta1" -}}
{{- else -}}
{{- print "apps/v1" -}}
{{- end -}}
{{- end -}}

View File

@@ -1,5 +1,5 @@
{{- if include "osclass.host" . -}}
apiVersion: apps/v1
apiVersion: {{ template "osclass.deployment.apiVersion" . }}
kind: Deployment
metadata:
name: {{ template "osclass.fullname" . }}

View File

@@ -1,6 +1,6 @@
apiVersion: v1
name: owncloud
version: 6.2.9
version: 7.0.0
appVersion: 10.3.0
description: A file sharing server that puts the control and security of your own data back into your hands.
keywords:

View File

@@ -159,6 +159,14 @@ See the [Parameters](#parameters) section to configure the PVC or to disable per
## Upgrading
### 7.0.0
Helm performs a lookup for the object based on its group (apps), version (v1), and kind (Deployment). Also known as its GroupVersionKind, or GVK. Changing the GVK is considered a compatibility breaker from Kubernetes' point of view, so you cannot "upgrade" those objects to the new GVK in-place. Earlier versions of Helm 3 did not perform the lookup correctly which has since been fixed to match the spec.
In https://github.com/helm/charts/pull/17304 the `apiVersion` of the deployment resources was updated to `apps/v1` in tune with the api's deprecated, resulting in compatibility breakage.
This major version signifies this change.
### To 3.0.0
Backwards compatibility is not guaranteed unless you modify the labels used on the chart's deployments.

View File

@@ -1,6 +1,6 @@
dependencies:
- name: mariadb
repository: https://kubernetes-charts.storage.googleapis.com/
version: 6.12.2
digest: sha256:a363428d6463718a9523a88c70e485218373e315f2979cb1bb17b034ec2be96a
generated: 2019-10-29T14:10:06.538415037Z
version: 7.0.0
digest: sha256:cd64413a4a697ccf85c0091e9c55cdc5876938ddced84c05d37c57ff9abc5864
generated: "2019-11-09T11:14:44.633832382+05:30"

View File

@@ -1,5 +1,5 @@
dependencies:
- name: mariadb
version: 6.x.x
version: 7.x.x
repository: https://kubernetes-charts.storage.googleapis.com/
condition: mariadb.enabled

View File

@@ -175,3 +175,14 @@ but Helm 2.9 and 2.10 does not support it, so we need to implement this if-else
{{- end -}}
{{- end -}}
{{- end -}}
{{/*
Return the appropriate apiVersion for deployment.
*/}}
{{- define "owncloud.deployment.apiVersion" -}}
{{- if semverCompare "<1.14-0" .Capabilities.KubeVersion.GitVersion -}}
{{- print "extensions/v1beta1" -}}
{{- else -}}
{{- print "apps/v1" -}}
{{- end -}}
{{- end -}}

View File

@@ -1,5 +1,5 @@
{{- if include "owncloud.host" . -}}
apiVersion: apps/v1
apiVersion: {{ template "owncloud.deployment.apiVersion" . }}
kind: Deployment
metadata:
name: {{ template "owncloud.fullname" . }}

View File

@@ -1,6 +1,6 @@
apiVersion: v1
name: phpbb
version: 6.2.6
version: 7.0.0
appVersion: 3.2.8
description: Community forum that supports the notion of users and groups, file attachments, full-text search, notifications and more.
keywords:

View File

@@ -148,6 +148,14 @@ See the [Parameters](#parameters) section to configure the PVC or to disable per
## Upgrading
### 7.0.0
Helm performs a lookup for the object based on its group (apps), version (v1), and kind (Deployment). Also known as its GroupVersionKind, or GVK. Changing the GVK is considered a compatibility breaker from Kubernetes' point of view, so you cannot "upgrade" those objects to the new GVK in-place. Earlier versions of Helm 3 did not perform the lookup correctly which has since been fixed to match the spec.
In https://github.com/helm/charts/pull/17307 the `apiVersion` of the deployment resources was updated to `apps/v1` in tune with the api's deprecated, resulting in compatibility breakage.
This major version signifies this change.
### To 3.0.0
Backwards compatibility is not guaranteed unless you modify the labels used on the chart's deployments.

View File

@@ -1,6 +1,6 @@
dependencies:
- name: mariadb
repository: https://kubernetes-charts.storage.googleapis.com/
version: 6.12.2
digest: sha256:a363428d6463718a9523a88c70e485218373e315f2979cb1bb17b034ec2be96a
generated: 2019-10-24T17:29:58.399956213Z
version: 7.0.0
digest: sha256:cd64413a4a697ccf85c0091e9c55cdc5876938ddced84c05d37c57ff9abc5864
generated: "2019-11-09T11:23:46.242748477+05:30"

View File

@@ -1,5 +1,5 @@
dependencies:
- name: mariadb
version: 6.x.x
version: 7.x.x
repository: https://kubernetes-charts.storage.googleapis.com/
condition: mariadb.enabled

View File

@@ -153,3 +153,14 @@ but Helm 2.9 and 2.10 does not support it, so we need to implement this if-else
{{- end -}}
{{- end -}}
{{- end -}}
{{/*
Return the appropriate apiVersion for deployment.
*/}}
{{- define "phpbb.deployment.apiVersion" -}}
{{- if semverCompare "<1.14-0" .Capabilities.KubeVersion.GitVersion -}}
{{- print "extensions/v1beta1" -}}
{{- else -}}
{{- print "apps/v1" -}}
{{- end -}}
{{- end -}}

View File

@@ -1,5 +1,5 @@
{{- if or .Values.mariadb.enabled .Values.externalDatabase.host -}}
apiVersion: apps/v1
apiVersion: {{ template "phpbb.deployment.apiVersion" . }}
kind: Deployment
metadata:
name: "{{ template "phpbb.fullname" . }}"

View File

@@ -1,6 +1,6 @@
apiVersion: v1
name: prestashop
version: 8.2.9
version: 9.0.0
appVersion: 1.7.6-1
description: A popular open source ecommerce solution. Professional tools are easily accessible to increase online sales including instant guest checkout, abandoned cart reminders and automated Email marketing.
keywords:

View File

@@ -187,6 +187,14 @@ See the [Parameters](#parameters) section to configure the PVC or to disable per
## Upgrading
### To 9.0.0
Helm performs a lookup for the object based on its group (apps), version (v1), and kind (Deployment). Also known as its GroupVersionKind, or GVK. Changing the GVK is considered a compatibility breaker from Kubernetes' point of view, so you cannot "upgrade" those objects to the new GVK in-place. Earlier versions of Helm 3 did not perform the lookup correctly which has since been fixed to match the spec.
In https://github.com/helm/charts/pull/17308 the `apiVersion` of the deployment resources was updated to `apps/v1` in tune with the api's deprecated, resulting in compatibility breakage.
This major version signifies this change.
### To 3.0.0
Backwards compatibility is not guaranteed unless you modify the labels used on the chart's deployments.

View File

@@ -1,6 +1,6 @@
dependencies:
- name: mariadb
repository: https://kubernetes-charts.storage.googleapis.com/
version: 6.12.2
digest: sha256:a363428d6463718a9523a88c70e485218373e315f2979cb1bb17b034ec2be96a
generated: 2019-10-30T13:11:16.767263723Z
version: 7.0.0
digest: sha256:cd64413a4a697ccf85c0091e9c55cdc5876938ddced84c05d37c57ff9abc5864
generated: "2019-11-09T11:26:13.384983037+05:30"

View File

@@ -1,5 +1,5 @@
dependencies:
- name: mariadb
version: 6.x.x
version: 7.x.x
repository: https://kubernetes-charts.storage.googleapis.com/
condition: mariadb.enabled

View File

@@ -180,3 +180,14 @@ but Helm 2.9 and 2.10 does not support it, so we need to implement this if-else
{{- end -}}
{{- end -}}
{{- end -}}
{{/*
Return the appropriate apiVersion for deployment.
*/}}
{{- define "prestashop.deployment.apiVersion" -}}
{{- if semverCompare "<1.14-0" .Capabilities.KubeVersion.GitVersion -}}
{{- print "extensions/v1beta1" -}}
{{- else -}}
{{- print "apps/v1" -}}
{{- end -}}
{{- end -}}

View File

@@ -1,5 +1,5 @@
{{- if include "prestashop.host" . -}}
apiVersion: apps/v1
apiVersion: {{ template "prestashop.deployment.apiVersion" . }}
kind: Deployment
metadata:
name: {{ template "prestashop.fullname" . }}

View File

@@ -1,6 +1,6 @@
apiVersion: v1
name: redmine
version: 12.2.12
version: 13.0.0
appVersion: 4.0.5
description: A flexible project management web application.
keywords:

View File

@@ -178,6 +178,14 @@ $ helm install --name test --set persistence.existingClaim=PVC_REDMINE,mariadb.p
## Upgrading
### 13.0.0
Helm performs a lookup for the object based on its group (apps), version (v1), and kind (Deployment). Also known as its GroupVersionKind, or GVK. Changing the GVK is considered a compatibility breaker from Kubernetes' point of view, so you cannot "upgrade" those objects to the new GVK in-place. Earlier versions of Helm 3 did not perform the lookup correctly which has since been fixed to match the spec.
In https://github.com/helm/charts/pull/17309 the `apiVersion` of the deployment resources was updated to `apps/v1` in tune with the api's deprecated, resulting in compatibility breakage.
This major version signifies this change.
### To 5.0.0
Backwards compatibility is not guaranteed unless you modify the labels used on the chart's deployments.

View File

@@ -1,9 +1,9 @@
dependencies:
- name: mariadb
repository: https://kubernetes-charts.storage.googleapis.com/
version: 6.12.2
version: 7.0.0
- name: postgresql
repository: https://kubernetes-charts.storage.googleapis.com/
version: 6.5.4
digest: sha256:ee162ec03d9c5f09b7cab23f9fc3d98481694ff8295405c6089ea9dd7470d7fa
generated: 2019-10-29T16:20:12.290649596Z
version: 7.0.0
digest: sha256:c5ed9aba5b8df7c81b029047541d0b75e26b4d7eaf34ea03e09f4d76ac4cc6d4
generated: "2019-11-09T11:28:29.844388656+05:30"

View File

@@ -1,9 +1,9 @@
dependencies:
- name: mariadb
version: 6.x.x
version: 7.x.x
repository: https://kubernetes-charts.storage.googleapis.com/
condition: mariadb.enabled
- name: postgresql
version: 6.x.x
version: 7.x.x
repository: https://kubernetes-charts.storage.googleapis.com/
condition: postgresql.enabled

View File

@@ -132,3 +132,14 @@ but Helm 2.9 and 2.10 does not support it, so we need to implement this if-else
{{- end -}}
{{- end -}}
{{- end -}}
{{/*
Return the appropriate apiVersion for deployment.
*/}}
{{- define "redmine.deployment.apiVersion" -}}
{{- if semverCompare "<1.14-0" .Capabilities.KubeVersion.GitVersion -}}
{{- print "extensions/v1beta1" -}}
{{- else -}}
{{- print "apps/v1" -}}
{{- end -}}
{{- end -}}

View File

@@ -1,5 +1,5 @@
{{- if or .Values.databaseType.mariadb .Values.databaseType.postgresql }}
apiVersion: apps/v1
apiVersion: {{ template "redmine.deployment.apiVersion" . }}
kind: Deployment
metadata:
name: {{ template "redmine.fullname" . }}

View File

@@ -1,6 +1,6 @@
apiVersion: v1
name: suitecrm
version: 7.2.8
version: 8.0.0
appVersion: 7.11.8
description: SuiteCRM is a completely open source enterprise-grade Customer Relationship Management (CRM) application. SuiteCRM is a software fork of the popular customer relationship management (CRM) system SugarCRM.
keywords:

View File

@@ -169,6 +169,14 @@ See the [Parameters](#parameters) section to configure the PVC or to disable per
## Upgrading
### 8.0.0
Helm performs a lookup for the object based on its group (apps), version (v1), and kind (Deployment). Also known as its GroupVersionKind, or GVK. Changing the GVK is considered a compatibility breaker from Kubernetes' point of view, so you cannot "upgrade" those objects to the new GVK in-place. Earlier versions of Helm 3 did not perform the lookup correctly which has since been fixed to match the spec.
In https://github.com/helm/charts/pull/17310 the `apiVersion` of the deployment resources was updated to `apps/v1` in tune with the api's deprecated, resulting in compatibility breakage.
This major version signifies this change.
### To 3.0.0
Backwards compatibility is not guaranteed unless you modify the labels used on the chart's deployments.

View File

@@ -1,6 +1,6 @@
dependencies:
- name: mariadb
repository: https://kubernetes-charts.storage.googleapis.com/
version: 6.11.0
digest: sha256:a363428d6463718a9523a88c70e485218373e315f2979cb1bb17b034ec2be96a
generated: 2019-10-09T09:50:30.242355041Z
version: 7.0.0
digest: sha256:cd64413a4a697ccf85c0091e9c55cdc5876938ddced84c05d37c57ff9abc5864
generated: "2019-11-09T11:30:27.549311451+05:30"

View File

@@ -1,5 +1,5 @@
dependencies:
- name: mariadb
version: 6.x.x
version: 7.x.x
repository: https://kubernetes-charts.storage.googleapis.com/
condition: mariadb.enabled

View File

@@ -174,3 +174,14 @@ but Helm 2.9 and 2.10 does not support it, so we need to implement this if-else
{{- end -}}
{{- end -}}
{{- end -}}
{{/*
Return the appropriate apiVersion for deployment.
*/}}
{{- define "suitecrm.deployment.apiVersion" -}}
{{- if semverCompare "<1.14-0" .Capabilities.KubeVersion.GitVersion -}}
{{- print "extensions/v1beta1" -}}
{{- else -}}
{{- print "apps/v1" -}}
{{- end -}}
{{- end -}}

View File

@@ -1,5 +1,5 @@
{{- if include "host" . -}}
apiVersion: apps/v1
apiVersion: {{ template "suitecrm.deployment.apiVersion" . }}
kind: Deployment
metadata:
name: {{ template "suitecrm.fullname" . }}

View File

@@ -1,6 +1,6 @@
apiVersion: v1
name: testlink
version: 6.3.6
version: 7.0.0
appVersion: 1.9.19
description: Web-based test management system that facilitates software quality assurance.
icon: https://bitnami.com/assets/stacks/testlink/img/testlink-stack-220x234.png

View File

@@ -152,6 +152,14 @@ See the [Parameters](#parameters) section to configure the PVC or to disable per
## Upgrading
### 7.0.0
Helm performs a lookup for the object based on its group (apps), version (v1), and kind (Deployment). Also known as its GroupVersionKind, or GVK. Changing the GVK is considered a compatibility breaker from Kubernetes' point of view, so you cannot "upgrade" those objects to the new GVK in-place. Earlier versions of Helm 3 did not perform the lookup correctly which has since been fixed to match the spec.
In https://github.com/helm/charts/pull/17311 the `apiVersion` of the deployment resources was updated to `apps/v1` in tune with the api's deprecated, resulting in compatibility breakage.
This major version signifies this change.
### To 3.0.0
Backwards compatibility is not guaranteed unless you modify the labels used on the chart's deployments.

View File

@@ -1,6 +1,6 @@
dependencies:
- name: mariadb
repository: https://kubernetes-charts.storage.googleapis.com/
version: 6.12.2
digest: sha256:a363428d6463718a9523a88c70e485218373e315f2979cb1bb17b034ec2be96a
generated: 2019-10-29T16:04:10.635616467Z
version: 7.0.0
digest: sha256:cd64413a4a697ccf85c0091e9c55cdc5876938ddced84c05d37c57ff9abc5864
generated: "2019-11-09T11:32:20.387479352+05:30"

View File

@@ -1,5 +1,5 @@
dependencies:
- name: mariadb
version: 6.x.x
version: 7.x.x
repository: https://kubernetes-charts.storage.googleapis.com/
condition: mariadb.enabled

View File

@@ -153,3 +153,14 @@ but Helm 2.9 and 2.10 does not support it, so we need to implement this if-else
{{- end -}}
{{- end -}}
{{- end -}}
{{/*
Return the appropriate apiVersion for deployment.
*/}}
{{- define "testlink.deployment.apiVersion" -}}
{{- if semverCompare "<1.14-0" .Capabilities.KubeVersion.GitVersion -}}
{{- print "extensions/v1beta1" -}}
{{- else -}}
{{- print "apps/v1" -}}
{{- end -}}
{{- end -}}

View File

@@ -1,4 +1,4 @@
apiVersion: apps/v1
apiVersion: {{ template "testlink.deployment.apiVersion" . }}
kind: Deployment
metadata:
name: {{ template "testlink.fullname" . }}