Skip to content

Commit aff8309

Browse files
committed
Set update strategy to 'Recreate'.
Fixes #6
1 parent a4893e2 commit aff8309

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [3.1.1] - 2020-04-15
9+
10+
### Fixes
11+
12+
- The update strategy of pods within the Kubernetes deployment has been set to `Recreate`.
13+
This should fix "stuck" updates.
14+
([#6](https://github.com/iplabs/terraform-kubernetes-alb-ingress-controller/issues/6))
15+
816
## [3.1.0] - 2020-04-01
917

1018
### Updated

main.tf

+4
Original file line numberDiff line numberDiff line change
@@ -333,6 +333,10 @@ resource "kubernetes_deployment" "this" {
333333
}
334334
}
335335

336+
strategy {
337+
type = "Recreate"
338+
}
339+
336340
template {
337341
metadata {
338342
labels = {

0 commit comments

Comments
 (0)