lluisYasT / docker-couchdb

CouchDB 2.0 for docker in kubernetes

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CouchDB 2.x for Kubernetes w/ manifests

Build Status Docker Pulls Size/Layers Github Repo

Maintainer

Joe Black | me@joeblack.nyc | github

Description

Minimal image with a sidecar container that performs automatic cluster initialization. There is also support for local dev environments to auto-finalize the cluster upon starting, as well as a couch-helper utility script. This image uses a custom, minimal version of Debian Linux.

This image also includes the couchdb-admin utility from https://github.com/cabify/couchdb-admin, see link for documentation.

Build Environment

Build environment variables are often used in the build script to bump version numbers and set other options during the docker build phase. Their values can be overridden using a build argument of the same name.

  • COUCHDB_VERSION: the version of couchdb to install.
  • COUCHDB_RC: the release candidate number (if applicable).
  • COUCHDB_CHECK_RELEASE: Determines whether make check will run before make release, boolean.

The following variables are standard in most of our dockerfiles to reduce duplication and make scripts reusable among different projects:

  • APP: couchdb
  • USER: couchdb
  • HOME /opt/couchdb

Run Environment

Run environment variables are used in the entrypoint script to render configuration templates, perform flow control, etc. These values can be overridden when inheriting from the base dockerfile, specified during docker run, or in kubernetes manifests in the env array.

couchdb container:

  • ERLANG_THREADS: used as the value for the +A argument in vm.args.
  • COUCHDB_LOG_LEVEL: lowercased and used as the value for the level in the log section of local.ini.
  • COUCHDB_DATA_PATH: used as the value for database_dir and view_index_dir in the couchdb section of local.ini.
  • COUCHDB_BIND_ADDR: used as the value for bind_address in the chttpd and httpd sections of local.ini.
  • COUCHDB_REQUIRE_VALID_USER: used as the value for require_valid_user in the chttpd and httpd sections of local.ini.
  • COUCHDB_SHARDS: used as the value for q in the cluster section of local.ini.
  • COUCHDB_READ_QUORUM: used as the value for r in the cluster section of local.ini.
  • COUCHDB_WRITE_QUORUM: used as the value for w in the cluster section of local.ini.
  • COUCHDB_REPLICAS: used as the value for n in the cluster section of local.ini.
  • COUCHDB_DEV_INIT: when value is true, will background the couchdb-dev script before starting couchdb. Inject as true into the environment when running a simple single node dev cluster that should immediately auto-initialize.
  • COUCHDB_ADMIN_USER,COUCHDB_ADMIN_PASS: when set this will be available to the sidecar container couchdiscover and the script couch-helper. Your cluster will be auto initialized using these credentials. couch-helper is meant to be used for local single node clusters for development.
  • ERLANG_COOKIE: when set this value will be written to ~/.erlang.cookie and proper permissions applied prior to starting couchdb.
  • COUCHDB_CLUSTER_SIZE: when set this value override the value of the replica's field on the kubernetes statefulset manifest. Do not use unless you really need to override the default behavior for some reason.

couchdiscover container:

  • LOG_LEVEL: logging level to output container logs for. Defaults to INFO, most logs are either INFO or WARNING level.

Usage

Under docker (pre-built)

All of our docker-* repos in github have CI pipelines that push to docker cloud/hub.

This image is available at:

To run:

docker run -d \
    --name couchdb \
    -h couchdb.local \
    -e "COUCHDB_DEV_INIT=true" \
    -e "COUCHDB_ADMIN_USER=admin" \
    -e "COUCHDB_ADMIN_PASS=secret" \
    -e "ERLANG_COOKIE=test-cookie" \
    telephoneorg/couchdb

NOTE: Please reference the Run Environment section for the list of available environment variables.

Under docker-compose

Pull the images

docker-compose pull

Start application and dependencies

# start in foreground
docker-compose up --abort-on-container-exit

# start in background
docker-compose up -d

Under Kubernetes

Edit the manifests under kubernetes/<environment> to reflect your specific environment and configuration.

Create a secret for the erlang cookie:

kubectl create secret generic erlang \      
    --from-literal=erlang=$(LC_ALL=C tr -cd '[:alnum:]' < /dev/urandom | head -c 64)

Create a secret for the couchdb credentials:

kubectl create secret generic couchdb \
    --from-literal=user=$(sed $(perl -e "print int rand(99999)")"q;d" /usr/share/dict/words) \
    --from-literal=pass=$(LC_ALL=C tr -cd '[:alnum:]' < /dev/urandom | head -c 32)

Deploy couchdb:

kubectl create -f kubernetes/<environment>

couchdiscover

For the kubernetes manifests, there is a sidecar container called couchdiscover that handles initializing the cluster.

In order to best use something that is essentially "zero configuration," it helps to understand how the necessary information is obtained from the environment and api's.

How couchdiscover discovers information

  1. Initially a great deal of information is obtained by grabbing the hostname of the container that's part of a StatefulSet and parsing it. This is how the namespace is determined, how hostnames are calculated later, the name of the StatefulSet to look for in the api, the name of the headless service, the node name, the index, whether a node is master or not, etc.

  2. The kubernetes api is used to grab the StatefulSet and Endpoint objects. The Endpoint object is parsed to obtain the hosts list. Then the StatefulSet is parsed for the ports, then the environment is resolved, fetching any externally referenced ConfigMaps or Secrets that are necessary. Credentials are resolved by looking through the environment of the couchdb container for the keys: COUCHDB_ADMIN_USER, COUCHDB_ADMIN_PASS. Finally the expected cluster size is set to the number of replicas in the fetched StatefulSet. You can override this by setting this environment variable manually, but should be completely unnecessary for most cases.

Main logic

The main logic is performed in the manage module's ClusterManager object's run method. I think most of it is relatively straightforward.

# couchdiscover.manage.ClusterManager
def run(self):
    """Main logic here, this is where we begin once all environment
    information has been retrieved."""
    log.info('Starting couchdiscover: %s', self.couch)
    if self.couch.disabled:
        log.info('Cluster disabled, enabling')
        self.couch.enable()
    elif self.couch.finished:
        log.info('Cluster already finished')
        self.sleep_forever()

    if self.env.first_node:
        log.info("Looks like I'm the first node")
        if self.env.single_node_cluster:
            log.info('Single node cluster detected')
            self.couch.finish()
    else:
        log.info("Looks like I'm not the first node")
        self.couch.add_to_master()
        if self.env.last_node:
            log.info("Looks like I'm the last node")
            self.couch.finish()
        else:
            log.info("Looks like I'm not the last node")
    self.sleep_forever()

Building and testing release candidates for CouchDB

Note: Check the Build Environment Section at the top for a summary of the build arguments used here. The command given is just an example, change it as necessary.

Build only

docker-compose build \
    --force-rm \
    --build-arg COUCHDB_VERSION=2.1.0 \
    --build-arg COUCHDB_RC=1

Build with make check

docker-compose build \
    --force-rm \
    --build-arg COUCHDB_VERSION=2.1.0 \
    --build-arg COUCHDB_RC=1 \
    --build-arg COUCHDB_CHECK_RELEASE=true

About

CouchDB 2.0 for docker in kubernetes


Languages

Language:Shell 55.2%Language:Python 30.9%Language:Dockerfile 5.2%Language:PHP 5.0%Language:SourcePawn 3.7%