diff --git a/README.md b/README.md index 9b069d95d..f187d300d 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ To install Helm, refer to the [Helm install guide](https://github.com/helm/helm# The stable charts are contributed to the upstream [helm/charts](https://github.com/helm/charts) repository. The following command allows you to download and install all the charts from this repository, both the bitnami and the upstreamed ones. ```bash -$ helm repo add bitnami https://charts.bitnami.com +$ helm repo add bitnami https://charts.bitnami.com/bitnami ``` ### Using Helm @@ -47,12 +47,12 @@ Please refer to the [Quick Start guide](https://github.com/helm/helm/blob/master Useful Helm Client Commands: * View available charts: `helm search` -* Install a chart: `helm install stable/` +* Install a chart: `helm install bitnami/` * Upgrade your application: `helm upgrade` # License -Copyright (c) 2018-2019 Bitnami +Copyright (c) 2020 Bitnami Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/bitnami/airflow/Chart.yaml b/bitnami/airflow/Chart.yaml index 55eface21..0ff096dbd 100644 --- a/bitnami/airflow/Chart.yaml +++ b/bitnami/airflow/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: airflow -version: 4.0.20 +version: 4.1.1 appVersion: 1.10.7 description: Apache Airflow is a platform to programmatically author, schedule and monitor workflows. keywords: diff --git a/bitnami/airflow/README.md b/bitnami/airflow/README.md index 859e302c9..2ae06eb4d 100644 --- a/bitnami/airflow/README.md +++ b/bitnami/airflow/README.md @@ -85,6 +85,7 @@ The following tables lists the configurable parameters of the Kafka chart and th | `airflow.cloneDagFilesFromGit.repository` | Repository where download DAG files from | `nil` | | `airflow.cloneDagFilesFromGit.branch` | Branch from repository to checkout | `nil` | | `airflow.cloneDagFilesFromGit.interval` | Interval to pull the repository on sidecar container | `nil` | +| `airflow.cloneDagFilesFromGit.path` | Path to a folder in the repository containing DAGs. If not set, all DAGS from the repo are loaded. | `nil` | | `airflow.baseUrl` | URL used to access to airflow web ui | `nil` | | `airflow.worker.port` | Airflow Worker port | `8793` | | `airflow.worker.replicas` | Number of Airflow Worker replicas | `2` | @@ -94,7 +95,7 @@ The following tables lists the configurable parameters of the Kafka chart and th | `airflow.auth.fernetKey` | Fernet key to secure connections | `nil` | | `airflow.auth.existingSecret` | Name of an existing secret containing airflow password and fernet key | `nil` | | `airflow.extraEnvVars` | Extra environment variables to add to airflow web, worker and scheduler pods | `nil` | -| `airflow.webserverConfigMap` | Config map name for ~/airflow/webserver_config.py | `nil` | +| `airflow.webserverConfigMap` | Config map name for ~/airflow/webserver_config.py | `nil` | | `securityContext.enabled` | Enable security context | `true` | | `securityContext.fsGroup` | Group ID for the container | `1001` | | `securityContext.runAsUser` | User ID for the container | `1001` | diff --git a/bitnami/airflow/templates/deployment-scheduler.yaml b/bitnami/airflow/templates/deployment-scheduler.yaml index 1ea380bdd..868e4c9ab 100644 --- a/bitnami/airflow/templates/deployment-scheduler.yaml +++ b/bitnami/airflow/templates/deployment-scheduler.yaml @@ -180,6 +180,9 @@ spec: {{- if .Values.airflow.cloneDagFilesFromGit.enabled }} - name: git-cloned-dag-files mountPath: /opt/bitnami/airflow/dags/git + {{- if .Values.airflow.cloneDagFilesFromGit.path }} + subPath: {{ .Values.airflow.cloneDagFilesFromGit.path }} + {{- end }} {{- end }} {{- if .Values.airflow.configurationConfigMap }} - name: custom-configuration-file diff --git a/bitnami/airflow/templates/deployment-web.yaml b/bitnami/airflow/templates/deployment-web.yaml index fe9416322..22789a7ce 100644 --- a/bitnami/airflow/templates/deployment-web.yaml +++ b/bitnami/airflow/templates/deployment-web.yaml @@ -210,6 +210,9 @@ spec: {{- if .Values.airflow.cloneDagFilesFromGit.enabled }} - name: git-cloned-dag-files mountPath: /opt/bitnami/airflow/dags/git + {{- if .Values.airflow.cloneDagFilesFromGit.path }} + subPath: {{ .Values.airflow.cloneDagFilesFromGit.path }} + {{- end }} {{- end }} {{- if .Values.airflow.configurationConfigMap }} - name: custom-configuration-file diff --git a/bitnami/airflow/templates/statefulset-worker.yaml b/bitnami/airflow/templates/statefulset-worker.yaml index 5ce6cc035..127ab49d1 100644 --- a/bitnami/airflow/templates/statefulset-worker.yaml +++ b/bitnami/airflow/templates/statefulset-worker.yaml @@ -193,6 +193,9 @@ spec: {{- if .Values.airflow.cloneDagFilesFromGit.enabled }} - name: git-cloned-dag-files mountPath: /opt/bitnami/airflow/dags/git + {{- if .Values.airflow.cloneDagFilesFromGit.path }} + subPath: {{ .Values.airflow.cloneDagFilesFromGit.path }} + {{- end }} {{- end }} {{- if .Values.airflow.configurationConfigMap }} - name: custom-configuration-file diff --git a/bitnami/airflow/values-production.yaml b/bitnami/airflow/values-production.yaml index 04461e496..c14240076 100644 --- a/bitnami/airflow/values-production.yaml +++ b/bitnami/airflow/values-production.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/airflow - tag: 1.10.7-debian-9-r0 + tag: 1.10.7-debian-9-r16 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -38,7 +38,7 @@ image: schedulerImage: registry: docker.io repository: bitnami/airflow-scheduler - tag: 1.10.6-debian-9-r36 + tag: 1.10.7-debian-9-r14 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -62,7 +62,7 @@ schedulerImage: workerImage: registry: docker.io repository: bitnami/airflow-worker - tag: 1.10.6-debian-9-r36 + tag: 1.10.7-debian-9-r14 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -86,7 +86,7 @@ workerImage: git: registry: docker.io repository: bitnami/git - tag: 2.24.1-debian-9-r13 + tag: 2.25.0-debian-9-r1 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. @@ -132,6 +132,7 @@ airflow: # repository: # branch: # interval: + # path: ## URL used to access to airflow web ui ## baseUrl: http://airflow.local @@ -346,7 +347,7 @@ metrics: image: registry: docker.io repository: bitnami/airflow-exporter - tag: 0.20180711.0-debian-9-r131 + tag: 0.20180711.0-debian-9-r150 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/bitnami/airflow/values.yaml b/bitnami/airflow/values.yaml index 250bab02d..d317b90dc 100644 --- a/bitnami/airflow/values.yaml +++ b/bitnami/airflow/values.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/airflow - tag: 1.10.7-debian-9-r0 + tag: 1.10.7-debian-9-r16 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -38,7 +38,7 @@ image: schedulerImage: registry: docker.io repository: bitnami/airflow-scheduler - tag: 1.10.6-debian-9-r36 + tag: 1.10.7-debian-9-r14 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -62,7 +62,7 @@ schedulerImage: workerImage: registry: docker.io repository: bitnami/airflow-worker - tag: 1.10.6-debian-9-r36 + tag: 1.10.7-debian-9-r14 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -86,7 +86,7 @@ workerImage: git: registry: docker.io repository: bitnami/git - tag: 2.24.1-debian-9-r13 + tag: 2.25.0-debian-9-r1 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. @@ -132,6 +132,7 @@ airflow: # repository: # branch: # interval: + # path: ## URL used to access to airflow web ui ## # baseUrl: @@ -346,7 +347,7 @@ metrics: image: registry: docker.io repository: bitnami/airflow-exporter - tag: 0.20180711.0-debian-9-r131 + tag: 0.20180711.0-debian-9-r150 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/bitnami/apache/Chart.yaml b/bitnami/apache/Chart.yaml index c9e4493f8..7fc55caaa 100644 --- a/bitnami/apache/Chart.yaml +++ b/bitnami/apache/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: apache -version: 7.3.1 +version: 7.3.3 appVersion: 2.4.41 description: Chart for Apache HTTP Server keywords: diff --git a/bitnami/apache/values.yaml b/bitnami/apache/values.yaml index d40dbb879..38fa1cf09 100644 --- a/bitnami/apache/values.yaml +++ b/bitnami/apache/values.yaml @@ -13,7 +13,7 @@ image: registry: docker.io repository: bitnami/apache - tag: 2.4.41-debian-9-r89 + tag: 2.4.41-debian-9-r135 ## Specify a imagePullPolicy ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images ## @@ -36,7 +36,7 @@ image: git: registry: docker.io repository: bitnami/git - tag: 2.24.0-debian-9-r12 + tag: 2.25.0-debian-9-r1 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. @@ -200,7 +200,7 @@ metrics: image: registry: docker.io repository: bitnami/apache-exporter - tag: 0.7.0-debian-9-r112 + tag: 0.7.0-debian-9-r163 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/bitnami/cassandra/Chart.yaml b/bitnami/cassandra/Chart.yaml index 7e451a4a0..39d055d2a 100644 --- a/bitnami/cassandra/Chart.yaml +++ b/bitnami/cassandra/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: cassandra -version: 4.1.12 +version: 4.1.14 appVersion: 3.11.5 description: Apache Cassandra is a free and open-source distributed database management system designed to handle large amounts of data across many commodity servers, providing high availability with no single point of failure. Cassandra offers robust support for clusters spanning multiple datacenters, with asynchronous masterless replication allowing low latency operations for all clients. keywords: diff --git a/bitnami/cassandra/values-production.yaml b/bitnami/cassandra/values-production.yaml index 0507d3cd2..6e56d305a 100644 --- a/bitnami/cassandra/values-production.yaml +++ b/bitnami/cassandra/values-production.yaml @@ -17,7 +17,7 @@ image: ## Bitnami Cassandra image tag ## ref: https://github.com/bitnami/bitnami-docker-cassandra#supported-tags-and-respective-dockerfile-links ## - tag: 3.11.5-debian-9-r21 + tag: 3.11.5-debian-9-r57 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -282,7 +282,7 @@ metrics: registry: docker.io pullPolicy: IfNotPresent repository: bitnami/cassandra-exporter - tag: 2.3.0-debian-9-r102 + tag: 2.3.0-debian-9-r139 ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ diff --git a/bitnami/cassandra/values.yaml b/bitnami/cassandra/values.yaml index f988e5bb0..0b7cf8531 100644 --- a/bitnami/cassandra/values.yaml +++ b/bitnami/cassandra/values.yaml @@ -17,7 +17,7 @@ image: ## Bitnami Cassandra image tag ## ref: https://github.com/bitnami/bitnami-docker-cassandra#supported-tags-and-respective-dockerfile-links ## - tag: 3.11.5-debian-9-r21 + tag: 3.11.5-debian-9-r57 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -282,7 +282,7 @@ metrics: registry: docker.io pullPolicy: IfNotPresent repository: bitnami/cassandra-exporter - tag: 2.3.0-debian-9-r102 + tag: 2.3.0-debian-9-r139 ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ diff --git a/bitnami/consul/Chart.yaml b/bitnami/consul/Chart.yaml index a6baa254f..208e92046 100644 --- a/bitnami/consul/Chart.yaml +++ b/bitnami/consul/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: consul -version: 6.0.11 +version: 6.0.13 appVersion: 1.6.2 description: Highly available and distributed service discovery and key-value store designed with support for the modern data center to make distributed systems and configuration easy. home: https://www.consul.io/ diff --git a/bitnami/consul/values-production.yaml b/bitnami/consul/values-production.yaml index 26b7dfe75..1a3a8cdf3 100644 --- a/bitnami/consul/values-production.yaml +++ b/bitnami/consul/values-production.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/consul - tag: 1.6.2-debian-9-r0 + tag: 1.6.2-debian-9-r41 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -330,7 +330,7 @@ metrics: image: registry: docker.io repository: bitnami/consul-exporter - tag: 0.5.0-debian-9-r93 + tag: 0.6.0-debian-9-r23 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/bitnami/consul/values.yaml b/bitnami/consul/values.yaml index 476d411b1..03e1edc4f 100644 --- a/bitnami/consul/values.yaml +++ b/bitnami/consul/values.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/consul - tag: 1.6.2-debian-9-r0 + tag: 1.6.2-debian-9-r41 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -330,7 +330,7 @@ metrics: image: registry: docker.io repository: bitnami/consul-exporter - tag: 0.5.0-debian-9-r93 + tag: 0.6.0-debian-9-r23 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/bitnami/elasticsearch/Chart.yaml b/bitnami/elasticsearch/Chart.yaml index ce8554f24..79aa84ed4 100644 --- a/bitnami/elasticsearch/Chart.yaml +++ b/bitnami/elasticsearch/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: elasticsearch -version: 10.3.3 +version: 10.3.4 appVersion: 7.5.1 description: A highly scalable open-source full-text search and analytics engine keywords: diff --git a/bitnami/elasticsearch/requirements.lock b/bitnami/elasticsearch/requirements.lock index 1fd77d155..8f0161f19 100644 --- a/bitnami/elasticsearch/requirements.lock +++ b/bitnami/elasticsearch/requirements.lock @@ -1,6 +1,6 @@ dependencies: - name: kibana repository: https://charts.bitnami.com/bitnami - version: 5.0.0 + version: 5.0.2 digest: sha256:4970b5ac3743b773c6608e77e28eb0928d45c3379bbe6660a35d8d4ef07613df -generated: "2019-12-13T12:46:10.381126027Z" +generated: 2020-01-14T23:08:31.047826778Z diff --git a/bitnami/elasticsearch/values-production.yaml b/bitnami/elasticsearch/values-production.yaml index bcd11aa6e..07c7f39b9 100644 --- a/bitnami/elasticsearch/values-production.yaml +++ b/bitnami/elasticsearch/values-production.yaml @@ -19,7 +19,7 @@ global: image: registry: docker.io repository: bitnami/elasticsearch - tag: 7.5.1-debian-9-r0 + tag: 7.5.1-debian-9-r21 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -548,7 +548,7 @@ curator: image: registry: docker.io repository: bitnami/elasticsearch-curator - tag: 5.8.1-debian-9-r50 + tag: 5.8.1-debian-9-r74 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. @@ -713,7 +713,7 @@ metrics: image: registry: docker.io repository: bitnami/elasticsearch-exporter - tag: 1.1.0-debian-9-r112 + tag: 1.1.0-debian-9-r134 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/bitnami/elasticsearch/values.yaml b/bitnami/elasticsearch/values.yaml index 82a72e54f..4aaf1b137 100644 --- a/bitnami/elasticsearch/values.yaml +++ b/bitnami/elasticsearch/values.yaml @@ -19,7 +19,7 @@ global: image: registry: docker.io repository: bitnami/elasticsearch - tag: 7.5.1-debian-9-r0 + tag: 7.5.1-debian-9-r21 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -548,7 +548,7 @@ curator: image: registry: docker.io repository: bitnami/elasticsearch-curator - tag: 5.8.1-debian-9-r50 + tag: 5.8.1-debian-9-r74 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. @@ -713,7 +713,7 @@ metrics: image: registry: docker.io repository: bitnami/elasticsearch-exporter - tag: 1.1.0-debian-9-r112 + tag: 1.1.0-debian-9-r134 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/bitnami/etcd/Chart.yaml b/bitnami/etcd/Chart.yaml index 46d094fe2..3f6b6ebf7 100644 --- a/bitnami/etcd/Chart.yaml +++ b/bitnami/etcd/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: etcd -version: 4.4.8 +version: 4.4.10 appVersion: 3.4.3 description: etcd is a distributed key value store that provides a reliable way to store data across a cluster of machines keywords: diff --git a/bitnami/etcd/values-production.yaml b/bitnami/etcd/values-production.yaml index 39ac422e0..f0bd3e69d 100644 --- a/bitnami/etcd/values-production.yaml +++ b/bitnami/etcd/values-production.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/etcd - tag: 3.4.3-debian-9-r12 + tag: 3.4.3-debian-9-r57 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images diff --git a/bitnami/etcd/values.yaml b/bitnami/etcd/values.yaml index 4553abc2e..f7411444b 100644 --- a/bitnami/etcd/values.yaml +++ b/bitnami/etcd/values.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/etcd - tag: 3.4.3-debian-9-r12 + tag: 3.4.3-debian-9-r57 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images diff --git a/bitnami/fluentd/Chart.yaml b/bitnami/fluentd/Chart.yaml index cfd3b14ee..7dd7b61b2 100644 --- a/bitnami/fluentd/Chart.yaml +++ b/bitnami/fluentd/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: fluentd -version: 0.4.5 +version: 0.4.7 appVersion: 1.8.1 description: Fluentd is an open source data collector for unified logging layer keywords: diff --git a/bitnami/fluentd/values-production.yaml b/bitnami/fluentd/values-production.yaml index b999ca63e..8457d1c92 100644 --- a/bitnami/fluentd/values-production.yaml +++ b/bitnami/fluentd/values-production.yaml @@ -13,7 +13,7 @@ global: {} image: registry: docker.io repository: bitnami/fluentd - tag: 1.8.1-debian-9-r1 + tag: 1.8.1-debian-9-r11 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images diff --git a/bitnami/fluentd/values.yaml b/bitnami/fluentd/values.yaml index e6061767e..011f066b0 100644 --- a/bitnami/fluentd/values.yaml +++ b/bitnami/fluentd/values.yaml @@ -13,7 +13,7 @@ global: {} image: registry: docker.io repository: bitnami/fluentd - tag: 1.8.1-debian-9-r1 + tag: 1.8.1-debian-9-r11 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images diff --git a/bitnami/grafana/Chart.yaml b/bitnami/grafana/Chart.yaml index da89c8f19..dbbc9b0b5 100644 --- a/bitnami/grafana/Chart.yaml +++ b/bitnami/grafana/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: grafana -version: 1.2.0 -appVersion: 6.5.2 +version: 1.2.3 +appVersion: 6.5.3 description: Grafana is an open source, feature rich metrics dashboard and graph editor for Graphite, Elasticsearch, OpenTSDB, Prometheus and InfluxDB. keywords: - analitics diff --git a/bitnami/grafana/values-production.yaml b/bitnami/grafana/values-production.yaml index 2d67a8c4a..603e95500 100644 --- a/bitnami/grafana/values-production.yaml +++ b/bitnami/grafana/values-production.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/grafana - tag: 6.5.2-debian-9-r0 + tag: 6.5.3-debian-9-r0 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images diff --git a/bitnami/grafana/values.yaml b/bitnami/grafana/values.yaml index 0eff5ed02..6226145a6 100644 --- a/bitnami/grafana/values.yaml +++ b/bitnami/grafana/values.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/grafana - tag: 6.5.2-debian-9-r0 + tag: 6.5.3-debian-9-r0 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images diff --git a/bitnami/harbor/values-production.yaml b/bitnami/harbor/values-production.yaml index 65c732e69..23334b7fb 100644 --- a/bitnami/harbor/values-production.yaml +++ b/bitnami/harbor/values-production.yaml @@ -14,7 +14,7 @@ coreImage: registry: docker.io repository: bitnami/harbor-core - tag: 1.10.0-debian-9-r3 + tag: 1.10.0-debian-9-r30 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -38,7 +38,7 @@ coreImage: portalImage: registry: docker.io repository: bitnami/harbor-portal - tag: 1.10.0-debian-9-r0 + tag: 1.10.0-debian-9-r25 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -62,7 +62,7 @@ portalImage: jobserviceImage: registry: docker.io repository: bitnami/harbor-jobservice - tag: 1.10.0-debian-9-r3 + tag: 1.10.0-debian-9-r26 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -86,7 +86,7 @@ jobserviceImage: chartMuseumImage: registry: docker.io repository: bitnami/chartmuseum - tag: 0.11.0-debian-9-r1 + tag: 0.11.0-debian-9-r28 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -110,7 +110,7 @@ chartMuseumImage: registryImage: registry: docker.io repository: bitnami/harbor-registry - tag: 1.10.0-debian-9-r3 + tag: 1.10.0-debian-9-r26 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -134,7 +134,7 @@ registryImage: registryctlImage: registry: docker.io repository: bitnami/harbor-registryctl - tag: 1.10.0-debian-9-r3 + tag: 1.10.0-debian-9-r26 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -158,7 +158,7 @@ registryctlImage: clairImage: registry: docker.io repository: bitnami/harbor-clair - tag: 1.10.0-debian-9-r3 + tag: 1.10.0-debian-9-r26 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -206,7 +206,7 @@ clairAdapterImage: notaryServerImage: registry: docker.io repository: bitnami/harbor-notary-server - tag: 1.10.0-debian-9-r3 + tag: 1.10.0-debian-9-r26 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -230,7 +230,7 @@ notaryServerImage: notarySignerImage: registry: docker.io repository: bitnami/harbor-notary-signer - tag: 1.10.0-debian-9-r3 + tag: 1.10.0-debian-9-r26 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -254,7 +254,7 @@ notarySignerImage: nginxImage: registry: docker.io repository: bitnami/nginx - tag: 1.16.1-debian-9-r116 + tag: 1.16.1-debian-9-r138 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images diff --git a/bitnami/harbor/values.yaml b/bitnami/harbor/values.yaml index c69e39c4a..194a67f2b 100644 --- a/bitnami/harbor/values.yaml +++ b/bitnami/harbor/values.yaml @@ -14,7 +14,7 @@ coreImage: registry: docker.io repository: bitnami/harbor-core - tag: 1.10.0-debian-9-r3 + tag: 1.10.0-debian-9-r30 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -38,7 +38,7 @@ coreImage: portalImage: registry: docker.io repository: bitnami/harbor-portal - tag: 1.10.0-debian-9-r0 + tag: 1.10.0-debian-9-r25 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -62,7 +62,7 @@ portalImage: jobserviceImage: registry: docker.io repository: bitnami/harbor-jobservice - tag: 1.10.0-debian-9-r3 + tag: 1.10.0-debian-9-r26 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -86,7 +86,7 @@ jobserviceImage: chartMuseumImage: registry: docker.io repository: bitnami/chartmuseum - tag: 0.11.0-debian-9-r1 + tag: 0.11.0-debian-9-r28 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -110,7 +110,7 @@ chartMuseumImage: registryImage: registry: docker.io repository: bitnami/harbor-registry - tag: 1.10.0-debian-9-r3 + tag: 1.10.0-debian-9-r26 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -134,7 +134,7 @@ registryImage: registryctlImage: registry: docker.io repository: bitnami/harbor-registryctl - tag: 1.10.0-debian-9-r3 + tag: 1.10.0-debian-9-r26 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -158,7 +158,7 @@ registryctlImage: clairImage: registry: docker.io repository: bitnami/harbor-clair - tag: 1.10.0-debian-9-r3 + tag: 1.10.0-debian-9-r26 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -206,7 +206,7 @@ clairAdapterImage: notaryServerImage: registry: docker.io repository: bitnami/harbor-notary-server - tag: 1.10.0-debian-9-r3 + tag: 1.10.0-debian-9-r26 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -230,7 +230,7 @@ notaryServerImage: notarySignerImage: registry: docker.io repository: bitnami/harbor-notary-signer - tag: 1.10.0-debian-9-r3 + tag: 1.10.0-debian-9-r26 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -254,7 +254,7 @@ notarySignerImage: nginxImage: registry: docker.io repository: bitnami/nginx - tag: 1.16.1-debian-9-r116 + tag: 1.16.1-debian-9-r138 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images diff --git a/bitnami/influxdb/Chart.yaml b/bitnami/influxdb/Chart.yaml index 474602a54..c150d65d3 100644 --- a/bitnami/influxdb/Chart.yaml +++ b/bitnami/influxdb/Chart.yaml @@ -15,4 +15,4 @@ maintainers: name: influxdb sources: - https://github.com/bitnami/bitnami-docker-influxdb -version: 0.3.1 +version: 0.3.3 diff --git a/bitnami/influxdb/values-production.yaml b/bitnami/influxdb/values-production.yaml index 39e5f45cf..2c3cf12cc 100644 --- a/bitnami/influxdb/values-production.yaml +++ b/bitnami/influxdb/values-production.yaml @@ -18,7 +18,7 @@ image: registry: docker.io repository: bitnami/influxdb - tag: 1.7.9-debian-9-r8 + tag: 1.7.9-debian-9-r51 ## Specify a imagePullPolicy. Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images ## diff --git a/bitnami/influxdb/values.yaml b/bitnami/influxdb/values.yaml index 64a2c22a7..e2d1cbb42 100644 --- a/bitnami/influxdb/values.yaml +++ b/bitnami/influxdb/values.yaml @@ -18,7 +18,7 @@ image: registry: docker.io repository: bitnami/influxdb - tag: 1.7.9-debian-9-r8 + tag: 1.7.9-debian-9-r51 ## Specify a imagePullPolicy. Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images ## diff --git a/bitnami/jenkins/Chart.yaml b/bitnami/jenkins/Chart.yaml index 53aad7fc3..f7a8f92c3 100644 --- a/bitnami/jenkins/Chart.yaml +++ b/bitnami/jenkins/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: jenkins -version: 4.1.1 +version: 4.1.2 appVersion: 2.204.1 description: The leading open source automation server keywords: diff --git a/bitnami/jenkins/values.yaml b/bitnami/jenkins/values.yaml index 0000bf97c..57db69973 100644 --- a/bitnami/jenkins/values.yaml +++ b/bitnami/jenkins/values.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/jenkins - tag: 2.204.1-debian-9-r0 + tag: 2.204.1-debian-9-r2 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -231,7 +231,7 @@ metrics: image: registry: docker.io repository: bitnami/jenkins-exporter - tag: 0.20171225.0-debian-9-r127 + tag: 0.20171225.0-debian-9-r150 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/bitnami/kafka/Chart.yaml b/bitnami/kafka/Chart.yaml index 755419f66..90c2de973 100644 --- a/bitnami/kafka/Chart.yaml +++ b/bitnami/kafka/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: kafka -version: 7.1.1 +version: 7.1.2 appVersion: 2.4.0 description: Apache Kafka is a distributed streaming platform. keywords: diff --git a/bitnami/kafka/requirements.lock b/bitnami/kafka/requirements.lock index e329fcab2..c93c09685 100644 --- a/bitnami/kafka/requirements.lock +++ b/bitnami/kafka/requirements.lock @@ -1,6 +1,6 @@ dependencies: - name: zookeeper repository: https://charts.bitnami.com/bitnami - version: 5.3.1 + version: 5.3.2 digest: sha256:2f3c43ce02e3966648b8c89be121fe39537f62ea1d161ad908f51ddc90e4243e -generated: "2020-01-03T10:08:21.104074685Z" +generated: 2020-01-14T19:33:30.203914766Z diff --git a/bitnami/kafka/values-production.yaml b/bitnami/kafka/values-production.yaml index 887aa3c80..605c221f1 100644 --- a/bitnami/kafka/values-production.yaml +++ b/bitnami/kafka/values-production.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/kafka - tag: 2.4.0-debian-9-r0 + tag: 2.4.0-debian-9-r22 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -354,7 +354,7 @@ metrics: image: registry: docker.io repository: bitnami/kafka-exporter - tag: 1.2.0-debian-9-r122 + tag: 1.2.0-debian-9-r145 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. @@ -421,7 +421,7 @@ metrics: image: registry: docker.io repository: bitnami/jmx-exporter - tag: 0.12.0-debian-9-r122 + tag: 0.12.0-debian-9-r145 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/bitnami/kafka/values.yaml b/bitnami/kafka/values.yaml index 1c2968abc..64fc09744 100644 --- a/bitnami/kafka/values.yaml +++ b/bitnami/kafka/values.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/kafka - tag: 2.4.0-debian-9-r0 + tag: 2.4.0-debian-9-r22 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -354,7 +354,7 @@ metrics: image: registry: docker.io repository: bitnami/kafka-exporter - tag: 1.2.0-debian-9-r122 + tag: 1.2.0-debian-9-r145 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. @@ -421,7 +421,7 @@ metrics: image: registry: docker.io repository: bitnami/jmx-exporter - tag: 0.12.0-debian-9-r122 + tag: 0.12.0-debian-9-r145 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/bitnami/kibana/Chart.yaml b/bitnami/kibana/Chart.yaml index 3d3df3f6b..bb2dd0f6b 100644 --- a/bitnami/kibana/Chart.yaml +++ b/bitnami/kibana/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: kibana -version: 5.0.2 +version: 5.0.3 appVersion: 7.5.1 description: Kibana is an open source, browser based analytics and search dashboard for Elasticsearch. keywords: diff --git a/bitnami/kibana/values-production.yaml b/bitnami/kibana/values-production.yaml index 3735121dd..81de7c368 100644 --- a/bitnami/kibana/values-production.yaml +++ b/bitnami/kibana/values-production.yaml @@ -14,7 +14,7 @@ global: {} image: registry: docker.io repository: bitnami/kibana - tag: 7.5.1-debian-9-r9 + tag: 7.5.1-debian-9-r19 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images diff --git a/bitnami/kibana/values.yaml b/bitnami/kibana/values.yaml index 16d943401..2425d0af4 100644 --- a/bitnami/kibana/values.yaml +++ b/bitnami/kibana/values.yaml @@ -14,7 +14,7 @@ global: {} image: registry: docker.io repository: bitnami/kibana - tag: 7.5.1-debian-9-r9 + tag: 7.5.1-debian-9-r19 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images diff --git a/bitnami/kube-state-metrics/Chart.yaml b/bitnami/kube-state-metrics/Chart.yaml index 14d6a342e..04635cf2c 100644 --- a/bitnami/kube-state-metrics/Chart.yaml +++ b/bitnami/kube-state-metrics/Chart.yaml @@ -1,8 +1,8 @@ apiVersion: v1 -appVersion: 1.9.0 +appVersion: 1.9.2 description: kube-state-metrics is a simple service that listens to the Kubernetes API server and generates metrics about the state of the objects. name: kube-state-metrics -version: 0.1.5 +version: 0.1.8 keywords: - prometheus - kube-state-metrics diff --git a/bitnami/kube-state-metrics/values-production.yaml b/bitnami/kube-state-metrics/values-production.yaml index a18867c5a..6dcedfaae 100644 --- a/bitnami/kube-state-metrics/values-production.yaml +++ b/bitnami/kube-state-metrics/values-production.yaml @@ -51,7 +51,7 @@ serviceAccount: image: registry: docker.io repository: bitnami/kube-state-metrics - tag: 1.9.0-debian-9-r0 + tag: 1.9.2-debian-9-r1 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' diff --git a/bitnami/kube-state-metrics/values.yaml b/bitnami/kube-state-metrics/values.yaml index 1534823f5..07ed9cf80 100644 --- a/bitnami/kube-state-metrics/values.yaml +++ b/bitnami/kube-state-metrics/values.yaml @@ -51,7 +51,7 @@ serviceAccount: image: registry: docker.io repository: bitnami/kube-state-metrics - tag: 1.9.0-debian-9-r0 + tag: 1.9.2-debian-9-r1 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' diff --git a/bitnami/logstash/Chart.yaml b/bitnami/logstash/Chart.yaml index 026521904..9c9be087b 100644 --- a/bitnami/logstash/Chart.yaml +++ b/bitnami/logstash/Chart.yaml @@ -14,4 +14,4 @@ maintainers: name: logstash sources: - https://github.com/bitnami/bitnami-docker-logstash -version: 0.2.5 +version: 0.2.6 diff --git a/bitnami/logstash/values-production.yaml b/bitnami/logstash/values-production.yaml index 4124b9b26..17efd2208 100644 --- a/bitnami/logstash/values-production.yaml +++ b/bitnami/logstash/values-production.yaml @@ -13,7 +13,7 @@ image: registry: docker.io repository: bitnami/logstash - tag: 7.5.1-debian-9-r0 + tag: 7.5.1-debian-9-r21 ## Specify a imagePullPolicy. Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images ## @@ -285,7 +285,7 @@ metrics: image: registry: docker.io repository: bitnami/logstash-exporter - tag: 0.1.2-debian-9-r55 + tag: 0.1.2-debian-9-r77 ## Specify a imagePullPolicy. Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images ## diff --git a/bitnami/logstash/values.yaml b/bitnami/logstash/values.yaml index e86ed58ec..64120ba4a 100644 --- a/bitnami/logstash/values.yaml +++ b/bitnami/logstash/values.yaml @@ -13,7 +13,7 @@ image: registry: docker.io repository: bitnami/logstash - tag: 7.5.1-debian-9-r0 + tag: 7.5.1-debian-9-r21 ## Specify a imagePullPolicy. Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images ## @@ -285,7 +285,7 @@ metrics: image: registry: docker.io repository: bitnami/logstash-exporter - tag: 0.1.2-debian-9-r55 + tag: 0.1.2-debian-9-r77 ## Specify a imagePullPolicy. Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images ## diff --git a/bitnami/magento/Chart.yaml b/bitnami/magento/Chart.yaml index db9e2cbe4..b99eff85e 100644 --- a/bitnami/magento/Chart.yaml +++ b/bitnami/magento/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: magento -version: 11.0.0 +version: 11.0.2 appVersion: 2.3.3 description: A feature-rich flexible e-commerce solution. It includes transaction options, multi-store functionality, loyalty programs, product categorization and shopper filtering, promotion rules, and more. keywords: diff --git a/bitnami/magento/requirements.lock b/bitnami/magento/requirements.lock index c85090dd4..16157ea39 100644 --- a/bitnami/magento/requirements.lock +++ b/bitnami/magento/requirements.lock @@ -1,9 +1,9 @@ dependencies: - name: mariadb repository: https://kubernetes-charts.storage.googleapis.com/ - version: 7.3.1 + version: 7.3.3 - name: elasticsearch repository: https://charts.bitnami.com/bitnami - version: 10.1.0 + version: 10.3.3 digest: sha256:bad621518ab9d12662436062824ce1a8c4656b6bc8ae4dc7ccb1decc5c91fd09 -generated: "2019-12-17T13:12:07.830004+01:00" +generated: 2020-01-14T22:31:24.753325892Z diff --git a/bitnami/magento/values-production.yaml b/bitnami/magento/values-production.yaml index fd53a9853..3184e2003 100644 --- a/bitnami/magento/values-production.yaml +++ b/bitnami/magento/values-production.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/magento - tag: 2.3.3-debian-9-r15 + tag: 2.3.3-debian-9-r60 ## Set to true if you would like to see extra information on logs ## It turns BASH and NAMI debugging in minideb ## ref: https://github.com/bitnami/minideb-extras/#turn-on-bash-debugging @@ -178,7 +178,7 @@ elasticsearch: image: registry: docker.io repository: bitnami/elasticsearch - tag: 6.8.4-debian-9-r21 + tag: 6.8.6-debian-9-r21 ## Enable to perform the sysctl operation sysctlImage: enabled: true @@ -338,7 +338,7 @@ metrics: image: registry: docker.io repository: bitnami/apache-exporter - tag: 0.7.0-debian-9-r109 + tag: 0.7.0-debian-9-r163 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/bitnami/magento/values.yaml b/bitnami/magento/values.yaml index 380961496..0261a1b50 100644 --- a/bitnami/magento/values.yaml +++ b/bitnami/magento/values.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/magento - tag: 2.3.3-debian-9-r15 + tag: 2.3.3-debian-9-r60 ## Set to true if you would like to see extra information on logs ## It turns BASH and NAMI debugging in minideb ## ref: https://github.com/bitnami/minideb-extras/#turn-on-bash-debugging @@ -178,7 +178,7 @@ elasticsearch: image: registry: docker.io repository: bitnami/elasticsearch - tag: 6.8.4-debian-9-r21 + tag: 6.8.6-debian-9-r21 ## Enable to perform the sysctl operation sysctlImage: enabled: true @@ -338,7 +338,7 @@ metrics: image: registry: docker.io repository: bitnami/apache-exporter - tag: 0.7.0-debian-9-r109 + tag: 0.7.0-debian-9-r163 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/bitnami/mariadb-galera/Chart.yaml b/bitnami/mariadb-galera/Chart.yaml index b68028df6..3e377dcb4 100644 --- a/bitnami/mariadb-galera/Chart.yaml +++ b/bitnami/mariadb-galera/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: mariadb-galera -version: 0.6.1 +version: 0.6.2 appVersion: 10.4.11 description: MariaDB Galera is a multi-master database cluster solution for synchronous replication and high availability. keywords: diff --git a/bitnami/mariadb-galera/values-production.yaml b/bitnami/mariadb-galera/values-production.yaml index db8d6ac1b..3feb9c4aa 100644 --- a/bitnami/mariadb-galera/values-production.yaml +++ b/bitnami/mariadb-galera/values-production.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/mariadb-galera - tag: 10.4.11-debian-9-r0 + tag: 10.4.11-debian-9-r21 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -473,7 +473,7 @@ metrics: image: registry: docker.io repository: bitnami/mysqld-exporter - tag: 0.12.1-debian-9-r136 + tag: 0.12.1-debian-9-r157 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/bitnami/mariadb-galera/values.yaml b/bitnami/mariadb-galera/values.yaml index d87d38761..8db6d7aac 100644 --- a/bitnami/mariadb-galera/values.yaml +++ b/bitnami/mariadb-galera/values.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/mariadb-galera - tag: 10.4.11-debian-9-r0 + tag: 10.4.11-debian-9-r21 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -473,7 +473,7 @@ metrics: image: registry: docker.io repository: bitnami/mysqld-exporter - tag: 0.12.1-debian-9-r136 + tag: 0.12.1-debian-9-r157 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/bitnami/memcached/Chart.yaml b/bitnami/memcached/Chart.yaml index e1baae733..50a01709d 100644 --- a/bitnami/memcached/Chart.yaml +++ b/bitnami/memcached/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: memcached -version: 4.1.0 +version: 4.1.2 appVersion: 1.5.20 description: Chart for Memcached keywords: diff --git a/bitnami/memcached/values-production.yaml b/bitnami/memcached/values-production.yaml index f47ba75c5..04f6fdf2a 100644 --- a/bitnami/memcached/values-production.yaml +++ b/bitnami/memcached/values-production.yaml @@ -13,7 +13,7 @@ image: registry: docker.io repository: bitnami/memcached - tag: 1.5.20-debian-9-r9 + tag: 1.5.20-debian-9-r50 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -166,7 +166,7 @@ metrics: image: registry: docker.io repository: bitnami/memcached-exporter - tag: 0.6.0-debian-9-r79 + tag: 0.6.0-debian-9-r121 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/bitnami/memcached/values.yaml b/bitnami/memcached/values.yaml index 12e0f2631..a03d60a73 100644 --- a/bitnami/memcached/values.yaml +++ b/bitnami/memcached/values.yaml @@ -13,7 +13,7 @@ image: registry: docker.io repository: bitnami/memcached - tag: 1.5.20-debian-9-r9 + tag: 1.5.20-debian-9-r50 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -166,7 +166,7 @@ metrics: image: registry: docker.io repository: bitnami/memcached-exporter - tag: 0.6.0-debian-9-r79 + tag: 0.6.0-debian-9-r121 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/bitnami/metrics-server/Chart.yaml b/bitnami/metrics-server/Chart.yaml index 35b2a0ecf..8dc7f5a79 100644 --- a/bitnami/metrics-server/Chart.yaml +++ b/bitnami/metrics-server/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: metrics-server -version: 4.1.0 +version: 4.1.2 appVersion: 0.3.6 description: Metrics Server is a cluster-wide aggregator of resource usage data. Metrics Server collects metrics from the Summary API, exposed by Kubelet on each node. keywords: diff --git a/bitnami/metrics-server/values.yaml b/bitnami/metrics-server/values.yaml index 66187c448..930bec839 100644 --- a/bitnami/metrics-server/values.yaml +++ b/bitnami/metrics-server/values.yaml @@ -13,7 +13,7 @@ image: registry: docker.io repository: bitnami/metrics-server - tag: 0.3.6-debian-9-r27 + tag: 0.3.6-debian-9-r72 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images diff --git a/bitnami/minio/Chart.yaml b/bitnami/minio/Chart.yaml index 801492d43..37e0f3a93 100644 --- a/bitnami/minio/Chart.yaml +++ b/bitnami/minio/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 -version: 2.2.0 -appVersion: 2019.10.12 +version: 3.0.0 +appVersion: 2019.12.30 description: MinIO is an object storage server, compatible with Amazon S3 cloud storage service, mainly used for storing unstructured data (such as photos, videos, log files, etc.) keywords: - minio diff --git a/bitnami/minio/values-production.yaml b/bitnami/minio/values-production.yaml index 66a6698e9..a1c0bafca 100644 --- a/bitnami/minio/values-production.yaml +++ b/bitnami/minio/values-production.yaml @@ -19,7 +19,7 @@ global: image: registry: docker.io repository: bitnami/minio - tag: 2019.10.12-debian-9-r15 + tag: 2019.12.30-debian-9-r0 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -55,7 +55,7 @@ clusterDomain: cluster.local clientImage: registry: docker.io repository: bitnami/minio-client - tag: 2019.10.9-debian-9-r33 + tag: 2019.12.24-debian-9-r21 ## Init containers parameters: ## volumePermissions: Change the owner and group of the persistent volume mountpoint to runAsUser:fsGroup values from the securityContext section. diff --git a/bitnami/minio/values.yaml b/bitnami/minio/values.yaml index 4b5ab0e2c..eaf1a5199 100644 --- a/bitnami/minio/values.yaml +++ b/bitnami/minio/values.yaml @@ -19,7 +19,7 @@ global: image: registry: docker.io repository: bitnami/minio - tag: 2019.10.12-debian-9-r15 + tag: 2019.12.30-debian-9-r0 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -55,7 +55,7 @@ clusterDomain: cluster.local clientImage: registry: docker.io repository: bitnami/minio-client - tag: 2019.10.9-debian-9-r33 + tag: 2019.12.24-debian-9-r21 ## Init containers parameters: ## volumePermissions: Change the owner and group of the persistent volume mountpoint to runAsUser:fsGroup values from the securityContext section. diff --git a/bitnami/mongodb-sharded/Chart.yaml b/bitnami/mongodb-sharded/Chart.yaml index 8aafa77e0..05b075cd7 100644 --- a/bitnami/mongodb-sharded/Chart.yaml +++ b/bitnami/mongodb-sharded/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: mongodb-sharded -version: 1.0.2 +version: 1.0.4 appVersion: 4.0.14 description: NoSQL document-oriented database that stores JSON-like documents with dynamic schemas, simplifying the integration of data in content-driven applications. Sharded topology. keywords: diff --git a/bitnami/mongodb-sharded/README.md b/bitnami/mongodb-sharded/README.md index 55805bff4..56d358064 100644 --- a/bitnami/mongodb-sharded/README.md +++ b/bitnami/mongodb-sharded/README.md @@ -7,7 +7,8 @@ This chart uses the [sharding method](https://docs.mongodb.com/manual/sharding/) ## TL;DR; ```bash -$ helm install stable/mongodb-sharded +$ helm repo add bitnami https://charts.bitnami.com/bitnami +$ helm install bitnami/mongodb-sharded ``` ## Introduction @@ -28,7 +29,7 @@ Bitnami charts can be used with [Kubeapps](https://kubeapps.com/) for deployment To install the chart with the release name `my-release`: ```bash -$ helm install --name my-release stable/mongodb-sharded +$ helm install --name my-release bitnami/mongodb-sharded ``` The command deploys MongoDB on the Kubernetes cluster in the default configuration. The [Parameters](#parameters) section lists the parameters that can be configured during installation. @@ -274,7 +275,7 @@ Specify each parameter using the `--set key=value[,key=value]` argument to `helm ```bash $ helm install --name my-release \ --set mongodbRootPassword=secretpassword,mongodbUsername=my-user,mongodbPassword=my-password,mongodbDatabase=my-database \ - stable/mongodb + bitnami/mongodb-sharded ``` The above command sets the MongoDB `root` account password to `secretpassword`. Additionally, it creates a standard database user named `my-user`, with the password `my-password`, who has access to a database named `my-database`. @@ -282,7 +283,7 @@ The above command sets the MongoDB `root` account password to `secretpassword`. Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example, ```bash -$ helm install --name my-release -f values.yaml stable/mongodb +$ helm install --name my-release -f values.yaml bitnami/mongodb-sharded ``` > **Tip**: You can use the default [values.yaml](values.yaml) diff --git a/bitnami/mongodb-sharded/values-production.yaml b/bitnami/mongodb-sharded/values-production.yaml index 35e6fa76c..11040ab13 100644 --- a/bitnami/mongodb-sharded/values-production.yaml +++ b/bitnami/mongodb-sharded/values-production.yaml @@ -14,7 +14,7 @@ global: {} image: registry: docker.io repository: bitnami/mongodb-sharded - tag: 4.0.14-debian-9-r0 + tag: 4.0.14-debian-9-r24 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -732,7 +732,7 @@ metrics: image: registry: docker.io repository: bitnami/mongodb-exporter - tag: 0.10.0-debian-9-r77 + tag: 0.10.0-debian-9-r105 pullPolicy: Always ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/bitnami/mongodb-sharded/values.yaml b/bitnami/mongodb-sharded/values.yaml index d9d82277b..192b40608 100644 --- a/bitnami/mongodb-sharded/values.yaml +++ b/bitnami/mongodb-sharded/values.yaml @@ -14,7 +14,7 @@ global: {} image: registry: docker.io repository: bitnami/mongodb-sharded - tag: 4.0.14-debian-9-r0 + tag: 4.0.14-debian-9-r24 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -734,7 +734,7 @@ metrics: image: registry: docker.io repository: bitnami/mongodb-exporter - tag: 0.10.0-debian-9-r77 + tag: 0.10.0-debian-9-r105 pullPolicy: Always ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/bitnami/mxnet/Chart.yaml b/bitnami/mxnet/Chart.yaml index 1cbaa0f56..4c79967e6 100644 --- a/bitnami/mxnet/Chart.yaml +++ b/bitnami/mxnet/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: mxnet -version: 1.4.1 +version: 1.4.3 appVersion: 1.5.1 description: A flexible and efficient library for deep learning keywords: diff --git a/bitnami/mxnet/values-production.yaml b/bitnami/mxnet/values-production.yaml index 54ec48b23..0b41b29a6 100644 --- a/bitnami/mxnet/values-production.yaml +++ b/bitnami/mxnet/values-production.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/mxnet - tag: 1.5.1-debian-9-r30 + tag: 1.5.1-debian-9-r76 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -38,7 +38,7 @@ image: git: registry: docker.io repository: bitnami/git - tag: 2.24.0-debian-9-r17 + tag: 2.25.0-debian-9-r1 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/bitnami/mxnet/values.yaml b/bitnami/mxnet/values.yaml index 0ed30083c..f4f222065 100644 --- a/bitnami/mxnet/values.yaml +++ b/bitnami/mxnet/values.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/mxnet - tag: 1.5.1-debian-9-r30 + tag: 1.5.1-debian-9-r76 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -38,7 +38,7 @@ image: git: registry: docker.io repository: bitnami/git - tag: 2.24.0-debian-9-r17 + tag: 2.25.0-debian-9-r1 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/bitnami/mysql/Chart.yaml b/bitnami/mysql/Chart.yaml index 1076dec24..810cac56a 100644 --- a/bitnami/mysql/Chart.yaml +++ b/bitnami/mysql/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: mysql -version: 6.7.1 -appVersion: 8.0.18 +version: 6.7.4 +appVersion: 8.0.19 description: Chart to create a Highly available MySQL cluster keywords: - mysql diff --git a/bitnami/mysql/values-production.yaml b/bitnami/mysql/values-production.yaml index fa5d0f209..48894c3dd 100644 --- a/bitnami/mysql/values-production.yaml +++ b/bitnami/mysql/values-production.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/mysql - tag: 8.0.18-debian-9-r37 + tag: 8.0.19-debian-9-r1 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -446,7 +446,7 @@ metrics: image: registry: docker.io repository: bitnami/mysqld-exporter - tag: 0.12.1-debian-9-r123 + tag: 0.12.1-debian-9-r156 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/bitnami/mysql/values.yaml b/bitnami/mysql/values.yaml index d2953a4e5..4a3baabad 100644 --- a/bitnami/mysql/values.yaml +++ b/bitnami/mysql/values.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/mysql - tag: 8.0.18-debian-9-r37 + tag: 8.0.19-debian-9-r1 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -450,7 +450,7 @@ metrics: image: registry: docker.io repository: bitnami/mysqld-exporter - tag: 0.12.1-debian-9-r123 + tag: 0.12.1-debian-9-r156 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/bitnami/nginx/Chart.yaml b/bitnami/nginx/Chart.yaml index ed20310ea..2ad360113 100644 --- a/bitnami/nginx/Chart.yaml +++ b/bitnami/nginx/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: nginx -version: 5.1.1 +version: 5.1.3 appVersion: 1.16.1 description: Chart for the nginx server keywords: diff --git a/bitnami/nginx/values.yaml b/bitnami/nginx/values.yaml index 34430e875..12ae8b501 100644 --- a/bitnami/nginx/values.yaml +++ b/bitnami/nginx/values.yaml @@ -13,7 +13,7 @@ image: registry: docker.io repository: bitnami/nginx - tag: 1.16.1-debian-9-r105 + tag: 1.16.1-debian-9-r139 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -210,7 +210,7 @@ metrics: image: registry: docker.io repository: bitnami/nginx-exporter - tag: 0.4.2-debian-9-r129 + tag: 0.5.0-debian-9-r31 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/bitnami/node-exporter/Chart.yaml b/bitnami/node-exporter/Chart.yaml index e81c7b4c8..b2b1da3e2 100644 --- a/bitnami/node-exporter/Chart.yaml +++ b/bitnami/node-exporter/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v1 appVersion: 0.18.1 description: Prometheus exporter for hardware and OS metrics exposed by UNIX kernels, with pluggable metric collectors. name: node-exporter -version: 0.1.2 +version: 0.1.4 keywords: - prometheus - node-exporter diff --git a/bitnami/node-exporter/values.yaml b/bitnami/node-exporter/values.yaml index 39d180c75..f49431dba 100644 --- a/bitnami/node-exporter/values.yaml +++ b/bitnami/node-exporter/values.yaml @@ -50,7 +50,7 @@ serviceAccount: image: registry: docker.io repository: bitnami/node-exporter - tag: 0.18.1-debian-9-r172 + tag: 0.18.1-debian-9-r213 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' diff --git a/bitnami/node/Chart.yaml b/bitnami/node/Chart.yaml index 74b786ccf..febb86bc2 100644 --- a/bitnami/node/Chart.yaml +++ b/bitnami/node/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: node -version: 11.4.0 -appVersion: 10.18.0 +version: 11.4.2 +appVersion: 10.18.1 description: Event-driven I/O server-side JavaScript environment based on V8 keywords: - node diff --git a/bitnami/node/requirements.lock b/bitnami/node/requirements.lock index 26e6f0c28..228178e00 100644 --- a/bitnami/node/requirements.lock +++ b/bitnami/node/requirements.lock @@ -1,9 +1,9 @@ dependencies: - name: mongodb repository: https://kubernetes-charts.storage.googleapis.com/ - version: 7.6.1 + version: 7.6.4 - name: bitnami-common repository: https://charts.bitnami.com/bitnami version: 0.0.8 digest: sha256:ef3a38fc3e846e18d2f0f1f326772092287a5ac289a4db640216a2717b081efd -generated: 2019-12-18T00:45:46.167264181Z +generated: 2020-01-10T15:45:47.113882437Z diff --git a/bitnami/node/values.yaml b/bitnami/node/values.yaml index 93cbaacb9..615e0ec55 100644 --- a/bitnami/node/values.yaml +++ b/bitnami/node/values.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/node - tag: 10.18.0-debian-9-r0 + tag: 10.18.1-debian-9-r4 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -72,7 +72,7 @@ volumePermissions: git: registry: docker.io repository: bitnami/git - tag: 2.24.1-debian-9-r5 + tag: 2.25.0-debian-9-r1 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/bitnami/postgresql-ha/Chart.yaml b/bitnami/postgresql-ha/Chart.yaml index 0a2381bce..32537eb7b 100644 --- a/bitnami/postgresql-ha/Chart.yaml +++ b/bitnami/postgresql-ha/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: postgresql-ha -version: 1.1.5 +version: 1.2.1 appVersion: 11.6.0 description: Chart for PostgreSQL with HA architecture (using Replication Manager (repmgr) and Pgpool). keywords: diff --git a/bitnami/postgresql-ha/README.md b/bitnami/postgresql-ha/README.md index 855c63843..adb882b2e 100644 --- a/bitnami/postgresql-ha/README.md +++ b/bitnami/postgresql-ha/README.md @@ -130,6 +130,8 @@ The following table lists the configurable parameters of the PostgreSQL HA chart | `pgpool.pdb.maxUnavailable` | Maximum number / percentage of pods that may be made unavailable | `nil` | | `pgpool.adminUsername` | Pgpool Admin username | `admin` | | `pgpool.adminPassword` | Pgpool Admin password | `nil` | +| `pgpool.configuration` | Content of pgpool.conf | `nil` | +| `pgpool.configurationCM` | ConfigMap with the Pgpool configuration file (Note: Overrides `pgpol.configuration`) | `nil` (The value is evaluated as a template) | | **LDAP** | | | | `ldap.enabled` | Enable LDAP support | `false` | | `ldap.existingSecret` | Name of existing secret to use for LDAP passwords | `nil` | @@ -294,15 +296,15 @@ Next, login to the PostgreSQL server using the `psql` client and add the PAM aut > Note: Parameters including commas must be escaped as shown in the above example. More information at: https://github.com/helm/helm/blob/master/docs/using_helm.md#the-format-and-limitations-of---set -### repmgr.conf / postgresql.conf / pg_hba.conf files as configMap +### repmgr.conf / postgresql.conf / pg_hba.conf / pgpool.conf files as configMap This helm chart also supports to customize the whole configuration file. -Add your custom files to "files" in your working directory. Those files will be mounted as configMap to the containers and it will be used for configuring Repmgr and the PostgreSQL server. +Add your custom files to "files" in your working directory. Those files will be mounted as configMap to the containers and it will be used for configuring Pgpool, Repmgr and the PostgreSQL server. -Alternatively, you can specify the PostgreSQL and Repmgr configuration using the `postgresql.configuration`, `postgresql.pgHbaConfiguration`, and `postgresql.repmgrConfiguration` parameters. +Alternatively, you can specify the Pgpool, PostgreSQL and Repmgr configuration using the `pgpool.configuration`, `postgresql.configuration`, `postgresql.pgHbaConfiguration`, and `postgresql.repmgrConfiguration` parameters. -In addition to these options, you can also set an external ConfigMap with all the configuration files. This is done by setting the `postgresql.configurationCM` parameter. Note that this will override the two previous options. +In addition to these options, you can also set an external ConfigMap(s) with all the configuration files. This is done by setting the `postgresql.configurationCM` and `pgpool.configurationCM` parameters. Note that this will override the two previous options. ### Allow settings to be loaded from files other than the default `postgresql.conf` diff --git a/bitnami/postgresql-ha/templates/_helpers.tpl b/bitnami/postgresql-ha/templates/_helpers.tpl index 03686e74a..f77a42863 100644 --- a/bitnami/postgresql-ha/templates/_helpers.tpl +++ b/bitnami/postgresql-ha/templates/_helpers.tpl @@ -524,6 +524,17 @@ Return the PostgreSQL extended configuration configmap. {{- end -}} {{- end -}} +{{/* +Return the Pgpool configuration configmap. +*/}} +{{- define "postgresql-ha.pgpoolConfigurationCM" -}} +{{- if .Values.pgpool.configurationCM -}} +{{- printf "%s" (tpl .Values.pgpool.configurationCM $) -}} +{{- else -}} +{{- printf "%s-configuration" (include "postgresql-ha.pgpool" .) -}} +{{- end -}} +{{- end -}} + {{/* Return the PostgreSQL initdb scripts configmap. */}} diff --git a/bitnami/postgresql-ha/templates/pgpool/configmap.yaml b/bitnami/postgresql-ha/templates/pgpool/configmap.yaml new file mode 100644 index 000000000..0b686e806 --- /dev/null +++ b/bitnami/postgresql-ha/templates/pgpool/configmap.yaml @@ -0,0 +1,15 @@ +{{- if and (or (.Files.Glob "files/pgpool.conf") .Values.pgpool.configuration) (not .Values.pgpool.configurationCM) }} +apiVersion: v1 +kind: ConfigMap +metadata: + name: {{ printf "%s-configuration" (include "postgresql-ha.pgpool" .) }} + labels: {{- include "postgresql-ha.labels" . | nindent 4 }} + app.kubernetes.io/component: pgpool +data: + {{- if (.Files.Glob "files/pgpool.conf") }} + {{- (.Files.Glob "files/pgpool.conf").AsConfig | nindent 2 }} + {{- else if .Values.pgpool.configuration }} + pgpool.conf: | + {{- include "postgresql-ha.tplValue" (dict "value" .Values.pgpool.configuration "context" $) | nindent 4 }} + {{- end }} +{{- end }} diff --git a/bitnami/postgresql-ha/templates/pgpool/deployment.yaml b/bitnami/postgresql-ha/templates/pgpool/deployment.yaml index 266a1e693..014f6a7db 100644 --- a/bitnami/postgresql-ha/templates/pgpool/deployment.yaml +++ b/bitnami/postgresql-ha/templates/pgpool/deployment.yaml @@ -210,6 +210,10 @@ spec: resources: {{- toYaml .Values.pgpool.resources | nindent 12 }} {{- end }} volumeMounts: + {{- if or (.Files.Glob "files/pgool.conf") .Values.pgpool.configuration }} + - name: pgpool-config + mountPath: /opt/bitnami/pgpool/conf/ + {{- end }} {{- if .Values.postgresql.usePasswordFile }} - name: postgresql-password mountPath: /opt/bitnami/pgpool/secrets/ @@ -220,6 +224,11 @@ spec: {{- end }} {{- if or .Values.postgresql.usePasswordFile .Values.pgpool.usePasswordFile }} volumes: + {{- if or (.Files.Glob "files/pgool.conf") .Values.pgpool.configuration }} + - name: pgpool-config + configMap: + name: {{ include "postgresql-ha.pgpoolConfigurationCM" . }} + {{- end }} {{- if .Values.postgresql.usePasswordFile }} - name: postgresql-password secret: diff --git a/bitnami/postgresql-ha/values-production.yaml b/bitnami/postgresql-ha/values-production.yaml index b6702aa66..d545f7bc2 100644 --- a/bitnami/postgresql-ha/values-production.yaml +++ b/bitnami/postgresql-ha/values-production.yaml @@ -29,7 +29,7 @@ postgresqlImage: registry: docker.io repository: bitnami/postgresql-repmgr - tag: 11.6.0-debian-9-r32 + tag: 11.6.0-debian-9-r46 ## Specify a imagePullPolicy. Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images ## @@ -51,7 +51,7 @@ postgresqlImage: pgpoolImage: registry: docker.io repository: bitnami/pgpool - tag: 4.1.0-debian-9-r46 + tag: 4.1.0-debian-9-r60 ## Specify a imagePullPolicy. Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images ## @@ -90,7 +90,7 @@ volumePermissionsImage: metricsImage: registry: docker.io repository: bitnami/postgres-exporter - tag: 0.8.0-debian-9-r25 + tag: 0.8.0-debian-9-r40 ## Specify a imagePullPolicy. Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images ## @@ -364,6 +364,18 @@ pgpool: adminUsername: admin # adminPassword: + ## Pgpool configuration + ## Specify content for pgpool.conf + ## Alternatively, you can put your pgpool.conf under the files/ directory + ## ref: https://github.com/bitnami/bitnami-docker-pgpool#configuration-file + ## + # configuration: + + ## ConfigMap with Pgpool configuration + ## NOTE: This will override pgpool.configuration parameter + ## + # configurationCM: + ## LDAP parameters ## ldap: diff --git a/bitnami/postgresql-ha/values.yaml b/bitnami/postgresql-ha/values.yaml index 16aa25d01..71e99cfa0 100644 --- a/bitnami/postgresql-ha/values.yaml +++ b/bitnami/postgresql-ha/values.yaml @@ -29,7 +29,7 @@ postgresqlImage: registry: docker.io repository: bitnami/postgresql-repmgr - tag: 11.6.0-debian-9-r32 + tag: 11.6.0-debian-9-r46 ## Specify a imagePullPolicy. Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images ## @@ -51,7 +51,7 @@ postgresqlImage: pgpoolImage: registry: docker.io repository: bitnami/pgpool - tag: 4.1.0-debian-9-r46 + tag: 4.1.0-debian-9-r60 ## Specify a imagePullPolicy. Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images ## @@ -90,7 +90,7 @@ volumePermissionsImage: metricsImage: registry: docker.io repository: bitnami/postgres-exporter - tag: 0.8.0-debian-9-r25 + tag: 0.8.0-debian-9-r40 ## Specify a imagePullPolicy. Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images ## @@ -364,6 +364,18 @@ pgpool: adminUsername: admin # adminPassword: + ## Pgpool configuration + ## Specify content for pgpool.conf + ## Alternatively, you can put your pgpool.conf under the files/ directory + ## ref: https://github.com/bitnami/bitnami-docker-pgpool#configuration-file + ## + # configuration: + + ## ConfigMap with Pgpool configuration + ## NOTE: This will override pgpool.configuration parameter + ## + # configurationCM: + ## LDAP parameters ## ldap: diff --git a/bitnami/prometheus-operator/Chart.yaml b/bitnami/prometheus-operator/Chart.yaml index 1fa0fe894..c57879e6e 100644 --- a/bitnami/prometheus-operator/Chart.yaml +++ b/bitnami/prometheus-operator/Chart.yaml @@ -1,8 +1,8 @@ apiVersion: v1 -appVersion: 0.34.0 +appVersion: 0.35.0 description: The Prometheus Operator for Kubernetes provides easy monitoring definitions for Kubernetes services and deployment and management of Prometheus instances. name: prometheus-operator -version: 0.8.1 +version: 0.8.3 keywords: - prometheus - alertmanager diff --git a/bitnami/prometheus-operator/requirements.lock b/bitnami/prometheus-operator/requirements.lock index 3e3638d20..ada3939df 100644 --- a/bitnami/prometheus-operator/requirements.lock +++ b/bitnami/prometheus-operator/requirements.lock @@ -1,9 +1,9 @@ dependencies: - name: node-exporter repository: https://charts.bitnami.com/bitnami - version: 0.1.2 + version: 0.1.3 - name: kube-state-metrics repository: https://charts.bitnami.com/bitnami - version: 0.1.5 + version: 0.1.7 digest: sha256:0be9b8e7995ab4f9b82ef1ead2aadca56e5673a1f94ae98818cb90b27001b877 -generated: "2020-01-07T15:06:28.62125+01:00" +generated: 2020-01-14T22:41:18.453081342Z diff --git a/bitnami/prometheus-operator/values-production.yaml b/bitnami/prometheus-operator/values-production.yaml index c1f30ed6f..141e62e31 100644 --- a/bitnami/prometheus-operator/values-production.yaml +++ b/bitnami/prometheus-operator/values-production.yaml @@ -42,7 +42,7 @@ operator: image: registry: docker.io repository: bitnami/prometheus-operator - tag: 0.34.0-debian-9-r9 + tag: 0.34.0-debian-9-r38 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -208,7 +208,7 @@ operator: image: registry: docker.io repository: bitnami/configmap-reload - tag: 0.3.0-debian-9-r44 + tag: 0.3.0-debian-9-r76 ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ @@ -220,7 +220,7 @@ operator: image: registry: docker.io repository: bitnami/prometheus-operator - tag: 0.34.0-debian-9-r9 + tag: 0.34.0-debian-9-r38 ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ @@ -239,7 +239,7 @@ prometheus: image: registry: docker.io repository: bitnami/prometheus - tag: 2.14.0-debian-9-r22 + tag: 2.15.2-debian-9-r9 ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ @@ -538,7 +538,7 @@ alertmanager: image: registry: docker.io repository: bitnami/alertmanager - tag: 0.19.0-debian-9-r90 + tag: 0.20.0-debian-9-r27 ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ diff --git a/bitnami/prometheus-operator/values.yaml b/bitnami/prometheus-operator/values.yaml index 27270156d..85b94f70e 100644 --- a/bitnami/prometheus-operator/values.yaml +++ b/bitnami/prometheus-operator/values.yaml @@ -42,7 +42,7 @@ operator: image: registry: docker.io repository: bitnami/prometheus-operator - tag: 0.34.0-debian-9-r9 + tag: 0.34.0-debian-9-r38 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -208,7 +208,7 @@ operator: image: registry: docker.io repository: bitnami/configmap-reload - tag: 0.3.0-debian-9-r44 + tag: 0.3.0-debian-9-r76 ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ @@ -220,7 +220,7 @@ operator: image: registry: docker.io repository: bitnami/prometheus-operator - tag: 0.34.0-debian-9-r9 + tag: 0.34.0-debian-9-r38 ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ @@ -239,7 +239,7 @@ prometheus: image: registry: docker.io repository: bitnami/prometheus - tag: 2.14.0-debian-9-r22 + tag: 2.15.2-debian-9-r9 ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ @@ -538,7 +538,7 @@ alertmanager: image: registry: docker.io repository: bitnami/alertmanager - tag: 0.19.0-debian-9-r90 + tag: 0.20.0-debian-9-r27 ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ diff --git a/bitnami/pytorch/Chart.yaml b/bitnami/pytorch/Chart.yaml index ab7697e7b..a4d5d14a4 100644 --- a/bitnami/pytorch/Chart.yaml +++ b/bitnami/pytorch/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: pytorch -version: 1.3.0 -appVersion: 1.3.1 +version: 1.3.3 +appVersion: 1.4.0 description: Deep learning platform that accelerates the transition from research prototyping to production deployment keywords: - pytorch diff --git a/bitnami/pytorch/values-production.yaml b/bitnami/pytorch/values-production.yaml index 0ec26f027..6fdb0d27d 100644 --- a/bitnami/pytorch/values-production.yaml +++ b/bitnami/pytorch/values-production.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/pytorch - tag: 1.3.1-debian-9-r14 + tag: 1.4.0-debian-9-r0 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -47,7 +47,7 @@ image: git: registry: docker.io repository: bitnami/git - tag: 2.24.0-debian-9-r22 + tag: 2.25.0-debian-9-r2 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/bitnami/pytorch/values.yaml b/bitnami/pytorch/values.yaml index 303d7063b..f1094ae8b 100644 --- a/bitnami/pytorch/values.yaml +++ b/bitnami/pytorch/values.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/pytorch - tag: 1.3.1-debian-9-r14 + tag: 1.4.0-debian-9-r0 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -47,7 +47,7 @@ image: git: registry: docker.io repository: bitnami/git - tag: 2.24.0-debian-9-r22 + tag: 2.25.0-debian-9-r2 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/bitnami/spark/Chart.yaml b/bitnami/spark/Chart.yaml index 3125e557b..130d4b40f 100644 --- a/bitnami/spark/Chart.yaml +++ b/bitnami/spark/Chart.yaml @@ -1,5 +1,5 @@ apiVersion: v1 -version: 1.2.1 +version: 1.2.3 appVersion: 2.4.4 description: Spark is a fast and general-purpose cluster computing system. name: spark diff --git a/bitnami/spark/values-production.yaml b/bitnami/spark/values-production.yaml index 582c76a32..546f72ce4 100644 --- a/bitnami/spark/values-production.yaml +++ b/bitnami/spark/values-production.yaml @@ -13,7 +13,7 @@ image: registry: docker.io repository: bitnami/spark - tag: 2.4.4-debian-9-r65 + tag: 2.4.4-debian-9-r102 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images diff --git a/bitnami/spark/values.yaml b/bitnami/spark/values.yaml index bf756563b..faa447a43 100644 --- a/bitnami/spark/values.yaml +++ b/bitnami/spark/values.yaml @@ -13,7 +13,7 @@ image: registry: docker.io repository: bitnami/spark - tag: 2.4.4-debian-9-r65 + tag: 2.4.4-debian-9-r102 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images diff --git a/bitnami/tensorflow-resnet/Chart.yaml b/bitnami/tensorflow-resnet/Chart.yaml index dc3d0ec96..65af2f9a9 100755 --- a/bitnami/tensorflow-resnet/Chart.yaml +++ b/bitnami/tensorflow-resnet/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: tensorflow-resnet -version: 2.0.0 -appVersion: 2.0.0 +version: 2.0.3 +appVersion: 2.1.0 description: Open-source software library serving the ResNet machine learning model. keywords: - tensorflow diff --git a/bitnami/tensorflow-resnet/values.yaml b/bitnami/tensorflow-resnet/values.yaml index 289fe8f0b..1e0e14cc4 100755 --- a/bitnami/tensorflow-resnet/values.yaml +++ b/bitnami/tensorflow-resnet/values.yaml @@ -14,7 +14,7 @@ server: image: registry: docker.io repository: bitnami/tensorflow-serving - tag: 2.0.0-debian-9-r11 + tag: 2.0.0-debian-9-r54 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -34,7 +34,7 @@ client: image: registry: docker.io repository: bitnami/tensorflow-resnet - tag: 2.0.0-debian-9-r10 + tag: 2.1.0-debian-9-r0 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images diff --git a/bitnami/tomcat/Chart.yaml b/bitnami/tomcat/Chart.yaml index 09f84115e..8072bc63f 100644 --- a/bitnami/tomcat/Chart.yaml +++ b/bitnami/tomcat/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: tomcat -version: 6.1.3 +version: 6.1.4 appVersion: 9.0.30 description: Chart for Apache Tomcat keywords: diff --git a/bitnami/tomcat/values.yaml b/bitnami/tomcat/values.yaml index f9c02a300..a48b9adbd 100644 --- a/bitnami/tomcat/values.yaml +++ b/bitnami/tomcat/values.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/tomcat - tag: 9.0.30-debian-9-r9 + tag: 9.0.30-debian-9-r29 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images diff --git a/bitnami/wildfly/Chart.yaml b/bitnami/wildfly/Chart.yaml index f151eecd0..d16ccc68d 100644 --- a/bitnami/wildfly/Chart.yaml +++ b/bitnami/wildfly/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: wildfly -version: 3.4.1 +version: 3.4.2 appVersion: 18.0.1 description: Chart for Wildfly keywords: diff --git a/bitnami/wildfly/values.yaml b/bitnami/wildfly/values.yaml index b382386d6..5ac2465ae 100644 --- a/bitnami/wildfly/values.yaml +++ b/bitnami/wildfly/values.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/wildfly - tag: 18.0.1-debian-9-r38 + tag: 18.0.1-debian-9-r51 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images diff --git a/bitnami/zookeeper/Chart.yaml b/bitnami/zookeeper/Chart.yaml index e6334812b..941123655 100644 --- a/bitnami/zookeeper/Chart.yaml +++ b/bitnami/zookeeper/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: zookeeper -version: 5.3.1 +version: 5.3.3 appVersion: 3.5.6 description: A centralized service for maintaining configuration information, naming, providing distributed synchronization, and providing group services for distributed applications. keywords: diff --git a/bitnami/zookeeper/values-production.yaml b/bitnami/zookeeper/values-production.yaml index 6ad620d80..1de29e687 100644 --- a/bitnami/zookeeper/values-production.yaml +++ b/bitnami/zookeeper/values-production.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/zookeeper - tag: 3.5.6-debian-9-r27 + tag: 3.5.6-debian-9-r67 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -237,7 +237,7 @@ metrics: image: registry: docker.io repository: bitnami/zookeeper-exporter - tag: 0.1.2-debian-9-r46 + tag: 0.1.3-debian-9-r12 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/bitnami/zookeeper/values.yaml b/bitnami/zookeeper/values.yaml index 3b3c40e18..0e40be3bd 100644 --- a/bitnami/zookeeper/values.yaml +++ b/bitnami/zookeeper/values.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/zookeeper - tag: 3.5.6-debian-9-r27 + tag: 3.5.6-debian-9-r67 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -237,7 +237,7 @@ metrics: image: registry: docker.io repository: bitnami/zookeeper-exporter - tag: 0.1.2-debian-9-r46 + tag: 0.1.3-debian-9-r12 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/upstreamed/dokuwiki/Chart.yaml b/upstreamed/dokuwiki/Chart.yaml index f15dd7de9..4ff365e37 100644 --- a/upstreamed/dokuwiki/Chart.yaml +++ b/upstreamed/dokuwiki/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: dokuwiki -version: 6.0.2 +version: 6.0.4 appVersion: 0.20180422.201901061035 description: DokuWiki is a standards-compliant, simple to use wiki optimized for creating documentation. It is targeted at developer teams, workgroups, and small companies. diff --git a/upstreamed/dokuwiki/values.yaml b/upstreamed/dokuwiki/values.yaml index f1c846737..4cebc8c1a 100644 --- a/upstreamed/dokuwiki/values.yaml +++ b/upstreamed/dokuwiki/values.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/dokuwiki - tag: 0.20180422.201901061035-debian-9-r260 + tag: 0.20180422.201901061035-debian-9-r301 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -193,7 +193,7 @@ metrics: image: registry: docker.io repository: bitnami/apache-exporter - tag: 0.7.0-debian-9-r120 + tag: 0.7.0-debian-9-r163 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/upstreamed/drupal/Chart.yaml b/upstreamed/drupal/Chart.yaml index ba8967c4e..cdec8c861 100644 --- a/upstreamed/drupal/Chart.yaml +++ b/upstreamed/drupal/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: drupal -version: 6.2.1 +version: 6.2.2 appVersion: 8.8.1 description: One of the most versatile open source content management systems. keywords: diff --git a/upstreamed/drupal/requirements.lock b/upstreamed/drupal/requirements.lock index 019d913c2..afc099c7a 100644 --- a/upstreamed/drupal/requirements.lock +++ b/upstreamed/drupal/requirements.lock @@ -1,6 +1,6 @@ dependencies: - name: mariadb repository: https://kubernetes-charts.storage.googleapis.com/ - version: 7.3.1 + version: 7.3.3 digest: sha256:cd64413a4a697ccf85c0091e9c55cdc5876938ddced84c05d37c57ff9abc5864 -generated: 2019-12-18T22:27:45.877390863Z +generated: 2020-01-14T22:23:31.148821188Z diff --git a/upstreamed/drupal/values.yaml b/upstreamed/drupal/values.yaml index 1a5ea5841..7c1b1fac2 100644 --- a/upstreamed/drupal/values.yaml +++ b/upstreamed/drupal/values.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/drupal - tag: 8.8.1-debian-9-r0 + tag: 8.8.1-debian-9-r20 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -287,7 +287,7 @@ metrics: image: registry: docker.io repository: bitnami/apache-exporter - tag: 0.7.0-debian-9-r141 + tag: 0.7.0-debian-9-r163 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/upstreamed/external-dns/Chart.yaml b/upstreamed/external-dns/Chart.yaml index 96892e8cd..0c80cdc27 100644 --- a/upstreamed/external-dns/Chart.yaml +++ b/upstreamed/external-dns/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: external-dns -version: 2.14.0 -appVersion: 0.5.17 +version: 2.14.3 +appVersion: 0.5.18 description: ExternalDNS is a Kubernetes addon that configures public DNS servers with information about exposed Kubernetes services to make them discoverable. keywords: - external-dns diff --git a/upstreamed/external-dns/values-production.yaml b/upstreamed/external-dns/values-production.yaml index 37ebc64b7..4c114a7ea 100644 --- a/upstreamed/external-dns/values-production.yaml +++ b/upstreamed/external-dns/values-production.yaml @@ -13,7 +13,7 @@ image: registry: docker.io repository: bitnami/external-dns - tag: 0.5.17-debian-9-r50 + tag: 0.5.18-debian-9-r4 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images diff --git a/upstreamed/external-dns/values.yaml b/upstreamed/external-dns/values.yaml index 15bd9322f..b9b4e8b51 100644 --- a/upstreamed/external-dns/values.yaml +++ b/upstreamed/external-dns/values.yaml @@ -13,7 +13,7 @@ image: registry: docker.io repository: bitnami/external-dns - tag: 0.5.17-debian-9-r50 + tag: 0.5.18-debian-9-r4 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images diff --git a/upstreamed/ghost/Chart.yaml b/upstreamed/ghost/Chart.yaml index bc5f3b89b..6b62acb56 100644 --- a/upstreamed/ghost/Chart.yaml +++ b/upstreamed/ghost/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: ghost -version: 9.1.0 -appVersion: 3.1.1 +version: 9.1.2 +appVersion: 3.3.0 description: A simple, powerful publishing platform that allows you to share your stories with the world keywords: - ghost diff --git a/upstreamed/ghost/requirements.lock b/upstreamed/ghost/requirements.lock index 7039bf8f8..031dc0090 100644 --- a/upstreamed/ghost/requirements.lock +++ b/upstreamed/ghost/requirements.lock @@ -1,6 +1,6 @@ dependencies: - name: mariadb repository: https://kubernetes-charts.storage.googleapis.com/ - version: 7.2.1 + version: 7.3.3 digest: sha256:27bef733eb099a7377055cfe2c48e013bd4d55650ff18b50138c80488c812b0b -generated: 2019-12-04T15:22:06.772062948Z +generated: 2020-01-15T00:41:44.311595039Z diff --git a/upstreamed/ghost/values.yaml b/upstreamed/ghost/values.yaml index 09e1f9bab..547c0732e 100644 --- a/upstreamed/ghost/values.yaml +++ b/upstreamed/ghost/values.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/ghost - tag: 3.1.1-debian-9-r0 + tag: 3.3.0-debian-9-r0 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images diff --git a/upstreamed/jasperreports/Chart.yaml b/upstreamed/jasperreports/Chart.yaml index c2d653a1e..4fb576256 100644 --- a/upstreamed/jasperreports/Chart.yaml +++ b/upstreamed/jasperreports/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: jasperreports -version: 7.0.2 +version: 7.0.3 appVersion: 7.2.0 description: The JasperReports server can be used as a stand-alone or embedded reporting and BI server that offers web-based reporting, analytic tools and visualization, diff --git a/upstreamed/jasperreports/requirements.lock b/upstreamed/jasperreports/requirements.lock index d474833e4..aecaf33d6 100644 --- a/upstreamed/jasperreports/requirements.lock +++ b/upstreamed/jasperreports/requirements.lock @@ -1,6 +1,6 @@ dependencies: - name: mariadb repository: https://kubernetes-charts.storage.googleapis.com/ - version: 7.3.1 + version: 7.3.3 digest: sha256:cd64413a4a697ccf85c0091e9c55cdc5876938ddced84c05d37c57ff9abc5864 -generated: 2019-12-21T13:32:22.464177693Z +generated: 2020-01-14T22:05:02.100372207Z diff --git a/upstreamed/jasperreports/values.yaml b/upstreamed/jasperreports/values.yaml index ccb526dd6..7407a8f55 100644 --- a/upstreamed/jasperreports/values.yaml +++ b/upstreamed/jasperreports/values.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/jasperreports - tag: 7.2.0-debian-9-r160 + tag: 7.2.0-debian-9-r179 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images diff --git a/upstreamed/joomla/Chart.yaml b/upstreamed/joomla/Chart.yaml index 06d9d9e81..baf3450ad 100644 --- a/upstreamed/joomla/Chart.yaml +++ b/upstreamed/joomla/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: joomla -version: 7.1.2 +version: 7.1.3 appVersion: 3.9.14 description: PHP content management system (CMS) for publishing web content keywords: diff --git a/upstreamed/joomla/requirements.lock b/upstreamed/joomla/requirements.lock index 1bd8aa0e2..411099922 100644 --- a/upstreamed/joomla/requirements.lock +++ b/upstreamed/joomla/requirements.lock @@ -1,6 +1,6 @@ dependencies: - name: mariadb repository: https://kubernetes-charts.storage.googleapis.com/ - version: 7.3.1 + version: 7.3.3 digest: sha256:cd64413a4a697ccf85c0091e9c55cdc5876938ddced84c05d37c57ff9abc5864 -generated: 2019-12-17T17:37:12.124839767Z +generated: 2020-01-14T17:53:59.477016336Z diff --git a/upstreamed/joomla/values.yaml b/upstreamed/joomla/values.yaml index 39cad168b..e9cd3c557 100644 --- a/upstreamed/joomla/values.yaml +++ b/upstreamed/joomla/values.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/joomla - tag: 3.9.14-debian-9-r0 + tag: 3.9.14-debian-9-r23 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -97,7 +97,7 @@ mariadb: image: registry: docker.io repository: bitnami/mariadb - tag: 10.1.43-debian-9-r37 + tag: 10.1.43-debian-9-r59 ## Disable MariaDB replication replication: enabled: false @@ -286,7 +286,7 @@ metrics: image: registry: docker.io repository: bitnami/apache-exporter - tag: 0.7.0-debian-9-r140 + tag: 0.7.0-debian-9-r162 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/upstreamed/kubewatch/Chart.yaml b/upstreamed/kubewatch/Chart.yaml index 1dee1b44b..b006e59f9 100644 --- a/upstreamed/kubewatch/Chart.yaml +++ b/upstreamed/kubewatch/Chart.yaml @@ -1,5 +1,5 @@ name: kubewatch -version: 1.0.1 +version: 1.0.3 apiVersion: v1 appVersion: 0.0.4 home: https://github.com/bitnami-labs/kubewatch diff --git a/upstreamed/kubewatch/values.yaml b/upstreamed/kubewatch/values.yaml index e7bdbe24c..9cc78cb70 100644 --- a/upstreamed/kubewatch/values.yaml +++ b/upstreamed/kubewatch/values.yaml @@ -49,7 +49,7 @@ resourcesToWatch: image: registry: docker.io repository: bitnami/kubewatch - tag: 0.0.4-debian-9-r405 + tag: 0.0.4-debian-9-r461 pullPolicy: Always ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/upstreamed/mariadb/Chart.yaml b/upstreamed/mariadb/Chart.yaml index 1e9fb6f8d..8b21d1a63 100644 --- a/upstreamed/mariadb/Chart.yaml +++ b/upstreamed/mariadb/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: mariadb -version: 7.3.1 +version: 7.3.4 appVersion: 10.3.21 description: Fast, reliable, scalable, and easy to use open-source relational database system. MariaDB Server is intended for mission-critical, heavy-load production systems as well as for embedding into mass-deployed software. Highly available MariaDB cluster. keywords: diff --git a/upstreamed/mariadb/templates/master-statefulset.yaml b/upstreamed/mariadb/templates/master-statefulset.yaml index b144f1a9b..a0a17b969 100644 --- a/upstreamed/mariadb/templates/master-statefulset.yaml +++ b/upstreamed/mariadb/templates/master-statefulset.yaml @@ -302,7 +302,7 @@ spec: - key: mariadb-password path: mariadb-password {{- end }} - {{- if .Values.replication.injectSecretsAsVolume }} + {{- if and .Values.replication.enabled .Values.replication.injectSecretsAsVolume }} - key: mariadb-replication-password path: mariadb-replication-password {{- end }} diff --git a/upstreamed/mariadb/values-production.yaml b/upstreamed/mariadb/values-production.yaml index d130361f7..6dca16ec4 100644 --- a/upstreamed/mariadb/values-production.yaml +++ b/upstreamed/mariadb/values-production.yaml @@ -19,7 +19,7 @@ image: registry: docker.io repository: bitnami/mariadb - tag: 10.3.21-debian-9-r0 + tag: 10.3.21-debian-9-r26 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -459,7 +459,7 @@ metrics: image: registry: docker.io repository: bitnami/mysqld-exporter - tag: 0.12.1-debian-9-r130 + tag: 0.12.1-debian-9-r157 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/upstreamed/mariadb/values.yaml b/upstreamed/mariadb/values.yaml index 6336078f1..b85c9d479 100644 --- a/upstreamed/mariadb/values.yaml +++ b/upstreamed/mariadb/values.yaml @@ -19,7 +19,7 @@ image: registry: docker.io repository: bitnami/mariadb - tag: 10.3.21-debian-9-r0 + tag: 10.3.21-debian-9-r26 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -461,7 +461,7 @@ metrics: image: registry: docker.io repository: bitnami/mysqld-exporter - tag: 0.12.1-debian-9-r130 + tag: 0.12.1-debian-9-r157 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/upstreamed/mediawiki/Chart.yaml b/upstreamed/mediawiki/Chart.yaml index 07aff6315..746c7d2eb 100644 --- a/upstreamed/mediawiki/Chart.yaml +++ b/upstreamed/mediawiki/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: mediawiki -version: 9.1.0 -appVersion: 1.33.1 +version: 9.1.2 +appVersion: 1.34.0 description: Extremely powerful, scalable software and a feature-rich wiki implementation that uses PHP to process and display data stored in a database. home: http://www.mediawiki.org/ icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png diff --git a/upstreamed/mediawiki/requirements.lock b/upstreamed/mediawiki/requirements.lock index c76e7b2d9..24b73efce 100644 --- a/upstreamed/mediawiki/requirements.lock +++ b/upstreamed/mediawiki/requirements.lock @@ -1,6 +1,6 @@ dependencies: - name: mariadb repository: https://kubernetes-charts.storage.googleapis.com/ - version: 7.0.0 + version: 7.3.3 digest: sha256:d45d6c79af1488743975c530c9bacc4321ef538392cc1603d08214a02e3cac49 -generated: "2019-11-09T11:00:38.596187143+05:30" +generated: 2020-01-14T22:24:06.554057983Z diff --git a/upstreamed/mediawiki/values.yaml b/upstreamed/mediawiki/values.yaml index 9e747a4f5..b419991c9 100644 --- a/upstreamed/mediawiki/values.yaml +++ b/upstreamed/mediawiki/values.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/mediawiki - tag: 1.33.1-debian-9-r25 + tag: 1.34.0-debian-9-r6 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -280,7 +280,7 @@ metrics: image: registry: docker.io repository: bitnami/apache-exporter - tag: 0.7.0-debian-9-r104 + tag: 0.7.0-debian-9-r163 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/upstreamed/mongodb/Chart.yaml b/upstreamed/mongodb/Chart.yaml index c3864a000..2766e7961 100644 --- a/upstreamed/mongodb/Chart.yaml +++ b/upstreamed/mongodb/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: mongodb -version: 7.6.3 +version: 7.7.0 appVersion: 4.0.14 description: NoSQL document-oriented database that stores JSON-like documents with dynamic schemas, simplifying the integration of data in content-driven applications. keywords: diff --git a/upstreamed/mongodb/README.md b/upstreamed/mongodb/README.md index 8f6865c8d..9ff354ce8 100644 --- a/upstreamed/mongodb/README.md +++ b/upstreamed/mongodb/README.md @@ -75,7 +75,7 @@ The following table lists the configurable parameters of the MongoDB chart and t | `mongodbDatabase` | Database to create | `nil` | | `mongodbEnableIPv6` | Switch to enable/disable IPv6 on MongoDB | `false` | | `mongodbDirectoryPerDB` | Switch to enable/disable DirectoryPerDB on MongoDB | `false` | -| `mongodbSystemLogVerbosity` | MongoDB systen log verbosity level | `0` | +| `mongodbSystemLogVerbosity` | MongoDB system log verbosity level | `0` | | `mongodbDisableSystemLog` | Whether to disable MongoDB system log or not | `false` | | `mongodbExtraFlags` | MongoDB additional command line flags | `[]` | | `service.name` | Kubernetes service name | `nil` | @@ -115,6 +115,12 @@ The following table lists the configurable parameters of the MongoDB chart and t | `securityContext.fsGroup` | Group ID for the container | `1001` | | `securityContext.runAsUser` | User ID for the container | `1001` | | `schedulerName` | Name of the k8s scheduler (other than default) | `nil` | +| `sidecars` | Add additional containers to pod | `[]` | +| `extraVolumes` | Add additional volumes to deployment | `[]` | +| `extraVolumeMounts` | Add additional volumes mounts to pod | `[]` | +| `sidecarsArbiter` | Add additional containers to arbiter pod | `[]` | +| `extraVolumesArbiter` | Add additional volumes to arbiter deployment | `[]` | +| `extraVolumeMountsArbiter` | Add additional volumes mounts to arbiter pod | `[]` | | `persistence.enabled` | Use a PVC to persist data | `true` | | `persistence.mountPath` | Path to mount the volume at | `/bitnami/mongodb` | | `persistence.subPath` | Subdirectory of the volume to mount at | `""` | diff --git a/upstreamed/mongodb/templates/deployment-standalone.yaml b/upstreamed/mongodb/templates/deployment-standalone.yaml index 93e413ed4..06d9375b8 100644 --- a/upstreamed/mongodb/templates/deployment-standalone.yaml +++ b/upstreamed/mongodb/templates/deployment-standalone.yaml @@ -188,6 +188,9 @@ spec: mountPath: /opt/bitnami/mongodb/conf/mongodb.conf subPath: mongodb.conf {{- end }} + {{- if .Values.extraVolumeMounts }} +{{ toYaml .Values.extraVolumeMounts | indent 8}} + {{- end }} resources: {{ toYaml .Values.resources | indent 10 }} {{- if .Values.metrics.enabled }} @@ -237,6 +240,9 @@ spec: {{- end }} resources: {{ toYaml .Values.metrics.resources | indent 10 }} +{{- end }} +{{- if .Values.sidecars }} +{{ toYaml .Values.sidecars | indent 6 }} {{- end }} volumes: {{- if (.Files.Glob "files/docker-entrypoint-initdb.d/*[sh|js|json]") }} @@ -262,4 +268,7 @@ spec: configMap: name: {{ template "mongodb.fullname" . }} {{- end }} - {{- end -}} + {{- if .Values.extraVolumes }} +{{ toYaml .Values.extraVolumes | indent 6}} + {{- end }} +{{- end -}} diff --git a/upstreamed/mongodb/templates/statefulset-arbiter-rs.yaml b/upstreamed/mongodb/templates/statefulset-arbiter-rs.yaml index 71a74f630..9b7169e96 100644 --- a/upstreamed/mongodb/templates/statefulset-arbiter-rs.yaml +++ b/upstreamed/mongodb/templates/statefulset-arbiter-rs.yaml @@ -168,10 +168,20 @@ spec: {{- end }} resources: {{ toYaml .Values.resourcesArbiter | indent 12 }} +{{- if .Values.extraVolumeMountsArbiter }} + volumeMounts: +{{ toYaml .Values.extraVolumeMountsArbiter | indent 12}} +{{- end }} +{{- if .Values.sidecarsArbiter }} +{{ toYaml .Values.sidecarsArbiter | indent 8 }} +{{- end }} volumes: {{- if .Values.configmap }} - name: config configMap: name: {{ template "mongodb.fullname" . }} {{- end }} + {{- if .Values.extraVolumesArbiter }} +{{ toYaml .Values.extraVolumesArbiter | indent 8 }} + {{- end }} {{- end }} diff --git a/upstreamed/mongodb/templates/statefulset-primary-rs.yaml b/upstreamed/mongodb/templates/statefulset-primary-rs.yaml index 854a954b0..a6f585c41 100644 --- a/upstreamed/mongodb/templates/statefulset-primary-rs.yaml +++ b/upstreamed/mongodb/templates/statefulset-primary-rs.yaml @@ -208,6 +208,9 @@ spec: mountPath: /opt/bitnami/mongodb/conf/mongodb.conf subPath: mongodb.conf {{- end }} + {{- if .Values.extraVolumeMounts }} +{{ toYaml .Values.extraVolumeMounts | indent 12}} + {{- end }} resources: {{ toYaml .Values.resources | indent 12 }} {{- if .Values.metrics.enabled }} @@ -257,6 +260,9 @@ spec: {{- end }} resources: {{ toYaml .Values.metrics.resources | indent 12 }} +{{- end }} +{{- if .Values.sidecars }} +{{ toYaml .Values.sidecars | indent 8 }} {{- end }} volumes: {{- if (.Files.Glob "files/docker-entrypoint-initdb.d/*[sh|js|json]") }} @@ -274,6 +280,9 @@ spec: configMap: name: {{ template "mongodb.fullname" . }} {{- end }} + {{- if .Values.extraVolumes }} +{{ toYaml .Values.extraVolumes | indent 8}} + {{- end }} {{- if .Values.persistence.enabled }} volumeClaimTemplates: - metadata: diff --git a/upstreamed/mongodb/templates/statefulset-secondary-rs.yaml b/upstreamed/mongodb/templates/statefulset-secondary-rs.yaml index a936663ce..0b94e90a6 100644 --- a/upstreamed/mongodb/templates/statefulset-secondary-rs.yaml +++ b/upstreamed/mongodb/templates/statefulset-secondary-rs.yaml @@ -192,6 +192,9 @@ spec: mountPath: /opt/bitnami/mongodb/conf/mongodb.conf subPath: mongodb.conf {{- end }} + {{- if .Values.extraVolumeMounts }} +{{ toYaml .Values.extraVolumeMounts | indent 12}} + {{- end }} resources: {{ toYaml .Values.resources | indent 12 }} {{- if .Values.metrics.enabled }} @@ -241,6 +244,9 @@ spec: {{- end }} resources: {{ toYaml .Values.metrics.resources | indent 12 }} +{{- end }} +{{- if .Values.sidecars }} +{{ toYaml .Values.sidecars | indent 8 }} {{- end }} volumes: {{- if .Values.configmap }} @@ -248,6 +254,9 @@ spec: configMap: name: {{ template "mongodb.fullname" . }} {{- end }} + {{- if .Values.extraVolumes }} +{{ toYaml .Values.extraVolumes | indent 8}} + {{- end }} {{- if .Values.persistence.enabled }} volumeClaimTemplates: - metadata: diff --git a/upstreamed/mongodb/values-production.yaml b/upstreamed/mongodb/values-production.yaml index 981741b35..4472989c1 100644 --- a/upstreamed/mongodb/values-production.yaml +++ b/upstreamed/mongodb/values-production.yaml @@ -18,7 +18,7 @@ image: ## Bitnami MongoDB image tag ## ref: https://hub.docker.com/r/bitnami/mongodb/tags/ ## - tag: 4.0.14-debian-9-r0 + tag: 4.0.14-debian-9-r24 ## Specify a imagePullPolicy ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images ## @@ -229,6 +229,45 @@ affinityArbiter: {} ## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ tolerations: [] +## Add sidecars to the pod +## +## For example: +## sidecars: +## - name: your-image-name +## image: your-image +## imagePullPolicy: Always +## ports: +## - name: portname +## containerPort: 1234 +sidecars: [] +## Array to add extra volumes +## +extraVolumes: [] +## Array to add extra mounts (normally used with extraVolumes) +## +extraVolumeMounts: [] + +## Add sidecars to the arbiter pod +# used only when replica set is enabled +## +## For example: +## sidecars: +## - name: your-image-name +## image: your-image +## imagePullPolicy: Always +## ports: +## - name: portname +## containerPort: 1234 +sidecarsArbiter: [] +## Array to add extra volumes to the arbiter +# used only when replica set is enabled +## +extraVolumesArbiter: [] +## Array to add extra mounts (normally used with extraVolumes) to the arbiter +# used only when replica set is enabled +## +extraVolumeMountsArbiter: [] + ## updateStrategy for MongoDB Primary, Secondary and Arbitrer statefulsets ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies updateStrategy: @@ -395,7 +434,7 @@ metrics: image: registry: docker.io repository: bitnami/mongodb-exporter - tag: 0.10.0-debian-9-r77 + tag: 0.10.0-debian-9-r104 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/upstreamed/mongodb/values.yaml b/upstreamed/mongodb/values.yaml index 67bd1a178..4c68c3173 100644 --- a/upstreamed/mongodb/values.yaml +++ b/upstreamed/mongodb/values.yaml @@ -18,7 +18,7 @@ image: ## Bitnami MongoDB image tag ## ref: https://hub.docker.com/r/bitnami/mongodb/tags/ ## - tag: 4.0.14-debian-9-r0 + tag: 4.0.14-debian-9-r24 ## Specify a imagePullPolicy ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images ## @@ -236,6 +236,45 @@ tolerations: [] updateStrategy: type: RollingUpdate +## Add sidecars to the pod +## +## For example: +## sidecars: +## - name: your-image-name +## image: your-image +## imagePullPolicy: Always +## ports: +## - name: portname +## containerPort: 1234 +sidecars: [] +## Array to add extra volumes +## +extraVolumes: [] +## Array to add extra mounts (normally used with extraVolumes) +## +extraVolumeMounts: [] + +## Add sidecars to the arbiter pod +# used only when replica set is enabled +## +## For example: +## sidecars: +## - name: your-image-name +## image: your-image +## imagePullPolicy: Always +## ports: +## - name: portname +## containerPort: 1234 +sidecarsArbiter: [] +## Array to add extra volumes to the arbiter +# used only when replica set is enabled +## +extraVolumesArbiter: [] +## Array to add extra mounts (normally used with extraVolumes) to the arbiter +# used only when replica set is enabled +## +extraVolumeMountsArbiter: [] + ## Enable persistence using Persistent Volume Claims ## ref: http://kubernetes.io/docs/user-guide/persistent-volumes/ ## @@ -397,7 +436,7 @@ metrics: image: registry: docker.io repository: bitnami/mongodb-exporter - tag: 0.10.0-debian-9-r77 + tag: 0.10.0-debian-9-r104 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/upstreamed/moodle/Chart.yaml b/upstreamed/moodle/Chart.yaml index b32a6dc03..47e31f64f 100644 --- a/upstreamed/moodle/Chart.yaml +++ b/upstreamed/moodle/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: moodle -version: 7.0.4 -appVersion: 3.8.0 +version: 7.0.7 +appVersion: 3.8.1 description: Moodle is a learning platform designed to provide educators, administrators and learners with a single robust, secure and integrated system to create personalised learning environments keywords: - moodle diff --git a/upstreamed/moodle/requirements.lock b/upstreamed/moodle/requirements.lock index a8f6aa78f..714fb8a18 100644 --- a/upstreamed/moodle/requirements.lock +++ b/upstreamed/moodle/requirements.lock @@ -1,6 +1,6 @@ dependencies: - name: mariadb repository: https://kubernetes-charts.storage.googleapis.com/ - version: 7.0.1 + version: 7.3.3 digest: sha256:cd64413a4a697ccf85c0091e9c55cdc5876938ddced84c05d37c57ff9abc5864 -generated: 2019-11-13T17:03:20.422728056Z +generated: 2020-01-14T22:26:18.341829377Z diff --git a/upstreamed/moodle/values.yaml b/upstreamed/moodle/values.yaml index d4559a2fa..bd87d2ac1 100644 --- a/upstreamed/moodle/values.yaml +++ b/upstreamed/moodle/values.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/moodle - tag: 3.8.0-debian-9-r0 + tag: 3.8.1-debian-9-r4 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -295,7 +295,7 @@ metrics: image: registry: docker.io repository: bitnami/apache-exporter - tag: 0.7.0-debian-9-r112 + tag: 0.7.0-debian-9-r163 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/upstreamed/nats/Chart.yaml b/upstreamed/nats/Chart.yaml index e4ac3166a..bd5051c75 100644 --- a/upstreamed/nats/Chart.yaml +++ b/upstreamed/nats/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: nats -version: 4.2.7 +version: 4.2.10 appVersion: 2.1.2 description: An open-source, cloud-native messaging system keywords: diff --git a/upstreamed/nats/templates/deployment.yaml b/upstreamed/nats/templates/deployment.yaml index dd5c5b24d..42ee4ff02 100644 --- a/upstreamed/nats/templates/deployment.yaml +++ b/upstreamed/nats/templates/deployment.yaml @@ -137,8 +137,7 @@ spec: - name: metrics image: {{ template "nats.metrics.image" . }} imagePullPolicy: {{ .Values.metrics.image.pullPolicy | quote }} - args: -{{ toYaml .Values.metrics.args | indent 10 -}} + args: {{- toYaml .Values.metrics.args | nindent 10 }} - "http://localhost:{{ .Values.monitoring.service.port }}" ports: - name: metrics diff --git a/upstreamed/nats/templates/statefulset.yaml b/upstreamed/nats/templates/statefulset.yaml index b1f4b4d04..f148ff126 100644 --- a/upstreamed/nats/templates/statefulset.yaml +++ b/upstreamed/nats/templates/statefulset.yaml @@ -143,8 +143,7 @@ spec: - name: metrics image: {{ template "nats.metrics.image" . }} imagePullPolicy: {{ .Values.metrics.image.pullPolicy | quote }} - args: -{{ toYaml .Values.metrics.args | indent 10 -}} + args: {{- toYaml .Values.metrics.args | nindent 10 }} - "http://localhost:{{ .Values.monitoring.service.port }}" ports: - name: metrics diff --git a/upstreamed/nats/values-production.yaml b/upstreamed/nats/values-production.yaml index 4f739f1b2..8a9040326 100644 --- a/upstreamed/nats/values-production.yaml +++ b/upstreamed/nats/values-production.yaml @@ -13,7 +13,7 @@ image: registry: docker.io repository: bitnami/nats - tag: 2.1.2-debian-9-r0 + tag: 2.1.2-debian-9-r43 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -302,7 +302,7 @@ metrics: image: registry: docker.io repository: bitnami/nats-exporter - tag: 0.6.0-debian-9-r71 + tag: 0.6.0-debian-9-r126 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/upstreamed/nats/values.yaml b/upstreamed/nats/values.yaml index 021b0868c..0c281c6c0 100644 --- a/upstreamed/nats/values.yaml +++ b/upstreamed/nats/values.yaml @@ -13,7 +13,7 @@ image: registry: docker.io repository: bitnami/nats - tag: 2.1.2-debian-9-r0 + tag: 2.1.2-debian-9-r43 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -302,7 +302,7 @@ metrics: image: registry: docker.io repository: bitnami/nats-exporter - tag: 0.6.0-debian-9-r71 + tag: 0.6.0-debian-9-r126 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/upstreamed/odoo/Chart.yaml b/upstreamed/odoo/Chart.yaml index e7ef405e4..46f5e2cb2 100644 --- a/upstreamed/odoo/Chart.yaml +++ b/upstreamed/odoo/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: odoo -version: 12.0.5 +version: 12.0.6 appVersion: 12.0.20191215 description: A suite of web based open source business apps. home: https://www.odoo.com/ diff --git a/upstreamed/odoo/values.yaml b/upstreamed/odoo/values.yaml index 89b668b59..d79bf2719 100644 --- a/upstreamed/odoo/values.yaml +++ b/upstreamed/odoo/values.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/odoo - tag: 12.0.20191215-debian-9-r9 + tag: 12.0.20191215-debian-9-r26 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images diff --git a/upstreamed/opencart/Chart.yaml b/upstreamed/opencart/Chart.yaml index dd4e29586..4b8fd7288 100644 --- a/upstreamed/opencart/Chart.yaml +++ b/upstreamed/opencart/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: opencart -version: 7.0.1 +version: 7.0.3 appVersion: 3.0.3-2 description: A free and open source e-commerce platform for online merchants. It provides a professional and reliable foundation for a successful online store. keywords: diff --git a/upstreamed/opencart/requirements.lock b/upstreamed/opencart/requirements.lock index c75dd5a76..ad0d4f8c0 100644 --- a/upstreamed/opencart/requirements.lock +++ b/upstreamed/opencart/requirements.lock @@ -1,6 +1,6 @@ dependencies: - name: mariadb repository: https://kubernetes-charts.storage.googleapis.com/ - version: 7.0.1 + version: 7.3.3 digest: sha256:cd64413a4a697ccf85c0091e9c55cdc5876938ddced84c05d37c57ff9abc5864 -generated: 2019-11-13T14:53:02.96225082Z +generated: 2020-01-15T02:45:28.28599945Z diff --git a/upstreamed/opencart/values.yaml b/upstreamed/opencart/values.yaml index 5dfecd8c9..235a6a40c 100644 --- a/upstreamed/opencart/values.yaml +++ b/upstreamed/opencart/values.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/opencart - tag: 3.0.3-2-debian-9-r169 + tag: 3.0.3-2-debian-9-r207 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -250,7 +250,7 @@ metrics: image: registry: docker.io repository: bitnami/apache-exporter - tag: 0.7.0-debian-9-r108 + tag: 0.7.0-debian-9-r163 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/upstreamed/orangehrm/Chart.yaml b/upstreamed/orangehrm/Chart.yaml index 90b1e2831..b5005443c 100644 --- a/upstreamed/orangehrm/Chart.yaml +++ b/upstreamed/orangehrm/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: orangehrm -version: 7.0.1 +version: 7.0.3 appVersion: 4.3.4-0 description: OrangeHRM is a free HR management system that offers a wealth of modules to suit the needs of your business. diff --git a/upstreamed/orangehrm/requirements.lock b/upstreamed/orangehrm/requirements.lock index 8d6222c44..6eee74062 100644 --- a/upstreamed/orangehrm/requirements.lock +++ b/upstreamed/orangehrm/requirements.lock @@ -1,6 +1,6 @@ dependencies: - name: mariadb repository: https://kubernetes-charts.storage.googleapis.com/ - version: 7.0.1 + version: 7.3.3 digest: sha256:cd64413a4a697ccf85c0091e9c55cdc5876938ddced84c05d37c57ff9abc5864 -generated: 2019-11-13T17:58:05.059813316Z +generated: 2020-01-14T19:33:51.719751043Z diff --git a/upstreamed/orangehrm/values.yaml b/upstreamed/orangehrm/values.yaml index 01294fc9a..20b22dd2d 100644 --- a/upstreamed/orangehrm/values.yaml +++ b/upstreamed/orangehrm/values.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/orangehrm - tag: 4.3.4-0-debian-9-r0 + tag: 4.3.4-0-debian-9-r44 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -239,7 +239,7 @@ metrics: image: registry: docker.io repository: bitnami/apache-exporter - tag: 0.7.0-debian-9-r108 + tag: 0.7.0-debian-9-r163 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/upstreamed/osclass/Chart.yaml b/upstreamed/osclass/Chart.yaml index 847a11dc5..519f3370e 100644 --- a/upstreamed/osclass/Chart.yaml +++ b/upstreamed/osclass/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: osclass -version: 7.0.1 +version: 7.0.3 appVersion: 3.7.4 description: Osclass is a php script that allows you to quickly create and manage your own free classifieds site. diff --git a/upstreamed/osclass/requirements.lock b/upstreamed/osclass/requirements.lock index 50e9167b5..9715c155f 100644 --- a/upstreamed/osclass/requirements.lock +++ b/upstreamed/osclass/requirements.lock @@ -1,6 +1,6 @@ dependencies: - name: mariadb repository: https://kubernetes-charts.storage.googleapis.com/ - version: 7.0.1 + version: 7.3.3 digest: sha256:cd64413a4a697ccf85c0091e9c55cdc5876938ddced84c05d37c57ff9abc5864 -generated: 2019-11-13T15:00:21.447967318Z +generated: 2020-01-14T23:45:29.516933885Z diff --git a/upstreamed/osclass/values.yaml b/upstreamed/osclass/values.yaml index 54cbdc40a..65e24e121 100644 --- a/upstreamed/osclass/values.yaml +++ b/upstreamed/osclass/values.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/osclass - tag: 3.7.4-debian-9-r394 + tag: 3.7.4-debian-9-r441 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -265,7 +265,7 @@ metrics: image: registry: docker.io repository: bitnami/apache-exporter - tag: 0.7.0-debian-9-r108 + tag: 0.7.0-debian-9-r163 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/upstreamed/owncloud/Chart.yaml b/upstreamed/owncloud/Chart.yaml index a627228c1..fe3309e98 100644 --- a/upstreamed/owncloud/Chart.yaml +++ b/upstreamed/owncloud/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: owncloud -version: 8.0.1 +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: diff --git a/upstreamed/owncloud/README.md b/upstreamed/owncloud/README.md index bd1f7ec1a..d1a556ae5 100644 --- a/upstreamed/owncloud/README.md +++ b/upstreamed/owncloud/README.md @@ -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 | `{}` | diff --git a/upstreamed/owncloud/requirements.lock b/upstreamed/owncloud/requirements.lock index fe5766679..cd4953f03 100644 --- a/upstreamed/owncloud/requirements.lock +++ b/upstreamed/owncloud/requirements.lock @@ -1,6 +1,6 @@ dependencies: - name: mariadb repository: https://kubernetes-charts.storage.googleapis.com/ - version: 7.3.0 + version: 7.3.3 digest: sha256:cd64413a4a697ccf85c0091e9c55cdc5876938ddced84c05d37c57ff9abc5864 -generated: 2019-12-10T14:08:15.205065484Z +generated: 2020-01-14T23:23:29.129838961Z diff --git a/upstreamed/owncloud/templates/deployment.yaml b/upstreamed/owncloud/templates/deployment.yaml index c162aad50..971b1f8c4 100644 --- a/upstreamed/owncloud/templates/deployment.yaml +++ b/upstreamed/owncloud/templates/deployment.yaml @@ -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: diff --git a/upstreamed/owncloud/values.yaml b/upstreamed/owncloud/values.yaml index 8a78e0b90..d29132e42 100644 --- a/upstreamed/owncloud/values.yaml +++ b/upstreamed/owncloud/values.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/owncloud - tag: 10.3.2-debian-9-r0 + tag: 10.3.2-debian-9-r27 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -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/ ## @@ -243,7 +254,7 @@ metrics: image: registry: docker.io repository: bitnami/apache-exporter - tag: 0.7.0-debian-9-r135 + tag: 0.7.0-debian-9-r163 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/upstreamed/parse/Chart.yaml b/upstreamed/parse/Chart.yaml index a5184ae62..bf43713e7 100644 --- a/upstreamed/parse/Chart.yaml +++ b/upstreamed/parse/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: parse -version: 10.3.1 +version: 10.3.2 appVersion: 3.10.0 description: Parse is a platform that enables users to add a scalable and powerful backend to launch a full-featured app for iOS, Android, JavaScript, Windows, Unity, and more. keywords: diff --git a/upstreamed/parse/requirements.lock b/upstreamed/parse/requirements.lock index 8bc5bd733..33abc13f7 100644 --- a/upstreamed/parse/requirements.lock +++ b/upstreamed/parse/requirements.lock @@ -1,6 +1,6 @@ dependencies: - name: mongodb repository: https://kubernetes-charts.storage.googleapis.com/ - version: 7.6.3 + version: 7.6.4 digest: sha256:380fe3c8514cc2d19b28e5b1a79d83961fa9f9d7f438eba85425dbf8c0b89bbd -generated: 2020-01-08T19:16:52.920955504Z +generated: 2020-01-14T23:09:41.318528424Z diff --git a/upstreamed/parse/values.yaml b/upstreamed/parse/values.yaml index 2ed33b9e6..7985489f3 100644 --- a/upstreamed/parse/values.yaml +++ b/upstreamed/parse/values.yaml @@ -63,7 +63,7 @@ server: image: registry: docker.io repository: bitnami/parse - tag: 3.10.0-debian-9-r0 + tag: 3.10.0-debian-9-r5 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -186,7 +186,7 @@ dashboard: image: registry: docker.io repository: bitnami/parse-dashboard - tag: 2.0.5-debian-9-r69 + tag: 2.0.5-debian-9-r74 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images diff --git a/upstreamed/phabricator/Chart.yaml b/upstreamed/phabricator/Chart.yaml index 5cbe0077a..20edcdfc8 100644 --- a/upstreamed/phabricator/Chart.yaml +++ b/upstreamed/phabricator/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: phabricator -version: 9.0.4 +version: 9.0.6 appVersion: 2019.50.0 description: Collection of open source web applications that help software companies build better software. keywords: diff --git a/upstreamed/phabricator/requirements.lock b/upstreamed/phabricator/requirements.lock index 18f26e8c7..50ac019fc 100644 --- a/upstreamed/phabricator/requirements.lock +++ b/upstreamed/phabricator/requirements.lock @@ -1,6 +1,6 @@ dependencies: - name: mariadb repository: https://kubernetes-charts.storage.googleapis.com/ - version: 7.3.1 + version: 7.3.3 digest: sha256:22662ca4b6b22e2476dbffb98118b0369277a68918a0129d17bf34bd66100653 -generated: 2019-12-13T23:03:16.528997564Z +generated: 2020-01-14T21:30:07.667806818Z diff --git a/upstreamed/phabricator/values.yaml b/upstreamed/phabricator/values.yaml index 9c70c5381..49c5faffc 100644 --- a/upstreamed/phabricator/values.yaml +++ b/upstreamed/phabricator/values.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/phabricator - tag: 2019.50.0-debian-9-r0 + tag: 2019.50.0-debian-9-r26 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -228,7 +228,7 @@ metrics: image: registry: docker.io repository: bitnami/apache-exporter - tag: 0.7.0-debian-9-r137 + tag: 0.7.0-debian-9-r163 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/upstreamed/phpbb/Chart.yaml b/upstreamed/phpbb/Chart.yaml index a682695a6..b7474e9c3 100644 --- a/upstreamed/phpbb/Chart.yaml +++ b/upstreamed/phpbb/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: phpbb -version: 7.0.2 +version: 7.0.3 appVersion: 3.3.0 description: Community forum that supports the notion of users and groups, file attachments, full-text search, notifications and more. keywords: diff --git a/upstreamed/phpbb/requirements.lock b/upstreamed/phpbb/requirements.lock index 8d33b15be..c5aa7390e 100644 --- a/upstreamed/phpbb/requirements.lock +++ b/upstreamed/phpbb/requirements.lock @@ -1,6 +1,6 @@ dependencies: - name: mariadb repository: https://kubernetes-charts.storage.googleapis.com/ - version: 7.3.1 + version: 7.3.3 digest: sha256:cd64413a4a697ccf85c0091e9c55cdc5876938ddced84c05d37c57ff9abc5864 -generated: 2020-01-09T04:15:42.004350465Z +generated: 2020-01-14T20:43:45.894562823Z diff --git a/upstreamed/phpbb/values.yaml b/upstreamed/phpbb/values.yaml index 3bb8c4774..232f36b89 100644 --- a/upstreamed/phpbb/values.yaml +++ b/upstreamed/phpbb/values.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/phpbb - tag: 3.3.0-debian-9-r3 + tag: 3.3.0-debian-9-r8 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -246,7 +246,7 @@ metrics: image: registry: docker.io repository: bitnami/apache-exporter - tag: 0.7.0-debian-9-r158 + tag: 0.7.0-debian-9-r163 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/upstreamed/phpmyadmin/Chart.yaml b/upstreamed/phpmyadmin/Chart.yaml index 8da17ca51..3a004e573 100644 --- a/upstreamed/phpmyadmin/Chart.yaml +++ b/upstreamed/phpmyadmin/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: phpmyadmin -version: 4.2.6 -appVersion: 4.9.4 +version: 4.2.9 +appVersion: 5.0.1 description: phpMyAdmin is an mysql administration frontend keywords: - mariadb diff --git a/upstreamed/phpmyadmin/templates/deployment.yaml b/upstreamed/phpmyadmin/templates/deployment.yaml index d5fa0cc1f..c034da6d8 100644 --- a/upstreamed/phpmyadmin/templates/deployment.yaml +++ b/upstreamed/phpmyadmin/templates/deployment.yaml @@ -76,11 +76,11 @@ spec: value: {{ ternary "yes" "no" .Values.db.enableSsl | quote }} {{- if .Values.db.enableSsl }} - name: DATABASE_SSL_KEY - value: "/certs/server_key.pem" + value: "/db_certs/server_key.pem" - name: DATABASE_SSL_CERT - value: "/certs/server_certificate.pem" + value: "/db_certs/server_certificate.pem" - name: DATABASE_SSL_CA - value: "/certs/ca_certificate.pem" + value: "/db_certs/ca_certificate.pem" {{- if .Values.db.ssl.ciphers }} - name: DATABASE_SSL_CIPHERS values: {{ .Values.db.ssl.ciphers | quote }} @@ -111,7 +111,7 @@ spec: {{- if .Values.db.enableSsl }} volumeMounts: - name: ssl-certs - mountPath: /certs + mountPath: /db_certs {{- end }} {{- if .Values.metrics.enabled }} - name: metrics diff --git a/upstreamed/phpmyadmin/values.yaml b/upstreamed/phpmyadmin/values.yaml index bb48c878b..105286b85 100644 --- a/upstreamed/phpmyadmin/values.yaml +++ b/upstreamed/phpmyadmin/values.yaml @@ -13,7 +13,7 @@ image: registry: docker.io repository: bitnami/phpmyadmin - tag: 4.9.4-debian-9-r0 + tag: 5.0.1-debian-9-r1 ## Specify a imagePullPolicy pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. @@ -159,7 +159,7 @@ metrics: image: registry: docker.io repository: bitnami/apache-exporter - tag: 0.7.0-debian-9-r157 + tag: 0.7.0-debian-9-r162 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/upstreamed/postgresql/Chart.yaml b/upstreamed/postgresql/Chart.yaml index 30d483d56..bdaca3cd4 100644 --- a/upstreamed/postgresql/Chart.yaml +++ b/upstreamed/postgresql/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: postgresql -version: 8.1.2 +version: 8.1.4 appVersion: 11.6.0 description: Chart for PostgreSQL, an object-relational database management system (ORDBMS) with an emphasis on extensibility and on standards-compliance. keywords: diff --git a/upstreamed/postgresql/values-production.yaml b/upstreamed/postgresql/values-production.yaml index 43508f3e6..510e2e5be 100644 --- a/upstreamed/postgresql/values-production.yaml +++ b/upstreamed/postgresql/values-production.yaml @@ -15,7 +15,7 @@ global: image: registry: docker.io repository: bitnami/postgresql - tag: 11.6.0-debian-9-r0 + tag: 11.6.0-debian-9-r48 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -431,7 +431,7 @@ metrics: image: registry: docker.io repository: bitnami/postgres-exporter - tag: 0.7.0-debian-9-r12 + tag: 0.8.0-debian-9-r40 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/upstreamed/postgresql/values.yaml b/upstreamed/postgresql/values.yaml index 0fc14b892..491477e0f 100644 --- a/upstreamed/postgresql/values.yaml +++ b/upstreamed/postgresql/values.yaml @@ -15,7 +15,7 @@ global: image: registry: docker.io repository: bitnami/postgresql - tag: 11.6.0-debian-9-r0 + tag: 11.6.0-debian-9-r48 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -439,7 +439,7 @@ metrics: image: registry: docker.io repository: bitnami/postgres-exporter - tag: 0.7.0-debian-9-r12 + tag: 0.8.0-debian-9-r40 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/upstreamed/prestashop/Chart.yaml b/upstreamed/prestashop/Chart.yaml index d9f1a6a55..926046017 100644 --- a/upstreamed/prestashop/Chart.yaml +++ b/upstreamed/prestashop/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: prestashop -version: 9.1.0 +version: 9.1.2 appVersion: 1.7.6-2 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: diff --git a/upstreamed/prestashop/requirements.lock b/upstreamed/prestashop/requirements.lock index 53a8df13e..29d72590e 100644 --- a/upstreamed/prestashop/requirements.lock +++ b/upstreamed/prestashop/requirements.lock @@ -1,6 +1,6 @@ dependencies: - name: mariadb repository: https://kubernetes-charts.storage.googleapis.com/ - version: 7.1.0 + version: 7.3.3 digest: sha256:cd64413a4a697ccf85c0091e9c55cdc5876938ddced84c05d37c57ff9abc5864 -generated: 2019-11-28T16:33:08.416619643Z +generated: 2020-01-14T23:10:06.845641401Z diff --git a/upstreamed/prestashop/values.yaml b/upstreamed/prestashop/values.yaml index 6e8da24b4..bc08b33f7 100644 --- a/upstreamed/prestashop/values.yaml +++ b/upstreamed/prestashop/values.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/prestashop - tag: 1.7.6-2-debian-9-r0 + tag: 1.7.6-2-debian-9-r37 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -126,7 +126,7 @@ mariadb: image: registry: docker.io repository: bitnami/mariadb - tag: 10.1.43-debian-9-r22 + tag: 10.1.43-debian-9-r60 ## Disable MariaDB replication replication: enabled: false @@ -303,7 +303,7 @@ metrics: image: registry: docker.io repository: bitnami/apache-exporter - tag: 0.7.0-debian-9-r125 + tag: 0.7.0-debian-9-r163 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/upstreamed/rabbitmq/Chart.yaml b/upstreamed/rabbitmq/Chart.yaml index e2c8f6f45..1177796c0 100644 --- a/upstreamed/rabbitmq/Chart.yaml +++ b/upstreamed/rabbitmq/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: rabbitmq -version: 6.16.0 +version: 6.16.3 appVersion: 3.8.2 description: Open source message broker software that implements the Advanced Message Queuing Protocol (AMQP) keywords: diff --git a/upstreamed/rabbitmq/values-production.yaml b/upstreamed/rabbitmq/values-production.yaml index fb9129fb1..ab6ce42ba 100644 --- a/upstreamed/rabbitmq/values-production.yaml +++ b/upstreamed/rabbitmq/values-production.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/rabbitmq - tag: 3.8.2-debian-9-r0 + tag: 3.8.2-debian-9-r35 ## set to true if you would like to see extra information on logs ## it turns BASH and NAMI debugging in minideb @@ -400,7 +400,7 @@ metrics: image: registry: docker.io repository: bitnami/rabbitmq-exporter - tag: 0.29.0-debian-9-r104 + tag: 0.29.0-debian-9-r139 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. @@ -419,7 +419,7 @@ metrics: resources: {} annotations: prometheus.io/scrape: "true" - prometheus.io/port: "9090" + prometheus.io/port: "9419" livenessProbe: enabled: true diff --git a/upstreamed/rabbitmq/values.yaml b/upstreamed/rabbitmq/values.yaml index c1217c67c..ff2f45f08 100644 --- a/upstreamed/rabbitmq/values.yaml +++ b/upstreamed/rabbitmq/values.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/rabbitmq - tag: 3.8.2-debian-9-r0 + tag: 3.8.2-debian-9-r35 ## set to true if you would like to see extra information on logs ## it turns BASH and NAMI debugging in minideb @@ -377,7 +377,7 @@ metrics: image: registry: docker.io repository: bitnami/rabbitmq-exporter - tag: 0.29.0-debian-9-r104 + tag: 0.29.0-debian-9-r139 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. @@ -400,7 +400,7 @@ metrics: resources: {} annotations: prometheus.io/scrape: "true" - prometheus.io/port: "9090" + prometheus.io/port: "9419" livenessProbe: enabled: true diff --git a/upstreamed/redis/Chart.yaml b/upstreamed/redis/Chart.yaml index b8a96affd..5e8d42cb7 100644 --- a/upstreamed/redis/Chart.yaml +++ b/upstreamed/redis/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: redis -version: 10.3.1 +version: 10.3.4 appVersion: 5.0.7 description: Open source, advanced key-value store. It is often referred to as a data structure server since keys can contain strings, hashes, lists, sets and sorted sets. keywords: diff --git a/upstreamed/redis/templates/NOTES.txt b/upstreamed/redis/templates/NOTES.txt index f3b46e1a5..4298d7037 100644 --- a/upstreamed/redis/templates/NOTES.txt +++ b/upstreamed/redis/templates/NOTES.txt @@ -54,7 +54,7 @@ To connect to your Redis server: kubectl run --namespace {{ .Release.Namespace }} {{ template "redis.fullname" . }}-client --rm --tty -i --restart='Never' \ {{ if .Values.usePassword }} --env REDIS_PASSWORD=$REDIS_PASSWORD \{{ end }} - {{- if and (.Values.networkPolicy.enabled) (not .Values.networkPolicy.allowExternal) }}--labels="{{ template "redis.name" . }}-client=true" \{{- end }} + {{- if and (.Values.networkPolicy.enabled) (not .Values.networkPolicy.allowExternal) }}--labels="{{ template "redis.fullname" . }}-client=true" \{{- end }} --image {{ template "redis.image" . }} -- bash 2. Connect using the Redis CLI: diff --git a/upstreamed/redis/values-production.yaml b/upstreamed/redis/values-production.yaml index e7ad9fe42..7fa2d6d23 100644 --- a/upstreamed/redis/values-production.yaml +++ b/upstreamed/redis/values-production.yaml @@ -18,7 +18,7 @@ image: ## Bitnami Redis image tag ## ref: https://github.com/bitnami/bitnami-docker-redis#supported-tags-and-respective-dockerfile-links ## - tag: 5.0.7-debian-9-r12 + tag: 5.0.7-debian-9-r50 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -60,7 +60,7 @@ sentinel: ## Bitnami Redis image tag ## ref: https://github.com/bitnami/bitnami-docker-redis-sentinel#supported-tags-and-respective-dockerfile-links ## - tag: 5.0.7-debian-9-r10 + tag: 5.0.7-debian-9-r44 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -472,7 +472,7 @@ metrics: image: registry: docker.io repository: bitnami/redis-exporter - tag: 1.3.4-debian-9-r15 + tag: 1.3.5-debian-9-r23 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/upstreamed/redis/values.yaml b/upstreamed/redis/values.yaml index 948be9bf0..e9efcca05 100644 --- a/upstreamed/redis/values.yaml +++ b/upstreamed/redis/values.yaml @@ -18,7 +18,7 @@ image: ## Bitnami Redis image tag ## ref: https://github.com/bitnami/bitnami-docker-redis#supported-tags-and-respective-dockerfile-links ## - tag: 5.0.7-debian-9-r12 + tag: 5.0.7-debian-9-r50 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -60,7 +60,7 @@ sentinel: ## Bitnami Redis image tag ## ref: https://github.com/bitnami/bitnami-docker-redis-sentinel#supported-tags-and-respective-dockerfile-links ## - tag: 5.0.7-debian-9-r10 + tag: 5.0.7-debian-9-r44 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -472,7 +472,7 @@ metrics: image: registry: docker.io repository: bitnami/redis-exporter - tag: 1.3.4-debian-9-r15 + tag: 1.3.5-debian-9-r23 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/upstreamed/redmine/Chart.yaml b/upstreamed/redmine/Chart.yaml index 7a94a4778..b43ca7768 100644 --- a/upstreamed/redmine/Chart.yaml +++ b/upstreamed/redmine/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: redmine -version: 14.1.1 -appVersion: 4.0.5 +version: 14.1.3 +appVersion: 4.1.0 description: A flexible project management web application. keywords: - redmine diff --git a/upstreamed/redmine/requirements.lock b/upstreamed/redmine/requirements.lock index 416986948..53f8ef2d6 100644 --- a/upstreamed/redmine/requirements.lock +++ b/upstreamed/redmine/requirements.lock @@ -1,9 +1,9 @@ dependencies: - name: mariadb repository: https://kubernetes-charts.storage.googleapis.com/ - version: 7.3.0 + version: 7.3.3 - name: postgresql repository: https://kubernetes-charts.storage.googleapis.com/ - version: 8.0.0 + version: 8.1.3 digest: sha256:35e88b466a4a45bf4e8c4a69a2738788dbc73168a37218e524c7fe3a18650e9e -generated: 2019-12-11T16:10:54.184630823Z +generated: 2020-01-14T21:58:21.744682388Z diff --git a/upstreamed/redmine/values.yaml b/upstreamed/redmine/values.yaml index 93277cf0e..03e1d894f 100644 --- a/upstreamed/redmine/values.yaml +++ b/upstreamed/redmine/values.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/redmine - tag: 4.0.5-debian-9-r28 + tag: 4.1.0-debian-9-r17 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images diff --git a/upstreamed/suitecrm/Chart.yaml b/upstreamed/suitecrm/Chart.yaml index 215f43d1d..76779398f 100644 --- a/upstreamed/suitecrm/Chart.yaml +++ b/upstreamed/suitecrm/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: suitecrm -version: 8.0.2 +version: 8.0.3 appVersion: 7.11.10 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: diff --git a/upstreamed/suitecrm/requirements.lock b/upstreamed/suitecrm/requirements.lock index 1752c3171..7a32e3be7 100644 --- a/upstreamed/suitecrm/requirements.lock +++ b/upstreamed/suitecrm/requirements.lock @@ -1,6 +1,6 @@ dependencies: - name: mariadb repository: https://kubernetes-charts.storage.googleapis.com/ - version: 7.3.1 + version: 7.3.3 digest: sha256:cd64413a4a697ccf85c0091e9c55cdc5876938ddced84c05d37c57ff9abc5864 -generated: 2020-01-08T17:31:55.151118291Z +generated: 2020-01-14T19:33:39.080617722Z diff --git a/upstreamed/suitecrm/values.yaml b/upstreamed/suitecrm/values.yaml index b2c46f372..171ee8cca 100644 --- a/upstreamed/suitecrm/values.yaml +++ b/upstreamed/suitecrm/values.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/suitecrm - tag: 7.11.10-debian-9-r37 + tag: 7.11.10-debian-9-r42 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -267,7 +267,7 @@ metrics: image: registry: docker.io repository: bitnami/apache-exporter - tag: 0.7.0-debian-9-r158 + tag: 0.7.0-debian-9-r163 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/upstreamed/testlink/Chart.yaml b/upstreamed/testlink/Chart.yaml index 0b80014e9..55664e603 100644 --- a/upstreamed/testlink/Chart.yaml +++ b/upstreamed/testlink/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: testlink -version: 7.0.1 +version: 7.0.3 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 diff --git a/upstreamed/testlink/requirements.lock b/upstreamed/testlink/requirements.lock index f16579d73..35efb41e7 100644 --- a/upstreamed/testlink/requirements.lock +++ b/upstreamed/testlink/requirements.lock @@ -1,6 +1,6 @@ dependencies: - name: mariadb repository: https://kubernetes-charts.storage.googleapis.com/ - version: 7.0.1 + version: 7.3.3 digest: sha256:cd64413a4a697ccf85c0091e9c55cdc5876938ddced84c05d37c57ff9abc5864 -generated: 2019-11-13T19:08:33.648962408Z +generated: 2020-01-14T20:59:22.425819807Z diff --git a/upstreamed/testlink/values.yaml b/upstreamed/testlink/values.yaml index 68cf1c994..69da08d8e 100644 --- a/upstreamed/testlink/values.yaml +++ b/upstreamed/testlink/values.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/testlink - tag: 1.9.19-debian-9-r246 + tag: 1.9.19-debian-9-r290 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -264,7 +264,7 @@ metrics: image: registry: docker.io repository: bitnami/apache-exporter - tag: 0.7.0-debian-9-r108 + tag: 0.7.0-debian-9-r163 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/upstreamed/wordpress/Chart.yaml b/upstreamed/wordpress/Chart.yaml index 4709add16..d9d5deccd 100755 --- a/upstreamed/wordpress/Chart.yaml +++ b/upstreamed/wordpress/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: wordpress -version: 8.1.0 +version: 8.1.1 appVersion: 5.3.2 description: Web publishing platform for building blogs and websites. icon: https://bitnami.com/assets/stacks/wordpress/img/wordpress-stack-220x234.png diff --git a/upstreamed/wordpress/requirements.lock b/upstreamed/wordpress/requirements.lock index 441408996..77bd043c9 100644 --- a/upstreamed/wordpress/requirements.lock +++ b/upstreamed/wordpress/requirements.lock @@ -1,6 +1,6 @@ dependencies: - name: mariadb repository: https://kubernetes-charts.storage.googleapis.com/ - version: 7.3.1 + version: 7.3.3 digest: sha256:0a5be71f27bb4258b63df284f5006ab452666b4c3125a1c15b8753e71ec8c118 -generated: 2019-12-13T02:09:46.04124621Z +generated: 2020-01-14T21:56:05.380400088Z diff --git a/upstreamed/wordpress/values-production.yaml b/upstreamed/wordpress/values-production.yaml index 11a02a886..a3b4ce9ad 100644 --- a/upstreamed/wordpress/values-production.yaml +++ b/upstreamed/wordpress/values-production.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/wordpress - tag: 5.3.2-debian-9-r0 + tag: 5.3.2-debian-9-r25 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -382,7 +382,7 @@ metrics: image: registry: docker.io repository: bitnami/apache-exporter - tag: 0.7.0-debian-9-r142 + tag: 0.7.0-debian-9-r163 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. diff --git a/upstreamed/wordpress/values.yaml b/upstreamed/wordpress/values.yaml index 181a91976..20469870f 100644 --- a/upstreamed/wordpress/values.yaml +++ b/upstreamed/wordpress/values.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/wordpress - tag: 5.3.2-debian-9-r0 + tag: 5.3.2-debian-9-r25 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -377,7 +377,7 @@ metrics: image: registry: docker.io repository: bitnami/apache-exporter - tag: 0.7.0-debian-9-r142 + tag: 0.7.0-debian-9-r163 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace.