You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

15 lines
419 B

# PersistentVolumeClaim for tenant repositories
# Each tenant gets their own volume for complete isolation
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: gitrepublic-repos
namespace: gitrepublic-tenant-${TENANT_ID}
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 100Gi # Adjust per tenant needs
storageClassName: ${STORAGE_CLASS} # e.g., "fast-ssd" or "standard"