firefly-iii: Set imagePullPolicy: IfNotPresent

We don't want to pull public container images that already exist.  This
creates prevents pods from starting if there is any connectivity issue
with the upstream registry.
This commit is contained in:
2025-07-21 15:04:03 -05:00
parent 0822afe0b3
commit 32132842be

View File

@@ -66,6 +66,7 @@ spec:
containers: containers:
- name: firefly-iii - name: firefly-iii
image: docker.io/fireflyiii/core:version-6.0.19 image: docker.io/fireflyiii/core:version-6.0.19
imagePullPolicy: IfNotPresent
envFrom: envFrom:
- configMapRef: - configMapRef:
name: firefly-iii name: firefly-iii
@@ -127,6 +128,7 @@ spec:
spec: spec:
containers: containers:
- image: docker.io/library/busybox - image: docker.io/library/busybox
imagePullPolicy: IfNotPresent
name: wget name: wget
command: command:
- wget - wget