Compare commits
No commits in common. "49674f032f3c11855b76405c1ac3764468b61591" and "3628e800154792cdaebbb8a3474c817471e4c9ad" have entirely different histories.
49674f032f
...
3628e80015
3 changed files with 16 additions and 11 deletions
|
@ -5,3 +5,4 @@ kind: Kustomization
|
|||
namespace: default
|
||||
resources:
|
||||
- ./helmrelease.yaml
|
||||
- ./pvc.yaml
|
||||
|
|
15
kubernetes/apps/default/jellyfin/app/pvc.yaml
Normal file
15
kubernetes/apps/default/jellyfin/app/pvc.yaml
Normal file
|
@ -0,0 +1,15 @@
|
|||
---
|
||||
apiVersion: v1
|
||||
kind: PersistentVolumeClaim
|
||||
metadata:
|
||||
name: media
|
||||
namespace: default
|
||||
spec:
|
||||
accessModes:
|
||||
- ReadWriteOnce
|
||||
|
||||
resources:
|
||||
requests:
|
||||
storage: 20Gi
|
||||
|
||||
storageClassName: ceph-block
|
|
@ -1,11 +0,0 @@
|
|||
---
|
||||
# yaml-language-server: $schema=https://raw.githubusercontent.com/fluxcd-community/flux2-schemas/main/helmrepository-source-v1beta2.json
|
||||
apiVersion: source.toolkit.fluxcd.io/v1beta2
|
||||
kind: HelmRepository
|
||||
metadata:
|
||||
name: nvdp
|
||||
namespace: flux-system
|
||||
spec:
|
||||
interval: 30m
|
||||
url: https://nvidia.github.io/k8s-device-plugin
|
||||
timeout: 3m
|
Loading…
Reference in a new issue