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

- Update existing docker-containers to support tendermint integration, nginx, mongodb, bigchaindb - Add tendermint configuration files for statefulset, pvc, pv and service. - Update some READMEs.
32 lines
1.3 KiB
YAML
32 lines
1.3 KiB
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: Premium_LRS #[Premium_LRS, Standard_LRS]
|
|
location: westeurope
|
|
# If you have created a different storage account e.g. for Premium Storage
|
|
#storageAccount: <Storage account name>
|
|
# Use Managed Disk(s) with VMs using Managed Disks(Only used for Tectonic deployment)
|
|
#kind: Managed
|
|
---
|
|
######################################################################
|
|
# 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: Premium_LRS #[Premium_LRS, Standard_LRS]
|
|
location: westeurope
|
|
# If you have created a different storage account e.g. for Premium Storage
|
|
#storageAccount: <Storage account name>
|
|
# Use Managed Disk(s) with VMs using Managed Disks(Only used for Tectonic deployment)
|
|
#kind: Managed
|