I have tried using the website version.
It works great with deployment.yaml and service.yaml but it can not validate PV and PVC
Here is an example I tried
apiVersion: v1
kind: PersistentVolume
metadata:
name: example-pv
spec:
capacity:
storage: 10Gi
accessModes:
- ReadWriteOnce
persistentVolumeReclaimPolicy: Retain
storageClassName: manual
hostPath:
path: /mnt/data
and
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: example-pvc
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 5Gi
storageClassName: manual
Are those resources not supported?
I have tried using the website version.
It works great with
deployment.yamlandservice.yamlbut it can not validate PV and PVCHere is an example I tried
and
Are those resources not supported?