You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by wi...@apache.org on 2023/03/08 09:07:20 UTC

[couchdb-helm] 01/01: chore: remove legacy docs folder

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

willholley pushed a commit to branch update-docs
in repository https://gitbox.apache.org/repos/asf/couchdb-helm.git

commit cf298049ee9df284e7a5ca0de53bb77c05ebefa2
Author: Will Holley <wi...@uk.ibm.com>
AuthorDate: Wed Mar 8 09:05:31 2023 +0000

    chore: remove legacy docs folder
    
    The Helm repository / GitHub pages is now served from the
    `gh-pages` branch rather than the docs folder.
    
    This removes the legacy `docs` folder as it causes some confusion
    when contributing.
---
 docs/DEPRECATED.md        |  47 -----
 docs/check-inventory.sh   |  29 ---
 docs/couchdb-2.2.0.tgz    | Bin 7354 -> 0 bytes
 docs/couchdb-2.3.0.tgz    | Bin 7376 -> 0 bytes
 docs/couchdb-2.4.0.tgz    | Bin 7897 -> 0 bytes
 docs/couchdb-2.4.1.tgz    | Bin 7907 -> 0 bytes
 docs/couchdb-3.0.0.tgz    | Bin 8517 -> 0 bytes
 docs/couchdb-3.1.0.tgz    | Bin 8866 -> 0 bytes
 docs/couchdb-3.2.0.tgz    | Bin 9120 -> 0 bytes
 docs/couchdb-3.3.0.tgz    | Bin 9496 -> 0 bytes
 docs/couchdb-3.3.1.tgz    | Bin 9532 -> 0 bytes
 docs/couchdb-3.3.2.tgz    | Bin 9655 -> 0 bytes
 docs/couchdb-3.3.3.tgz    | Bin 9665 -> 0 bytes
 docs/couchdb-3.3.4.tgz    | Bin 9604 -> 0 bytes
 docs/couchdb-3.4.0.tgz    | Bin 9864 -> 0 bytes
 docs/couchdb-3.4.1.tgz    | Bin 9870 -> 0 bytes
 docs/couchdb-3.5.0.tgz    | Bin 13310 -> 0 bytes
 docs/couchdb-3.5.1.tgz    | Bin 10161 -> 0 bytes
 docs/couchdb-3.5.2.tgz    | Bin 10233 -> 0 bytes
 docs/couchdb-3.6.0.tgz    | Bin 11347 -> 0 bytes
 docs/couchdb-3.6.1.tgz    | Bin 10961 -> 0 bytes
 docs/couchdb-3.6.3.tgz    | Bin 11559 -> 0 bytes
 docs/get-inventory.sh     |  16 --
 docs/index.yaml           | 468 ----------------------------------------------
 docs/install-cr.sh        |  13 --
 docs/inventory.txt        |  19 --
 docs/release-inventory.sh |  73 --------
 27 files changed, 665 deletions(-)

diff --git a/docs/DEPRECATED.md b/docs/DEPRECATED.md
deleted file mode 100644
index 3bf604d..0000000
--- a/docs/DEPRECATED.md
+++ /dev/null
@@ -1,47 +0,0 @@
-# Deprecated
-
-Per [this issue](https://github.com/apache/couchdb-helm/issues/62), we plan to move things in `./docs` here
-to GitHub releases and follow the helm community's guidance on 
-release practices for helm charts.
-
-# Migration Path
-
-In order to migrate the old .tgz files, we:
-
-- Will find the latest commit that modified a .tgz
-- Sanity check that `Chart.yaml` represents the same version
-- Forego any further file consistency checks (this is best effort)
-- Presume that the git state matches what is in the .tgz at that time
-- Tag and release the given commit to GitHub Releases using [`chart-releaser`](https://github.com/helm/chart-releaser)
-
-## How To
-
-1. `cd docs` to move into this directory
-2. Install the `chart-releaser` binary (only one architecture defined)
-```bash
-cd docs
-./install-cr.sh
-```
-3. Build an inventory of what .tgz files exist in the directory
-```bash
-./get-inventory.sh
-```
-4. Sanity check that things look appropriate
-```bash
-./check-inventory.sh
-```
-5. Run the release dry-run
-```bash
-# ./release-inventory.sh {{ owner }}
-# i.e.
-./release-inventory.sh colearendt
-```
-6. Check that things look good, then run the actual release process
-```bash
-# ./release-inventory.sh {{ owner }} execute
-# (see docs for more info / other args)
-# i.e.
-./release-inventory.sh colearendt execute
-```
-
-NOTE: we have not done anything to sign chart packages here, though `chart-releaser` supports doing so.
diff --git a/docs/check-inventory.sh b/docs/check-inventory.sh
deleted file mode 100755
index 68dc7f4..0000000
--- a/docs/check-inventory.sh
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/usr/bin/env bash
-
-set -euxo pipefail
-
-found_probs=0
-cat inventory.txt | while read line; do
-  tarball=$(echo $line | cut -d: -f 1)
-  gitsha=$(echo $line | cut -d' ' -f 2)
-  cversion=${tarball/couchdb-/}
-  cversion=${cversion/.tgz/}
-  echo "--> Checking that '$gitsha' matches chart version '$cversion'";
-  
-  cversion_actual=$(git show $gitsha:../couchdb/Chart.yaml | grep '^version:')
-  diff <(echo "$cversion_actual") <(echo "version: $cversion")
-  res=$?
-  if [[ $res -gt 0 ]]; then
-    echo "--> Uh oh! Git SHA '$gitsha' provided version '$cversion_actual', but tarball had '$cversion'"
-    found_probs=1
-  fi;
-
-  # TODO: could check that file SHAs match w/ the tarballs... but this is a best effort anyways...
-done
-
-echo
-if [[ found_probs -eq 0 ]]; then
-  echo '--> Success! All checks went well!'
-else
-  echo '--> PROBLEMS FOUND!'
-fi
diff --git a/docs/couchdb-2.2.0.tgz b/docs/couchdb-2.2.0.tgz
deleted file mode 100644
index 5bf2044..0000000
Binary files a/docs/couchdb-2.2.0.tgz and /dev/null differ
diff --git a/docs/couchdb-2.3.0.tgz b/docs/couchdb-2.3.0.tgz
deleted file mode 100644
index 2f657d8..0000000
Binary files a/docs/couchdb-2.3.0.tgz and /dev/null differ
diff --git a/docs/couchdb-2.4.0.tgz b/docs/couchdb-2.4.0.tgz
deleted file mode 100644
index 916f501..0000000
Binary files a/docs/couchdb-2.4.0.tgz and /dev/null differ
diff --git a/docs/couchdb-2.4.1.tgz b/docs/couchdb-2.4.1.tgz
deleted file mode 100644
index ec96263..0000000
Binary files a/docs/couchdb-2.4.1.tgz and /dev/null differ
diff --git a/docs/couchdb-3.0.0.tgz b/docs/couchdb-3.0.0.tgz
deleted file mode 100644
index fa97799..0000000
Binary files a/docs/couchdb-3.0.0.tgz and /dev/null differ
diff --git a/docs/couchdb-3.1.0.tgz b/docs/couchdb-3.1.0.tgz
deleted file mode 100644
index 7d30998..0000000
Binary files a/docs/couchdb-3.1.0.tgz and /dev/null differ
diff --git a/docs/couchdb-3.2.0.tgz b/docs/couchdb-3.2.0.tgz
deleted file mode 100644
index 9317b59..0000000
Binary files a/docs/couchdb-3.2.0.tgz and /dev/null differ
diff --git a/docs/couchdb-3.3.0.tgz b/docs/couchdb-3.3.0.tgz
deleted file mode 100644
index 90ca60e..0000000
Binary files a/docs/couchdb-3.3.0.tgz and /dev/null differ
diff --git a/docs/couchdb-3.3.1.tgz b/docs/couchdb-3.3.1.tgz
deleted file mode 100644
index 818d101..0000000
Binary files a/docs/couchdb-3.3.1.tgz and /dev/null differ
diff --git a/docs/couchdb-3.3.2.tgz b/docs/couchdb-3.3.2.tgz
deleted file mode 100644
index b3e76e3..0000000
Binary files a/docs/couchdb-3.3.2.tgz and /dev/null differ
diff --git a/docs/couchdb-3.3.3.tgz b/docs/couchdb-3.3.3.tgz
deleted file mode 100644
index 835278b..0000000
Binary files a/docs/couchdb-3.3.3.tgz and /dev/null differ
diff --git a/docs/couchdb-3.3.4.tgz b/docs/couchdb-3.3.4.tgz
deleted file mode 100644
index 02ee91f..0000000
Binary files a/docs/couchdb-3.3.4.tgz and /dev/null differ
diff --git a/docs/couchdb-3.4.0.tgz b/docs/couchdb-3.4.0.tgz
deleted file mode 100644
index 3fcb6fc..0000000
Binary files a/docs/couchdb-3.4.0.tgz and /dev/null differ
diff --git a/docs/couchdb-3.4.1.tgz b/docs/couchdb-3.4.1.tgz
deleted file mode 100644
index 1d22a40..0000000
Binary files a/docs/couchdb-3.4.1.tgz and /dev/null differ
diff --git a/docs/couchdb-3.5.0.tgz b/docs/couchdb-3.5.0.tgz
deleted file mode 100644
index 106cc8c..0000000
Binary files a/docs/couchdb-3.5.0.tgz and /dev/null differ
diff --git a/docs/couchdb-3.5.1.tgz b/docs/couchdb-3.5.1.tgz
deleted file mode 100644
index a14052b..0000000
Binary files a/docs/couchdb-3.5.1.tgz and /dev/null differ
diff --git a/docs/couchdb-3.5.2.tgz b/docs/couchdb-3.5.2.tgz
deleted file mode 100644
index e54e417..0000000
Binary files a/docs/couchdb-3.5.2.tgz and /dev/null differ
diff --git a/docs/couchdb-3.6.0.tgz b/docs/couchdb-3.6.0.tgz
deleted file mode 100644
index 0c4f404..0000000
Binary files a/docs/couchdb-3.6.0.tgz and /dev/null differ
diff --git a/docs/couchdb-3.6.1.tgz b/docs/couchdb-3.6.1.tgz
deleted file mode 100644
index d46b1e5..0000000
Binary files a/docs/couchdb-3.6.1.tgz and /dev/null differ
diff --git a/docs/couchdb-3.6.3.tgz b/docs/couchdb-3.6.3.tgz
deleted file mode 100644
index 15f2043..0000000
Binary files a/docs/couchdb-3.6.3.tgz and /dev/null differ
diff --git a/docs/get-inventory.sh b/docs/get-inventory.sh
deleted file mode 100755
index 2a94df1..0000000
--- a/docs/get-inventory.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/usr/bin/env bash
-
-set -euxo pipefail
-
-echo '--> Clearing past inventory.txt'
-rm -f inventory.txt
-
-echo '--> Building inventory.txt with files and commits'
-
-# generate the list of backfill commits
-# assuming that the commit that added the tarball also has the appropriate state committed to the repo
-for f in `ls . | grep 'couchdb-.*\.tgz'`; do
-  echo $f: `git log --oneline -- $f | head -1` >> inventory.txt;
-done
-
-echo '--> Done!'
diff --git a/docs/index.yaml b/docs/index.yaml
deleted file mode 100644
index 6207d79..0000000
--- a/docs/index.yaml
+++ /dev/null
@@ -1,468 +0,0 @@
-apiVersion: v1
-entries:
-  couchdb:
-  - apiVersion: v1
-    appVersion: 3.2.1
-    created: "2022-11-16T10:04:19.187911144-08: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: 9091c8a4bca3c965ef6b18907a9e0a4b8c1db38fc312e8a3f59f96a39cd005a1
-    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-helm
-    - https://github.com/apache/couchdb-docker
-    urls:
-    - https://apache.github.io/couchdb-helm/couchdb-3.6.3.tgz
-    version: 3.6.3
-  - apiVersion: v1
-    appVersion: 3.2.1
-    created: "2022-02-26T11:38:38.223409-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: a04f5c774f9696270562b01721e17b52b03a6bca2ef3fa55129b5d0a320552c8
-    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-helm
-    - https://github.com/apache/couchdb-docker
-    urls:
-    - https://apache.github.io/couchdb-helm/couchdb-3.6.1.tgz
-    version: 3.6.1
-  - apiVersion: v1
-    appVersion: 3.2.1
-    created: "2022-01-27T12:14:55.94368627-03: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: 8a6dc96fbf7df0f4bf1f95bd763fb523bad98dcc34282a5b3623c2a5b2b5d36a
-    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-helm
-    - https://github.com/apache/couchdb-docker
-    urls:
-    - https://apache.github.io/couchdb-helm/couchdb-3.6.0.tgz
-    version: 3.6.0
-  - apiVersion: v1
-    appVersion: 3.2.1
-    created: "2022-01-24T11:16:39.860979-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: cf08bce16aa11476c93b48208182235b10541d5b0b75f6de87775c94742e02b1
-    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-helm
-    - https://github.com/apache/couchdb-docker
-    urls:
-    - https://apache.github.io/couchdb-helm/couchdb-3.5.2.tgz
-    version: 3.5.2
-  - 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
-      big data to mobile, with an intuitive HTTP/JSON API and designed for reliability.
-    digest: ea79c63e56c3c7d9f4b185bba5c5e89402de62b31dd61b928d9666b0466179a7
-    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.0.tgz
-    version: 3.5.0
-  - 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
-      big data to mobile, with an intuitive HTTP/JSON API and designed for reliability.
-    digest: 1fd2f15ab2449e2a6e00d09163de7282f21b3fe4f902c967b37c94d546373616
-    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.1.tgz
-    version: 3.4.1
-  - apiVersion: v1
-    appVersion: 3.2.0
-    created: "2021-11-01T11:58:35.829781-04: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: f02403a6e33116ca8ac7d4cf438e6fd449628be2624c54e4fab4598b368a99f8
-    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.0.tgz
-    version: 3.4.0
-  - apiVersion: v1
-    appVersion: 3.1.1
-    created: "2021-07-19T17:06:48.703104-04: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: 20e63d0f49af172cf80bfe242e8b2eca4dd8de99a4c2cddd53c41b22233547f2
-    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.3.4.tgz
-    version: 3.3.4
-  - apiVersion: v1
-    appVersion: 2.3.1
-    created: "2020-07-20T15:42:59.616958-04: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: 2eb7baa9fd807194a6c223b0fd0959819c3fc0b7b3ad640f6a44d34004d65d33
-    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.3.3.tgz
-    version: 3.3.3
-  - apiVersion: v1
-    appVersion: 2.3.1
-    created: "2020-06-26T17:24:20.1166057-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: fd3b6cfa14fe2bb7c30919dc328c74e9ccdb833e3f29dd0e0e5b14cfa1711952
-    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.3.2.tgz
-    version: 3.3.2
-  - apiVersion: v1
-    appVersion: 2.3.1
-    created: "2020-06-03T09:03:46.521289+01: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: 6c6f9e646f4eda3bcca8556f2ff8f8d456e411136012c67e359c21c12c10785e
-    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.3.1.tgz
-    version: 3.3.1
-  - apiVersion: v1
-    appVersion: 2.3.1
-    created: "2020-05-22T13:16:19.793936+01: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: 0d2613f898fd6f6d86e396e2f64f21e85d3d07889fe3fcc76e03cdb741ecce74
-    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.3.0.tgz
-    version: 3.3.0
-  - apiVersion: v1
-    appVersion: 2.3.1
-    created: "2020-02-24T14:28:33.088976214+01: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: bc1fc4cd7208209abce383d0f57ae7c628698462b63af78e9b2641f8afd40c6e
-    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.2.0.tgz
-    version: 3.2.0
-  - apiVersion: v1
-    appVersion: 2.3.1
-    created: "2020-01-06T12:56:30.320674+07: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: c6e72b6d9d7befc8ec015852e1bf74476222953ebcd2803ac33c1c0491f96d16
-    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.1.0.tgz
-    version: 3.1.0
-  - apiVersion: v1
-    appVersion: 2.3.1
-    created: "2020-01-06T12:56:30.32018+07: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: 7770f1c19e948d9928eeed4f11ff960e598149bb5c0ae3e1f546b61e9dfb65f4
-    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.0.0.tgz
-    version: 3.0.0
-  - apiVersion: v1
-    appVersion: 2.3.1
-    created: "2020-01-06T12:56:30.319392+07: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: db0815c2766f76049b58d0954b66e0b70bf673a7d11c1d3cd9e07c775c646c12
-    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-2.4.1.tgz
-    version: 2.4.1
-  - apiVersion: v1
-    appVersion: 2.3.1
-    created: "2020-01-06T12:56:30.318616+07: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: daddf6cc7fe8bb63d6fa8679565d4496d92c23d9ff85b19521fca74c6412bc11
-    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-2.4.0.tgz
-    version: 2.4.0
-  - apiVersion: v1
-    appVersion: 2.3.1
-    created: "2020-01-06T12:56:30.317835+07: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: 0eba7c20ec47bc8556b3cb3b5137b578d46b37397493087d61b8199066f84782
-    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-2.3.0.tgz
-    version: 2.3.0
-  - apiVersion: v1
-    appVersion: 2.3.1
-    created: "2020-01-06T12:56:30.316893+07: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: f68e6187c2b65a02fdde9d49ec38e76a68c3d82421e5ea9e599bac87f4193c6a
-    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-2.2.0.tgz
-    version: 2.2.0
-generated: "2022-02-26T11:38:38.222258-05:00"
diff --git a/docs/install-cr.sh b/docs/install-cr.sh
deleted file mode 100755
index e24ced0..0000000
--- a/docs/install-cr.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/usr/bin/env bash
-
-os=$(uname -p)
-arch=$(uname -s)
-if [[ "${os}" == "arm" ]] && [[ "${arch}" == "Darwin" ]]; then
-  mkdir -p ./bin/cr-1.4.0/
-  curl -L https://github.com/helm/chart-releaser/releases/download/v1.4.0/chart-releaser_1.4.0_darwin_arm64.tar.gz | tar -xzvf - -C ./bin/cr-1.4.0/
-  ln -f -s $PWD/bin/cr-1.4.0/cr $PWD/bin/cr
-  echo "Installed successfully!"
-else
-  echo "ERROR: OS '${os}' and Architecture '${arch}' not defined"
-  echo "Visit https://github.com/helm/chart-releaser/releases to see releases"
-fi
diff --git a/docs/inventory.txt b/docs/inventory.txt
deleted file mode 100644
index 04d6206..0000000
--- a/docs/inventory.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-couchdb-2.2.0.tgz: 3e2f02e Address review comments
-couchdb-2.3.0.tgz: 40832bb Add configurable path
-couchdb-2.4.0.tgz: d6fec58 Bump chart version to 2.4.0
-couchdb-2.4.1.tgz: ad5417d Bugfix: fixes wrong Values iteration in ingress host
-couchdb-3.0.0.tgz: b46f424 Require a server instance UUID (#15)
-couchdb-3.1.0.tgz: bbf7201 Bump chart version
-couchdb-3.2.0.tgz: d8a2194 Bump chart version to 3.2.0
-couchdb-3.3.0.tgz: bb17404 Prehashed pw (#26)
-couchdb-3.3.1.tgz: 832994c Publish 3.3.1 chart
-couchdb-3.3.2.tgz: fc411c1 Update chart and index
-couchdb-3.3.3.tgz: da1d946 Bump chart version and publish
-couchdb-3.3.4.tgz: a75233c Bump default CouchDB version to 3.1.1
-couchdb-3.4.0.tgz: 252e73b Bump chart to 3.4.0 CouchDB to 3.2.0
-couchdb-3.4.1.tgz: 6e46579 Publish updated chart
-couchdb-3.5.0.tgz: 9f10dad Add topologySpreadConstraints parameter to be used in StatefulSet (#59)
-couchdb-3.5.1.tgz: e727842 Bump chart version and publish
-couchdb-3.5.2.tgz: dc2899b Bump chart version and publish
-couchdb-3.6.0.tgz: 22761f9 Add helm post-install hook to automate placement tagging in CouchDB nodes (#66)
-couchdb-3.6.1.tgz: bd9bce1 Bump chart version and publish
diff --git a/docs/release-inventory.sh b/docs/release-inventory.sh
deleted file mode 100755
index ec0cf0e..0000000
--- a/docs/release-inventory.sh
+++ /dev/null
@@ -1,73 +0,0 @@
-#!/usr/bin/env bash
-
-set -euxo pipefail
-
-# Example usage
-#
-#
-# $1 == owner - no default
-# $2 == "execute" makes the release fire!
-# $3 == GitHub auth token. Defaults to the value of $GITHUB_PAT
-# $4 == GitHub repository - defaults to "couchdb-helm"
-
-owner=${1:-}
-execute=${2:-}
-token=${3:-${GITHUB_PAT:-}}
-repo=${4:-couchdb-helm}
-chart_name=${5:-couchdb}
-
-if [[ -z "$owner" ]]; then
-  echo "Error: must provide 'owner' in first argument"
-  exit 1
-fi
-
-echo "Owner: $owner"
-echo "Execute?: $execute"
-
-IFS_OLD=$IFS
-trap 'IFS=$IFS_OLD' EXIT SIGINT
-IFS=$'\n'
-
-current_sha=$(git branch --show-current)
-res=$?
-if [[ $res -gt 0 ]]; then
-  current_sha=$(git rev-parse --short HEAD)
-fi;
-# clean up handler. This warns, but does help escape the loop on interrupt
-trap "git checkout $current_sha; exit 1" EXIT SIGINT
-
-inventory=$(cat inventory.txt)
-for line in ${inventory}; do
-  echo $line;
-  tarball=$(echo $line | cut -d: -f 1);
-  gitsha=$(echo $line | cut -d' ' -f 2);
-  cversion=${tarball/couchdb-/};
-  cversion=${cversion/.tgz/};
-  echo "--> Checking out '$gitsha' for chart version '$cversion'";
-
-  git checkout $gitsha;
-
-  long_sha=$(git rev-parse $gitsha)
-
-  read -n 1 -p "Pausing to check if this is ok. Press any key to continue: ";
-  echo ;
-  echo "--> Continuing...";
-  echo; echo;
-
-  if [[ "$execute" == "execute" ]] && [[ -n "$token" ]]; then
-    echo "--> Setting tag for release ${cversion} and sha ${gitsha}!"
-    git tag -f ${chart_name}-${cversion}
-    echo "--> Executing release!"
-    ./bin/cr package ../couchdb
-    ./bin/cr upload -c "$long_sha" --skip-existing -t "$token" -o $owner -r $repo
-    git push --tags --force
-    # clean the directory
-    rm .cr-release-packages/*
-  else
-    echo "--> 'execute' was not provided to the .sh invocation. Skipping..."
-  fi
-
-done
-
-git checkout $current_sha
-exit 0