diff --git a/infrastructure/sandbox/PreProvisioner/lambda/deploy_terraform/fleet/templates/deployment.yaml b/infrastructure/sandbox/PreProvisioner/lambda/deploy_terraform/fleet/templates/deployment.yaml index b49a59631..de1738b42 100644 --- a/infrastructure/sandbox/PreProvisioner/lambda/deploy_terraform/fleet/templates/deployment.yaml +++ b/infrastructure/sandbox/PreProvisioner/lambda/deploy_terraform/fleet/templates/deployment.yaml @@ -34,6 +34,7 @@ spec: spec: containers: - name: {{ .Values.fleetName }} + imagePullPolicy: always command: [/usr/bin/fleet] args: ["serve"] image: fleetdm/fleet:{{ .Values.imageTag }} diff --git a/infrastructure/sandbox/PreProvisioner/lambda/deploy_terraform/fleet/templates/job-migration.yaml b/infrastructure/sandbox/PreProvisioner/lambda/deploy_terraform/fleet/templates/job-migration.yaml index a2c3f3e1e..d8ebd308c 100644 --- a/infrastructure/sandbox/PreProvisioner/lambda/deploy_terraform/fleet/templates/job-migration.yaml +++ b/infrastructure/sandbox/PreProvisioner/lambda/deploy_terraform/fleet/templates/job-migration.yaml @@ -28,6 +28,7 @@ spec: command: [/usr/bin/fleet] args: ["prepare","db","--no-prompt"] image: fleetdm/fleet:{{ .Values.imageTag }} + imagePullPolicy: always resources: limits: cpu: {{ .Values.resources.limits.cpu }} diff --git a/infrastructure/sandbox/PreProvisioner/lambda/deploy_terraform/main.tf b/infrastructure/sandbox/PreProvisioner/lambda/deploy_terraform/main.tf index a244d1620..76c1a9f85 100644 --- a/infrastructure/sandbox/PreProvisioner/lambda/deploy_terraform/main.tf +++ b/infrastructure/sandbox/PreProvisioner/lambda/deploy_terraform/main.tf @@ -150,7 +150,7 @@ resource "helm_release" "main" { set { name = "imageTag" - value = "v4.17.0" + value = "main" } }