Skip to content

Commit e191954

Browse files
committed
Changed default pullPolicy "Always" to "IfNotPresent", as public Docker-Registry introduced RateLimiting
1 parent c2e767c commit e191954

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Changelog
22

33
## In Development
4+
* Change pullPolicy to "IfNotPresent", as Docker-Hub Ratelimits now (#159) (by @moonrail)
45

56

67
## v0.32.0

values.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
## Docker image settings, applied to all StackStorm pods
66
##
77
image:
8-
# Image pull policy. Change to "IfNotPresent" when switching to stable images
9-
pullPolicy: Always
8+
# Image pull policy
9+
pullPolicy: IfNotPresent
1010
# st2 image repository. Set this to override the default ("stackstorm") or enterprise
1111
# docker image repository ("docker.stackstorm.com"). Applies to all st2 containers except
1212
# st2chatops and st2packs (which have their own override). This also does not impact
@@ -99,7 +99,7 @@ st2:
9999
#repository: your-remote-docker-registry.io
100100
name: st2packs
101101
tag: latest
102-
pullPolicy: Always
102+
pullPolicy: IfNotPresent
103103
# Optional name of the imagePullSecret if your custom packs image is hosted by a private Docker registry behind the auth
104104
#pullSecret: st2packs-auth
105105

@@ -403,7 +403,7 @@ st2chatops:
403403
#name: st2chatops
404404
## Note that Helm templating is supported in this block!
405405
#tag: "{{ .Chart.AppVersion }}"
406-
#pullPolicy: Always
406+
#pullPolicy: IfNotPresent
407407
# Tested requested resource consumption for st2chatops & hubot in normal mode
408408
# Please adjust based on your conscious choice
409409
resources:

0 commit comments

Comments
 (0)