Always pull latest image in k8s builds
This commit is contained in:
parent
401143484e
commit
2a1cf2bfd1
1 changed files with 1 additions and 1 deletions
|
@ -370,7 +370,7 @@ class KubernetesExecutor(BuilderExecutor):
|
||||||
'containers': [
|
'containers': [
|
||||||
{
|
{
|
||||||
'name': 'builder',
|
'name': 'builder',
|
||||||
'imagePullPolicy': 'IfNotPresent',
|
'imagePullPolicy': 'Always',
|
||||||
'image': self.image,
|
'image': self.image,
|
||||||
'securityContext': {'privileged': True},
|
'securityContext': {'privileged': True},
|
||||||
'env': [
|
'env': [
|
||||||
|
|
Reference in a new issue