mirror of
https://github.com/dredx/prole.git
synced 2026-09-24 13:14:32 +00:00
14 lines
477 B
YAML
14 lines
477 B
YAML
# GCP pd-standard (HDD) StorageClass for Garage on GKE Autopilot.
|
|
# Uses pd-standard (spinning disk) which draws from the HDD quota, NOT SSD_TOTAL_GB.
|
|
# Suitable for Garage object-store data which is throughput-oriented, not latency-critical.
|
|
apiVersion: storage.k8s.io/v1
|
|
kind: StorageClass
|
|
metadata:
|
|
name: garage-hdd
|
|
provisioner: pd.csi.storage.gke.io
|
|
parameters:
|
|
type: pd-standard
|
|
reclaimPolicy: Retain
|
|
volumeBindingMode: WaitForFirstConsumer
|
|
allowVolumeExpansion: true
|