modified: deploy/app/deployment.yaml

new file:   deploy/app/image-policy.yaml
new file:   deploy/app/image-repo.yaml
new file:   deploy/app/image-update-automation.yaml
modified:   deploy/app/kustomization.yaml
This commit is contained in:
Márcio Fernandes
2026-07-11 21:41:26 +00:00
parent 5ab4747651
commit 42a4861cc4
5 changed files with 50 additions and 1 deletions
+3 -1
View File
@@ -14,7 +14,9 @@ spec:
spec:
containers:
- name: jellyfin
image: jellyfin/jellyfin
### Maintained by flux - Image Update Automation
image: jellyfin/jellyfin:latest # {"$imagepolicy": "jellyfin:jellyfin"}
###
ports:
- containerPort: 7359
- containerPort: 8096
+13
View File
@@ -0,0 +1,13 @@
apiVersion: image.toolkit.fluxcd.io/v1
kind: ImagePolicy
metadata:
name: jellyfin/jellyfin
spec:
imageRepositoryRef:
name: jellyfin/jellyfin
filterTags:
pattern: '^latest$'
policy:
alphabetical: {}
digestReflectionPolicy: Always
interval: 24h
+7
View File
@@ -0,0 +1,7 @@
apiVersion: image.toolkit.fluxcd.io/v1
kind: ImageRepository
metadata:
name: jellyfin/jellyfin
spec:
image: jellyfin/jellyfin
interval: 72h
+24
View File
@@ -0,0 +1,24 @@
apiVersion: image.toolkit.fluxcd.io/v1
kind: ImageUpdateAutomation
metadata:
name: jellyfin
spec:
interval: 72h
sourceRef:
kind: GitRepository
name: jellyfin
git:
checkout:
ref:
branch: main
commit:
author:
name: FluxCD
email: flux@local
messageTemplate: |
Update jellyfin image.
push:
branch: main
update:
path: ./deploy/app/deployment.yaml
strategy: Setters
+3
View File
@@ -9,3 +9,6 @@ resources:
- volumes.tv-shows.yaml
- volumes.movies.yaml
- volumes.app-data.yaml
- image-repo.yaml
- image-policy.yaml
- image-update-automation.yaml