8000 Tags · Samaws1/kube-aws · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: Samaws1/kube-aws

Tags

v0.11.5

Toggle v0.11.5's commit message
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

v0.12.3

Toggle v0.12.3's commit message
Make cluster-autoscaler resource request/limit configurable (kubernet…

…es-retired#1556)

* make cluster autoscaler configurable

* Making autoscaler configurable

* Removing code that isn't required

v0.11.4

Toggle v0.11.4's commit message
Make cluster-autoscaler resource request/limit configurable (kubernet…

…es-retired#1554)

* make cluster autoscaler configurable
* Adding Compute resources struct
* Fixing broken tests

v0.12.2

Toggle v0.12.2's commit message
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

v0.11.3

Toggle v0.11.3's commit message
Adding the ability to add feature gates to controller components (kub…

…ernetes-retired#1545)

Ensure PodPriority is disabled if specified in the config

v0.12.1

Toggle v0.12.1's commit message
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.

v0.11.2

Toggle v0.11.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add DnsMasq (node local resolver) command-line arguments/options (kub…

…ernetes-retired#1528)

Small change confirmed through testing

v0.12.0

Toggle v0.12.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
hack: a bit more automated release note generation (kubernetes-retire…

…d#1476)

v0.11.1

Toggle v0.11.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
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

v0.11.0

Toggle v0.11.0's commit message
release: use go 1.10 also for releases

0