@@ -137,7 +137,7 @@ func StatefulSet(
137137 }
138138
139139 centralAgentContainer := corev1.Container {
140- ImagePullPolicy : corev1 .PullAlways ,
140+ ImagePullPolicy : corev1 .PullIfNotPresent ,
141141 Command : []string {
142142 "/bin/bash" ,
143143 },
@@ -149,7 +149,7 @@ func StatefulSet(
149149 LivenessProbe : centralLivenessProbe ,
150150 }
151151 notificationAgentContainer := corev1.Container {
152- ImagePullPolicy : corev1 .PullAlways ,
152+ ImagePullPolicy : corev1 .PullIfNotPresent ,
153153 Command : []string {
154154 "/bin/bash" ,
155155 },
@@ -161,7 +161,7 @@ func StatefulSet(
161161 LivenessProbe : notificationLivenessProbe ,
162162 }
163163 sgCoreContainer := corev1.Container {
164- ImagePullPolicy : corev1 .PullAlways ,
164+ ImagePullPolicy : corev1 .PullIfNotPresent ,
165165 Image : instance .Spec .SgCoreImage ,
166166 Name : "sg-core" ,
167167 VolumeMounts : getSgCoreVolumeMounts (),
@@ -175,7 +175,7 @@ func StatefulSet(
175175 },
176176 }
177177 proxyContainer := corev1.Container {
178- ImagePullPolicy : corev1 .PullAlways ,
178+ ImagePullPolicy : corev1 .PullIfNotPresent ,
179179 Image : instance .Spec .ProxyImage ,
180180 Name : "proxy-httpd" ,
181181 Ports : []corev1.ContainerPort {{
0 commit comments