File tree 2 files changed +12
-0
lines changed
2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
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
+
8
16
## [ 3.1.0] - 2020-04-01
9
17
10
18
### Updated
Original file line number Diff line number Diff line change @@ -333,6 +333,10 @@ resource "kubernetes_deployment" "this" {
333
333
}
334
334
}
335
335
336
+ strategy {
337
+ type = " Recreate"
338
+ }
339
+
336
340
template {
337
341
metadata {
338
342
labels = {
You can’t perform that action at this time.
0 commit comments