mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
Problem: nginx k8s deployment missing parameters (#2102)
This commit is contained in:
parent
d0874ccf9a
commit
582025ba3d
@ -90,6 +90,11 @@ spec:
|
|||||||
configMapKeyRef:
|
configMapKeyRef:
|
||||||
name: vars
|
name: vars
|
||||||
key: authorization-mode
|
key: authorization-mode
|
||||||
|
- name: SECRET_ACCESS_TOKEN
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: nginx-secret-header
|
||||||
|
key: secret-token
|
||||||
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.
|
||||||
|
@ -261,6 +261,10 @@ data:
|
|||||||
# bdb-instance-name is the name of the BigchainDB instance in this cluster.
|
# bdb-instance-name is the name of the BigchainDB instance in this cluster.
|
||||||
bdb-instance-name: "${bdb_instance_name}"
|
bdb-instance-name: "${bdb_instance_name}"
|
||||||
|
|
||||||
|
# openresty-instance-name is the name of the OpenResty instance in this
|
||||||
|
# cluster.
|
||||||
|
openresty-instance-name: "openresty-instance-0"
|
||||||
|
|
||||||
# ngx-mdb-instance-name is the FQDN of the MongoDB instance in this
|
# ngx-mdb-instance-name is the FQDN of the MongoDB instance in this
|
||||||
# Kubernetes cluster.
|
# Kubernetes cluster.
|
||||||
ngx-mdb-instance-name: "${mdb_instance_name}.default.svc.cluster.local"
|
ngx-mdb-instance-name: "${mdb_instance_name}.default.svc.cluster.local"
|
||||||
@ -269,6 +273,10 @@ data:
|
|||||||
# Kubernetes cluster.
|
# Kubernetes cluster.
|
||||||
ngx-bdb-instance-name: "${bdb_instance_name}.default.svc.cluster.local"
|
ngx-bdb-instance-name: "${bdb_instance_name}.default.svc.cluster.local"
|
||||||
|
|
||||||
|
# ngx-openresty-instance-name is the FQDN of the OpenResty instance in this
|
||||||
|
# Kubernetes cluster.
|
||||||
|
ngx-openresty-instance-name: "openresty-instance-0.default.svc.cluster.local"
|
||||||
|
|
||||||
# mongodb-backend-port is the port on which MongoDB is actually
|
# mongodb-backend-port is the port on which MongoDB is actually
|
||||||
# available/listening for requests.
|
# available/listening for requests.
|
||||||
mongodb-backend-port: "27017"
|
mongodb-backend-port: "27017"
|
||||||
@ -386,7 +394,7 @@ data:
|
|||||||
# public key of the tendemrint node in this cluster.
|
# public key of the tendemrint node in this cluster.
|
||||||
tm-pub-key-access: "9986"
|
tm-pub-key-access: "9986"
|
||||||
|
|
||||||
---
|
---
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: ConfigMap
|
kind: ConfigMap
|
||||||
metadata:
|
metadata:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user