mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
minor fixes
Signed-off-by: Shahbaz Nazir <shahbaz@bigchaindb.com>
This commit is contained in:
parent
9205837c8b
commit
29dd1d6afc
@ -92,6 +92,9 @@ data:
|
|||||||
# it will use the default cache size; i.e. max((50% RAM - 1GB), 256MB)
|
# it will use the default cache size; i.e. max((50% RAM - 1GB), 256MB)
|
||||||
storage-engine-cache-size: ""
|
storage-engine-cache-size: ""
|
||||||
|
|
||||||
|
# POST API authorization mode [threescale | secrete-token]
|
||||||
|
authorization-mode: "threescale"
|
||||||
|
|
||||||
---
|
---
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: ConfigMap
|
kind: ConfigMap
|
||||||
|
@ -57,9 +57,6 @@ http {
|
|||||||
map $remote_addr $bdb_backend {
|
map $remote_addr $bdb_backend {
|
||||||
default BIGCHAINDB_BACKEND_HOST;
|
default BIGCHAINDB_BACKEND_HOST;
|
||||||
}
|
}
|
||||||
map $remote_addr $openresty_backend {
|
|
||||||
default OPENRESTY_BACKEND_HOST;
|
|
||||||
}
|
|
||||||
|
|
||||||
# Frontend server for the external clients; acts as HTTPS termination point.
|
# Frontend server for the external clients; acts as HTTPS termination point.
|
||||||
server {
|
server {
|
||||||
@ -116,7 +113,7 @@ http {
|
|||||||
return 403;
|
return 403;
|
||||||
}
|
}
|
||||||
|
|
||||||
# POST requests get forwarded to OpenResty instance. Enable CORS too.
|
# POST requests get forwarded to BDB.
|
||||||
if ($request_method = POST ) {}
|
if ($request_method = POST ) {}
|
||||||
proxy_pass http://$bdb_backend:BIGCHAINDB_API_PORT;
|
proxy_pass http://$bdb_backend:BIGCHAINDB_API_PORT;
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,10 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
|
|
||||||
|
# Authorization Modes
|
||||||
|
threescale_auth_mode="threescale"
|
||||||
|
secret_token_auth_mode="secret-token"
|
||||||
|
|
||||||
# Cluster vars
|
# Cluster vars
|
||||||
cluster_fqdn=`printenv CLUSTER_FQDN`
|
cluster_fqdn=`printenv CLUSTER_FQDN`
|
||||||
cluster_frontend_port=`printenv CLUSTER_FRONTEND_PORT`
|
cluster_frontend_port=`printenv CLUSTER_FRONTEND_PORT`
|
||||||
@ -49,7 +53,7 @@ if [[ -z "${cluster_frontend_port:?CLUSTER_FRONTEND_PORT not specified. Exiting!
|
|||||||
-z "${tm_pub_key_access_port:?TM_PUB_KEY_ACCESS_PORT not specified. Exiting!}" || \
|
-z "${tm_pub_key_access_port:?TM_PUB_KEY_ACCESS_PORT not specified. Exiting!}" || \
|
||||||
-z "${tm_backend_host:?TM_BACKEND_HOST not specified. Exiting!}" || \
|
-z "${tm_backend_host:?TM_BACKEND_HOST not specified. Exiting!}" || \
|
||||||
-z "${tm_p2p_port:?TM_P2P_PORT not specified. Exiting!}" || \
|
-z "${tm_p2p_port:?TM_P2P_PORT not specified. Exiting!}" || \
|
||||||
-z "${authorization_mode:-threescale}" ]]; then
|
-z "${authorization_mode:-threescale_auth_mode}" ]]; then # Set the default authorization mode to threescale
|
||||||
echo "Missing required environment variables. Exiting!"
|
echo "Missing required environment variables. Exiting!"
|
||||||
exit 1
|
exit 1
|
||||||
else
|
else
|
||||||
@ -70,13 +74,17 @@ else
|
|||||||
echo TM_P2P_PORT="$tm_p2p_port"
|
echo TM_P2P_PORT="$tm_p2p_port"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Set Default nginx config file
|
if [[ ${authorization_mode} == ${secret_token_auth_mode} ]]; then
|
||||||
NGINX_CONF_FILE=/etc/nginx/nginx-threescale.conf
|
|
||||||
|
|
||||||
if [[ ${authorization_mode} == "secret-header" ]]; then
|
|
||||||
NGINX_CONF_FILE=/etc/nginx/nginx.conf
|
NGINX_CONF_FILE=/etc/nginx/nginx.conf
|
||||||
secret_access_token=`printenv SECRET_ACCESS_TOKEN`
|
secret_access_token=`printenv SECRET_ACCESS_TOKEN`
|
||||||
sed -i "s|SECRET_ACCESS_TOKEN|${secret_token_header}|g"
|
sed -i "s|SECRET_ACCESS_TOKEN|${secret_token_header}|g"
|
||||||
|
elif [[ ${authorization_mode} == ${threescale_auth_mode} ]]; then
|
||||||
|
NGINX_CONF_FILE=/etc/nginx/nginx-threescale.conf
|
||||||
|
sed -i "s|OPENRESTY_BACKEND_PORT|${openresty_backend_port}|g" ${NGINX_CONF_FILE}
|
||||||
|
sed -i "s|OPENRESTY_BACKEND_HOST|${openresty_backend_host}|g" ${NGINX_CONF_FILE}
|
||||||
|
else
|
||||||
|
echo "Unrecognised authorization mode: ${authorization_mode}. Exiting!"
|
||||||
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# configure the nginx.conf file with env variables
|
# configure the nginx.conf file with env variables
|
||||||
@ -85,8 +93,6 @@ sed -i "s|CLUSTER_FRONTEND_PORT|${cluster_frontend_port}|g" ${NGINX_CONF_FILE}
|
|||||||
sed -i "s|MONGODB_FRONTEND_PORT|${mongo_frontend_port}|g" ${NGINX_CONF_FILE}
|
sed -i "s|MONGODB_FRONTEND_PORT|${mongo_frontend_port}|g" ${NGINX_CONF_FILE}
|
||||||
sed -i "s|MONGODB_BACKEND_HOST|${mongo_backend_host}|g" ${NGINX_CONF_FILE}
|
sed -i "s|MONGODB_BACKEND_HOST|${mongo_backend_host}|g" ${NGINX_CONF_FILE}
|
||||||
sed -i "s|MONGODB_BACKEND_PORT|${mongo_backend_port}|g" ${NGINX_CONF_FILE}
|
sed -i "s|MONGODB_BACKEND_PORT|${mongo_backend_port}|g" ${NGINX_CONF_FILE}
|
||||||
sed -i "s|OPENRESTY_BACKEND_PORT|${openresty_backend_port}|g" ${NGINX_CONF_FILE}
|
|
||||||
sed -i "s|OPENRESTY_BACKEND_HOST|${openresty_backend_host}|g" ${NGINX_CONF_FILE}
|
|
||||||
sed -i "s|BIGCHAINDB_BACKEND_HOST|${bdb_backend_host}|g" ${NGINX_CONF_FILE}
|
sed -i "s|BIGCHAINDB_BACKEND_HOST|${bdb_backend_host}|g" ${NGINX_CONF_FILE}
|
||||||
sed -i "s|BIGCHAINDB_API_PORT|${bdb_api_port}|g" ${NGINX_CONF_FILE}
|
sed -i "s|BIGCHAINDB_API_PORT|${bdb_api_port}|g" ${NGINX_CONF_FILE}
|
||||||
sed -i "s|BIGCHAINDB_WS_PORT|${bdb_ws_port}|g" ${NGINX_CONF_FILE}
|
sed -i "s|BIGCHAINDB_WS_PORT|${bdb_ws_port}|g" ${NGINX_CONF_FILE}
|
||||||
|
@ -85,6 +85,11 @@ spec:
|
|||||||
configMapKeyRef:
|
configMapKeyRef:
|
||||||
name: tendermint-config
|
name: tendermint-config
|
||||||
key: tm-p2p-port
|
key: tm-p2p-port
|
||||||
|
- name: AUTHORIZATION_MODE
|
||||||
|
valueFrom:
|
||||||
|
configMapKeyRef:
|
||||||
|
name: vars
|
||||||
|
key: authorization-mode
|
||||||
ports:
|
ports:
|
||||||
# return a pretty error message on port 80, since we are expecting
|
# return a pretty error message on port 80, since we are expecting
|
||||||
# HTTPS traffic.
|
# HTTPS traffic.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user