mirror of
https://github.com/planetmint/planetmint.git
synced 2025-03-30 15:08:31 +00:00
37 lines
1.5 KiB
YAML
37 lines
1.5 KiB
YAML
# Copyright © 2020 Interplanetary Database Association e.V.,
|
|
# Planetmint and IPDB software contributors.
|
|
# SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0)
|
|
# Code is Apache-2.0 and docs are CC-BY-4.0
|
|
|
|
####################################################################
|
|
# 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: <Storage account location>
|
|
# 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: <Storage account location>
|
|
# 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
|