diff --git a/k8s/deployments/techlanches-api-deployment.yaml b/k8s/deployments/techlanches-api-deployment.yaml index c1b32d65..35337452 100644 --- a/k8s/deployments/techlanches-api-deployment.yaml +++ b/k8s/deployments/techlanches-api-deployment.yaml @@ -17,6 +17,7 @@ spec: containers: - name: techlanches-api image: g124soat/techlanches-api:develop # usar latest quando for pra main + imagePullPolicy: Always ports: - containerPort: 80 resources: diff --git a/k8s/deployments/techlanches-sql-deployment.yaml b/k8s/deployments/techlanches-sql-deployment.yaml index 8d26fe35..d210fcf5 100644 --- a/k8s/deployments/techlanches-sql-deployment.yaml +++ b/k8s/deployments/techlanches-sql-deployment.yaml @@ -18,6 +18,7 @@ spec: containers: - name: sql-server image: mcr.microsoft.com/mssql/server:2019-latest + imagePullPolicy: Always ports: - containerPort: 1433 env: diff --git a/k8s/deployments/techlanches-worker-deployment.yaml b/k8s/deployments/techlanches-worker-deployment.yaml index e98777e6..12f81f8f 100644 --- a/k8s/deployments/techlanches-worker-deployment.yaml +++ b/k8s/deployments/techlanches-worker-deployment.yaml @@ -17,6 +17,7 @@ spec: containers: - name: techlanches-worker image: g124soat/techlanches-worker:develop # usar latest quando for pra main + imagePullPolicy: Always resources: requests: cpu: "500m"