From 2b0babb95b1846b281f46e28c0eee00001c41c74 Mon Sep 17 00:00:00 2001 From: David Dashyan Date: Thu, 6 Aug 2020 20:30:40 +0300 Subject: [PATCH] Update email addresses Signed-off-by: David Dashyan --- Dockerfile | 2 +- Dockerfile-all-in-one | 2 +- Dockerfile-alpine | 2 +- Dockerfile-dev | 2 +- .../network-setup/k8s-deployment-template/easy-rsa.rst | 2 +- docs/upgrade-guides/v0.10-v1.0.md | 2 +- k8s/bigchaindb/nginx_container/Dockerfile | 2 +- k8s/bigchaindb/tendermint_container/Dockerfile | 2 +- k8s/mongodb-monitoring-agent/container/Dockerfile | 2 +- k8s/mongodb/container/Dockerfile | 2 +- k8s/nginx-http/container/Dockerfile | 2 +- k8s/nginx-https/container/Dockerfile | 2 +- k8s/nginx-openresty/container/Dockerfile | 2 +- k8s/scripts/functions | 6 +++--- k8s/toolbox/Dockerfile | 2 +- pkg/configuration/roles/tendermint/files/Dockerfile | 2 +- setup.py | 2 +- 17 files changed, 19 insertions(+), 19 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9aae3eaf..ea644271 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM python:3.6 -LABEL maintainer "devs@bigchaindb.com" +LABEL maintainer "contact@ipdb.global" RUN mkdir -p /usr/src/app COPY . /usr/src/app/ WORKDIR /usr/src/app diff --git a/Dockerfile-all-in-one b/Dockerfile-all-in-one index 3b10c60f..7b2708d2 100644 --- a/Dockerfile-all-in-one +++ b/Dockerfile-all-in-one @@ -1,5 +1,5 @@ FROM alpine:3.9 -LABEL maintainer "devs@bigchaindb.com" +LABEL maintainer "contact@ipdb.global" ARG TM_VERSION=v0.31.5 RUN mkdir -p /usr/src/app diff --git a/Dockerfile-alpine b/Dockerfile-alpine index 7cea1e04..8ca98f05 100644 --- a/Dockerfile-alpine +++ b/Dockerfile-alpine @@ -1,5 +1,5 @@ FROM alpine:latest -LABEL maintainer "devs@bigchaindb.com" +LABEL maintainer "contact@ipdb.global" RUN mkdir -p /usr/src/app COPY . /usr/src/app/ WORKDIR /usr/src/app diff --git a/Dockerfile-dev b/Dockerfile-dev index c9e60621..abadbecc 100644 --- a/Dockerfile-dev +++ b/Dockerfile-dev @@ -1,6 +1,6 @@ ARG python_version=3.6 FROM python:${python_version} -LABEL maintainer "devs@bigchaindb.com" +LABEL maintainer "contact@ipdb.global" RUN apt-get update \ && apt-get install -y vim \ diff --git a/docs/root/source/installation/network-setup/k8s-deployment-template/easy-rsa.rst b/docs/root/source/installation/network-setup/k8s-deployment-template/easy-rsa.rst index f50d0b0c..ed242f9e 100644 --- a/docs/root/source/installation/network-setup/k8s-deployment-template/easy-rsa.rst +++ b/docs/root/source/installation/network-setup/k8s-deployment-template/easy-rsa.rst @@ -75,7 +75,7 @@ The comments in the file explain what each of the variables mean. echo 'set_var EASYRSA_REQ_CITY "Berlin"' >> vars echo 'set_var EASYRSA_REQ_ORG "BigchainDB GmbH"' >> vars echo 'set_var EASYRSA_REQ_OU "IT"' >> vars - echo 'set_var EASYRSA_REQ_EMAIL "devs@bigchaindb.com"' >> vars + echo 'set_var EASYRSA_REQ_EMAIL "contact@ipdb.global"' >> vars Note: Later, when building a CA or generating a certificate signing request, you will be prompted to enter a value for the OU (or to accept the default). You should change the default OU from ``IT`` to one of the following, as appropriate: ``ROOT-CA``, diff --git a/docs/upgrade-guides/v0.10-v1.0.md b/docs/upgrade-guides/v0.10-v1.0.md index 4a751131..f7f699b2 100644 --- a/docs/upgrade-guides/v0.10-v1.0.md +++ b/docs/upgrade-guides/v0.10-v1.0.md @@ -112,7 +112,7 @@ including: If you don't find your preferred language in this list, do not despair but -reach out to us for help on GitHub/Gitter or devs@bigchaindb.com. +reach out to us for help on GitHub/Gitter or contact@ipdb.global. #### Revamp of Crypto-Conditions signing details diff --git a/k8s/bigchaindb/nginx_container/Dockerfile b/k8s/bigchaindb/nginx_container/Dockerfile index 88b3e060..ec5d2b6c 100644 --- a/k8s/bigchaindb/nginx_container/Dockerfile +++ b/k8s/bigchaindb/nginx_container/Dockerfile @@ -1,5 +1,5 @@ FROM nginx:stable -LABEL maintainer "devs@bigchaindb.com" +LABEL maintainer "contact@ipdb.global" WORKDIR / RUN apt-get update \ && apt-get -y upgrade \ diff --git a/k8s/bigchaindb/tendermint_container/Dockerfile b/k8s/bigchaindb/tendermint_container/Dockerfile index 5dc71b15..1404f465 100644 --- a/k8s/bigchaindb/tendermint_container/Dockerfile +++ b/k8s/bigchaindb/tendermint_container/Dockerfile @@ -1,5 +1,5 @@ FROM tendermint/tendermint:v0.31.5 -LABEL maintainer "devs@bigchaindb.com" +LABEL maintainer "contact@ipdb.global" WORKDIR / USER root RUN apk --update add bash diff --git a/k8s/mongodb-monitoring-agent/container/Dockerfile b/k8s/mongodb-monitoring-agent/container/Dockerfile index 3e5e7637..d958d4bd 100644 --- a/k8s/mongodb-monitoring-agent/container/Dockerfile +++ b/k8s/mongodb-monitoring-agent/container/Dockerfile @@ -7,7 +7,7 @@ # https://docs.cloudmanager.mongodb.com/tutorial/install-monitoring-agent-with-deb-package/ FROM ubuntu:xenial -LABEL maintainer "devs@bigchaindb.com" +LABEL maintainer "contact@ipdb.global" # Using ARG, one can set DEBIAN_FRONTEND=noninteractive and others # just for the duration of the build: ARG DEBIAN_FRONTEND=noninteractive diff --git a/k8s/mongodb/container/Dockerfile b/k8s/mongodb/container/Dockerfile index 8c27153c..a2ade8f0 100644 --- a/k8s/mongodb/container/Dockerfile +++ b/k8s/mongodb/container/Dockerfile @@ -1,5 +1,5 @@ FROM mongo:3.6 -LABEL maintainer "devs@bigchaindb.com" +LABEL maintainer "contact@ipdb.global" WORKDIR / RUN apt-get update \ && apt-get -y upgrade \ diff --git a/k8s/nginx-http/container/Dockerfile b/k8s/nginx-http/container/Dockerfile index 3cc1e5bf..b97e7f99 100644 --- a/k8s/nginx-http/container/Dockerfile +++ b/k8s/nginx-http/container/Dockerfile @@ -1,5 +1,5 @@ FROM nginx:stable -LABEL maintainer "devs@bigchaindb.com" +LABEL maintainer "contact@ipdb.global" WORKDIR / RUN apt-get update \ && apt-get -y upgrade \ diff --git a/k8s/nginx-https/container/Dockerfile b/k8s/nginx-https/container/Dockerfile index 4bc10478..0516addf 100644 --- a/k8s/nginx-https/container/Dockerfile +++ b/k8s/nginx-https/container/Dockerfile @@ -1,5 +1,5 @@ FROM nginx:stable -LABEL maintainer "devs@bigchaindb.com" +LABEL maintainer "contact@ipdb.global" WORKDIR / RUN apt-get update \ && apt-get -y upgrade \ diff --git a/k8s/nginx-openresty/container/Dockerfile b/k8s/nginx-openresty/container/Dockerfile index 3286ce04..78a44850 100644 --- a/k8s/nginx-openresty/container/Dockerfile +++ b/k8s/nginx-openresty/container/Dockerfile @@ -1,5 +1,5 @@ FROM openresty/openresty:xenial -LABEL maintainer "devs@bigchaindb.com" +LABEL maintainer "contact@ipdb.global" WORKDIR / RUN apt-get update \ && apt-get -y upgrade \ diff --git a/k8s/scripts/functions b/k8s/scripts/functions index 710c3f83..cbbdbf32 100755 --- a/k8s/scripts/functions +++ b/k8s/scripts/functions @@ -13,7 +13,7 @@ function configure_root_ca(){ echo 'set_var EASYRSA_REQ_CITY "Berlin"' >> $1/vars echo 'set_var EASYRSA_REQ_ORG "BigchainDB GmbH"' >> $1/vars echo 'set_var EASYRSA_REQ_OU "ROOT-CA"' >> $1/vars - echo 'set_var EASYRSA_REQ_EMAIL "devs@bigchaindb.com"' >> $1//vars + echo 'set_var EASYRSA_REQ_EMAIL "contact@ipdb.global"' >> $1//vars sed -i.bk '/^extendedKeyUsage/ s/$/,clientAuth/' $1/x509-types/server echo "set_var EASYRSA_SSL_CONF \"$1/openssl-1.0.cnf\"" >> $1/vars @@ -36,7 +36,7 @@ function configure_member_cert_gen(){ echo 'set_var EASYRSA_REQ_CITY "Berlin"' >> $1/vars echo 'set_var EASYRSA_REQ_ORG "BigchainDB GmbH"' >> $1/vars echo 'set_var EASYRSA_REQ_OU "MONGO-MEMBER"' >> $1/vars - echo 'set_var EASYRSA_REQ_EMAIL "devs@bigchaindb.com"' >> $1/vars + echo 'set_var EASYRSA_REQ_EMAIL "contact@ipdb.global"' >> $1/vars echo "set_var EASYRSA_SSL_CONF \"$1/openssl-1.0.cnf\"" >> $1/vars echo "set_var EASYRSA_PKI \"$1/pki\"" >> $1/vars $1/easyrsa init-pki @@ -55,7 +55,7 @@ function configure_client_cert_gen(){ echo 'set_var EASYRSA_REQ_CITY "Berlin"' >> $1/vars echo 'set_var EASYRSA_REQ_ORG "BigchainDB GmbH"' >> $1/vars echo 'set_var EASYRSA_REQ_OU "MONGO-CLIENT"' >> $1/vars - echo 'set_var EASYRSA_REQ_EMAIL "devs@bigchaindb.com"' >> $1/vars + echo 'set_var EASYRSA_REQ_EMAIL "contact@ipdb.global"' >> $1/vars echo "set_var EASYRSA_SSL_CONF \"$1/openssl-1.0.cnf\"" >> $1/vars echo "set_var EASYRSA_PKI \"$1/pki\"" >> $1/vars $1/easyrsa init-pki diff --git a/k8s/toolbox/Dockerfile b/k8s/toolbox/Dockerfile index 1baadbeb..84aff134 100644 --- a/k8s/toolbox/Dockerfile +++ b/k8s/toolbox/Dockerfile @@ -4,7 +4,7 @@ # kubectl run -it toolbox --image bigchaindb/toolbox --restart=Never --rm FROM alpine:3.5 -LABEL maintainer "devs@bigchaindb.com" +LABEL maintainer "contact@ipdb.global" WORKDIR / RUN apk add --no-cache --update curl bind-tools python3-dev g++ \ libffi-dev make vim git nodejs openssl-dev \ diff --git a/pkg/configuration/roles/tendermint/files/Dockerfile b/pkg/configuration/roles/tendermint/files/Dockerfile index 40790444..b33d0f97 100644 --- a/pkg/configuration/roles/tendermint/files/Dockerfile +++ b/pkg/configuration/roles/tendermint/files/Dockerfile @@ -1,6 +1,6 @@ ARG tm_version=v0.31.5 FROM tendermint/tendermint:${tm_version} -LABEL maintainer "devs@bigchaindb.com" +LABEL maintainer "contact@ipdb.global" WORKDIR / USER root RUN apk --update add bash diff --git a/setup.py b/setup.py index eb73bc52..b4ebfef3 100644 --- a/setup.py +++ b/setup.py @@ -109,7 +109,7 @@ setup( ), url='https://github.com/BigchainDB/bigchaindb/', author='BigchainDB Contributors', - author_email='devs@bigchaindb.com', + author_email='contact@ipdb.global', license='Apache Software License 2.0', zip_safe=False, python_requires='>=3.6',