Skip to content

Commit

Permalink
test pvc on logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh Lagrimas committed Sep 26, 2023
1 parent ffe3bc4 commit aa195db
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
6 changes: 5 additions & 1 deletion k8chart/templates/oxo2-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,8 @@ spec:
- configMapRef:
name: oxo2-env
command: ["/bin/bash", "-c"]
args: ["/opt/oxo2/entrypoint.dockersh"]
args: ["/opt/oxo2/entrypoint.dockersh"]
volumes:
- name: log
persistentVolumeClaim:
claimName: oxo2-logs
12 changes: 12 additions & 0 deletions k8chart/templates/oxo2-pvc.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: oxo2-logs
namespace: ontotools
spec:
storageClassName: standard-nfs-production
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 5Gi

0 comments on commit aa195db

Please sign in to comment.