You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Capture failures in decrypting assets (kubernetes-retired#1569)
"set -e" will capture when a line of code fails. However, for a
pipeline such as "false | true", it will only handle the exit code
of the last command. In this case, the exit code will always be 0.
"set -o pipefail" will ensure that any failure in the pipeline results
in the whole line failing, which will then be handled correctly by
"set -e"
For example:
$ set +o pipefail ; false | true ; echo $?
0
$ set -o pipefail ; false | true ; echo $?
1
Adding the ability to add feature gates to controller components (kub……ernetes-retired#1544)
Ensure PodPriority is not enabled unless explicitly enabled on cluster.yaml
fix: Partial upgrades with stack name overrides (kubernetes-retired#1524)
kubernetes-retired#1487 introduced a
bug when doing a partial stack upgrade with a stack name override.
This is fixed by using the actual stack name in operation targets
instead of the hard coded constants.
Merge pull request kubernetes-retired#1474 from HotelsDotCom/allow-st…
…rict-name-and-kubeaws-managed
0.11.x Branch : Allow user control over controller.iam.role.name