mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00

* Combining configs * Combining the persistent volume claims into a single file. * Combining the storage classes into a single file. * Updating documentation * Multiple changes * Support for ConfigMap * Custom MongoDB container for BigchainDB * Update documentation to run a single node on k8s * Additional documentation * Documentation to add a node to an existing BigchainDB cluster * Commit on rolling upgrades * Fixing minor documentation mistakes * Documentation updates as per @ttmc's comments * Block formatting error * Change in ConfigMap yaml config
24 lines
786 B
YAML
24 lines
786 B
YAML
####################################################################
|
|
# This YAML section desribes a StorageClass for the mongodb dbPath #
|
|
####################################################################
|
|
kind: StorageClass
|
|
apiVersion: storage.k8s.io/v1beta1
|
|
metadata:
|
|
name: slow-db
|
|
provisioner: kubernetes.io/azure-disk
|
|
parameters:
|
|
skuName: Standard_LRS
|
|
location: westeurope
|
|
---
|
|
######################################################################
|
|
# This YAML section desribes a StorageClass for the mongodb configDB #
|
|
######################################################################
|
|
kind: StorageClass
|
|
apiVersion: storage.k8s.io/v1beta1
|
|
metadata:
|
|
name: slow-configdb
|
|
provisioner: kubernetes.io/azure-disk
|
|
parameters:
|
|
skuName: Standard_LRS
|
|
location: westeurope
|