Move to tiller 2.12.1

Tiller 2.12 [0] adds:

- kubernetes 1.11 support
- fix for a concurrency issue [1]

[0]: https://github.com/helm/helm/releases/tag/v2.12.0
[1]: https://github.com/helm/helm/pull/4828

Change-Id: I99ddd9d105b81177d3b7e5691afebbcca97c119f
This commit is contained in:
Sean Eagan 2019-01-11 10:38:33 -06:00
parent dd75474d78
commit e6f294bacb
3 changed files with 51 additions and 47 deletions

View File

@ -35,7 +35,7 @@ from armada.handlers.k8s import K8s
from armada.handlers import test
from armada.utils.release import label_selectors, get_release_status
TILLER_VERSION = b'2.10.0'
TILLER_VERSION = b'2.12.1'
GRPC_EPSILON = 60
LIST_RELEASES_PAGE_SIZE = 32
LIST_RELEASES_ATTEMPTS = 3

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
#!/usr/bin/env bash
HELM_BRANCH='release-2.10'
HELM_BRANCH='release-2.12'
git clone https://github.com/helm/helm ./helm -b $HELM_BRANCH