Merge pull request #2091 from coreos-inc/k8s-image-pull
Set imagePullPolicy to IfNotPresent for k8s builder
This commit is contained in:
commit
22c4721ee0
1 changed files with 1 additions and 1 deletions
|
@ -404,7 +404,7 @@ class KubernetesExecutor(BuilderExecutor):
|
||||||
'containers': [
|
'containers': [
|
||||||
{
|
{
|
||||||
'name': 'builder',
|
'name': 'builder',
|
||||||
'imagePullPolicy': 'Always',
|
'imagePullPolicy': 'IfNotPresent',
|
||||||
'image': self.image,
|
'image': self.image,
|
||||||
'securityContext': {'privileged': True},
|
'securityContext': {'privileged': True},
|
||||||
'env': [
|
'env': [
|
||||||
|
|
Reference in a new issue