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/13 13:15:59 UTC

[couchdb-helm] branch main updated (9f10dad -> e727842)

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

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


    from 9f10dad  Add topologySpreadConstraints parameter to be used in StatefulSet (#59)
     new c9e0b5f  Roll deployment if auth secrets change
     new 23426a8  Update to CouchDB 3.2.1
     new e727842  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.


Summary of changes:
 couchdb/Chart.yaml                 |   4 ++--
 couchdb/README.md                  |   2 +-
 couchdb/templates/statefulset.yaml |   1 +
 couchdb/values.yaml                |   2 +-
 docs/couchdb-3.5.1.tgz             | Bin 0 -> 10161 bytes
 docs/index.yaml                    |  25 ++++++++++++++++++++++++-
 6 files changed, 29 insertions(+), 5 deletions(-)
 create mode 100644 docs/couchdb-3.5.1.tgz

[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 main
in repository https://gitbox.apache.org/repos/asf/couchdb-helm.git

commit 23426a8448fb2f98fc3d571a0cc842ba353348e0
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 fc14ae4..7b74ccd 100644
--- a/couchdb/Chart.yaml
+++ b/couchdb/Chart.yaml
@@ -1,7 +1,7 @@
 apiVersion: v1
 name: couchdb
 version: 3.5.0
-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 e7058b0..3f9642b 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 172d774..e45f56b 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

[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 main
in repository https://gitbox.apache.org/repos/asf/couchdb-helm.git

commit c9e0b5f559ee7d81bbf42be59cef05875e687fdc
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 ae3ffa5..233441d 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] 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 main
in repository https://gitbox.apache.org/repos/asf/couchdb-helm.git

commit e72784281c24820d61c8909d5fa08bc1c3ff4e43
Author: Adam Kocoloski <ko...@apache.org>
AuthorDate: Thu Jan 13 08:14:58 2022 -0500

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

diff --git a/couchdb/Chart.yaml b/couchdb/Chart.yaml
index 7b74ccd..6f51480 100644
--- a/couchdb/Chart.yaml
+++ b/couchdb/Chart.yaml
@@ -1,6 +1,6 @@
 apiVersion: v1
 name: couchdb
-version: 3.5.0
+version: 3.5.1
 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.5.1.tgz b/docs/couchdb-3.5.1.tgz
new file mode 100644
index 0000000..a14052b
Binary files /dev/null and b/docs/couchdb-3.5.1.tgz differ
diff --git a/docs/index.yaml b/docs/index.yaml
index aade4c0..e7afd69 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-13T08:14:05.939155-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: e0042aa48624c3b795b82d473c08ff181ead9c7ccd172b09c3b57021d08dca60
+    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.5.1.tgz
+    version: 3.5.1
+  - apiVersion: v1
     appVersion: 3.2.0
     created: "2022-01-10T07:49:23.501939784-03:00"
     description: A database featuring seamless multi-master sync, that scales from
@@ -346,4 +369,4 @@ entries:
     urls:
     - https://apache.github.io/couchdb-helm/couchdb-2.2.0.tgz
     version: 2.2.0
-generated: "2022-01-10T07:49:23.499066257-03:00"
+generated: "2022-01-13T08:14:05.938067-05:00"