Skip to content

Commit

Permalink
persistent volume claim
Browse files Browse the repository at this point in the history
  • Loading branch information
ChromaticPanic committed Nov 20, 2024
1 parent 0dec965 commit 21d827f
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions kubernetes/aks/apps/nachet/base/nachet-rcnn-model-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,20 @@ spec:
- ALL
volumes:
- name: tmp
emptyDir: {}

persistentVolumeClaim:
claimName: nachet-tmp-pvc
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: nachet-tmp-pvc
spec:
storageClassName: azurefile
accessModes:
- ReadWriteMany
resources:
requests:
storage: 2Gi
---
apiVersion: policy/v1
kind: PodDisruptionBudget
Expand Down

0 comments on commit 21d827f

Please sign in to comment.