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.pull/74/head
parent
0822afe0b3
commit
32132842be
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue