You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ko...@apache.org on 2022/01/07 15:49:16 UTC

[couchdb-helm] branch roll-deployment-on-secret-change created (now 1c846b2)

This is an automated email from the ASF dual-hosted git repository.

kocolosk pushed a change to branch roll-deployment-on-secret-change
in repository https://gitbox.apache.org/repos/asf/couchdb-helm.git.


      at 1c846b2  Bump chart version and publish

This branch includes the following new commits:

     new fe57a73  Roll deployment if auth secrets change
     new 7d9939f  Update to CouchDB 3.2.1
     new 1c846b2  Bump chart version and publish

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


[couchdb-helm] 03/03: Bump chart version and publish

Posted by ko...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

kocolosk pushed a commit to branch roll-deployment-on-secret-change
in repository https://gitbox.apache.org/repos/asf/couchdb-helm.git

commit 1c846b2a7d784ce0d96a444a780796be23643304
Author: Adam Kocoloski <ko...@apache.org>
AuthorDate: Fri Jan 7 10:47:46 2022 -0500

    Bump chart version and publish
---
 couchdb/Chart.yaml     |   2 +-
 docs/couchdb-3.4.2.tgz | Bin 0 -> 9907 bytes
 docs/index.yaml        |  25 ++++++++++++++++++++++++-
 3 files changed, 25 insertions(+), 2 deletions(-)

diff --git a/couchdb/Chart.yaml b/couchdb/Chart.yaml
index 6dc0dc2..adc4897 100644
--- a/couchdb/Chart.yaml
+++ b/couchdb/Chart.yaml
@@ -1,6 +1,6 @@
 apiVersion: v1
 name: couchdb
-version: 3.4.1
+version: 3.4.2
 appVersion: 3.2.1
 description: A database featuring seamless multi-master sync, that scales from
   big data to mobile, with an intuitive HTTP/JSON API and designed for
diff --git a/docs/couchdb-3.4.2.tgz b/docs/couchdb-3.4.2.tgz
new file mode 100644
index 0000000..0e0ab61
Binary files /dev/null and b/docs/couchdb-3.4.2.tgz differ
diff --git a/docs/index.yaml b/docs/index.yaml
index 1d94f64..f54faa8 100644
--- a/docs/index.yaml
+++ b/docs/index.yaml
@@ -2,6 +2,29 @@ apiVersion: v1
 entries:
   couchdb:
   - apiVersion: v1
+    appVersion: 3.2.1
+    created: "2022-01-07T10:47:12.789202-05:00"
+    description: A database featuring seamless multi-master sync, that scales from
+      big data to mobile, with an intuitive HTTP/JSON API and designed for reliability.
+    digest: a23f0a7a07ba62f4cd13859815d17a074b7b6578f2c0800c9b17fc73db9b1f20
+    home: https://couchdb.apache.org/
+    icon: http://couchdb.apache.org/CouchDB-visual-identity/logo/CouchDB-couch-symbol.svg
+    keywords:
+    - couchdb
+    - database
+    - nosql
+    maintainers:
+    - email: kocolosk@apache.org
+      name: kocolosk
+    - email: willholley@apache.org
+      name: willholley
+    name: couchdb
+    sources:
+    - https://github.com/apache/couchdb-docker
+    urls:
+    - https://apache.github.io/couchdb-helm/couchdb-3.4.2.tgz
+    version: 3.4.2
+  - apiVersion: v1
     appVersion: 3.2.0
     created: "2022-01-07T09:59:37.621788-05:00"
     description: A database featuring seamless multi-master sync, that scales from
@@ -323,4 +346,4 @@ entries:
     urls:
     - https://apache.github.io/couchdb-helm/couchdb-2.2.0.tgz
     version: 2.2.0
-generated: "2022-01-07T09:59:37.620754-05:00"
+generated: "2022-01-07T10:47:12.788085-05:00"

[couchdb-helm] 01/03: Roll deployment if auth secrets change

Posted by ko...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

kocolosk pushed a commit to branch roll-deployment-on-secret-change
in repository https://gitbox.apache.org/repos/asf/couchdb-helm.git

commit fe57a73677af7515fd815641806befd1a51ea476
Author: Adam Kocoloski <ko...@apache.org>
AuthorDate: Fri Jan 7 10:17:14 2022 -0500

    Roll deployment if auth secrets change
    
    Previously we introduced the feature to roll the pods of the CouchDB
    deployment if general config settings changed. This patch extends that
    behavior to changes in authentication secrets; i.e., server admin
    credentials and the cookie auth secret.
---
 couchdb/templates/statefulset.yaml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/couchdb/templates/statefulset.yaml b/couchdb/templates/statefulset.yaml
index 3506f89..7df607c 100644
--- a/couchdb/templates/statefulset.yaml
+++ b/couchdb/templates/statefulset.yaml
@@ -20,6 +20,7 @@ spec:
 {{ include "couchdb.ss.selector" . | indent 8 }}
       annotations:
         checksum/config: {{ include (print $.Template.BasePath "/configmap.yaml") . | sha256sum }}
+        checksum/secret: {{ include (print $.Template.BasePath "/secrets.yaml") . | sha256sum }}
 {{- if .Values.annotations }}
 {{ toYaml .Values.annotations | indent 8 }}
 {{- end }}

[couchdb-helm] 02/03: Update to CouchDB 3.2.1

Posted by ko...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

kocolosk pushed a commit to branch roll-deployment-on-secret-change
in repository https://gitbox.apache.org/repos/asf/couchdb-helm.git

commit 7d9939fe854fc7d87febdbb69e9050b753dddce0
Author: Adam Kocoloski <ko...@apache.org>
AuthorDate: Fri Jan 7 10:46:58 2022 -0500

    Update to CouchDB 3.2.1
---
 couchdb/Chart.yaml  | 2 +-
 couchdb/README.md   | 2 +-
 couchdb/values.yaml | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/couchdb/Chart.yaml b/couchdb/Chart.yaml
index 1e9c6d1..6dc0dc2 100644
--- a/couchdb/Chart.yaml
+++ b/couchdb/Chart.yaml
@@ -1,7 +1,7 @@
 apiVersion: v1
 name: couchdb
 version: 3.4.1
-appVersion: 3.2.0
+appVersion: 3.2.1
 description: A database featuring seamless multi-master sync, that scales from
   big data to mobile, with an intuitive HTTP/JSON API and designed for
   reliability.
diff --git a/couchdb/README.md b/couchdb/README.md
index 037641d..0ecbabd 100644
--- a/couchdb/README.md
+++ b/couchdb/README.md
@@ -168,7 +168,7 @@ A variety of other parameters are also configurable. See the comments in the
 | `adminHash`                          |                                        |
 | `cookieAuthSecret`                   | auto-generated                         |
 | `image.repository`                   | couchdb                                |
-| `image.tag`                          | 3.2.0                                  |
+| `image.tag`                          | 3.2.1                                  |
 | `image.pullPolicy`                   | IfNotPresent                           |
 | `searchImage.repository`             | kocolosk/couchdb-search                |
 | `searchImage.tag`                    | 0.1.0                                  |
diff --git a/couchdb/values.yaml b/couchdb/values.yaml
index 787be28..29668fd 100644
--- a/couchdb/values.yaml
+++ b/couchdb/values.yaml
@@ -60,7 +60,7 @@ persistentVolume:
 ## The CouchDB image
 image:
   repository: couchdb
-  tag: 3.2.0
+  tag: 3.2.1
   pullPolicy: IfNotPresent
 
 ## Experimental integration with Lucene-powered fulltext search