robin4679
robin4679
CCoder.com
Created by robin4679 on 3/27/2024 in #help
PV Permissions?
I also added storage_class_name = "local-storage" to the defualt K8s template's resource "kubernetes_persistent_volume_claim" "home" spec section - I guess fml for thinking I'm being smart.
5 replies
CCoder.com
Created by robin4679 on 3/27/2024 in #help
PV Permissions?
apiVersion: v1
kind: PersistentVolume
metadata:
name: coder-workspace-pv
labels:
type: local
spec:
storageClassName: local-storage
capacity:
storage: 10Gi
accessModes:
- ReadWriteOnce
hostPath:
path: "/home/coder"
apiVersion: v1
kind: PersistentVolume
metadata:
name: coder-workspace-pv
labels:
type: local
spec:
storageClassName: local-storage
capacity:
storage: 10Gi
accessModes:
- ReadWriteOnce
hostPath:
path: "/home/coder"
5 replies
CCoder.com
Created by robin4679 on 3/27/2024 in #help
PV Permissions?
for reference here is my PV config:
5 replies