Skip to content

Commit

Permalink
Update changelog and version for 0.35.3 release
Browse files Browse the repository at this point in the history
Also update release engineering script to install helm.

Co-authored-by: Flynn <[email protected]>
  • Loading branch information
concaf and Flynn committed Jul 18, 2018
1 parent 7fe7979 commit 8ecabbe
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 1 deletion.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,24 @@

- The `statsd` container is likely to be dropped from our default published YAML soon. If you rely on the `statsd` container, consider switching now to local YAML.

## [0.35.3] July 18, 2018: **READ THE WARNING ABOVE**
[0.35.3]: https://github.com/datawire/ambassador/compare/0.35.2...0.35.3

### Changed

Major changes:
- Ambassador is now based on Envoy v1.7.0
- Support for X-FORWARDED-PROTO based redirection, generally used with Layer 7 load balancers
- Support for port based redirection using `redirect_cleartext_from`, generally used with Layer 4 load balancers
- Specifying HTTP and HTTPS target ports in Helm chart

Other changes:
- End-to-end tests can now be run with `make e2e` command
- Helm release automation has been fixed
- Mutliple end-to-end tests are now executed in parallel, taking lesser time
- Huge revamp to documentation around unit tests
- Documentation changes

## [0.35.2] July 5, 2018: **READ THE WARNING ABOVE**
[0.35.2]: https://github.com/datawire/ambassador/compare/0.35.1...0.35.2

Expand Down
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,7 @@ website: website-yaml

helm:
echo "Helm version $(VERSION)"
helm init --client-only
cd helm && helm package --app-version "$(VERSION)" --version "$(VERSION)" ambassador/
curl -o tmp.yaml -k -L https://getambassador.io/helm/index.yaml
helm repo index helm --url https://www.getambassador.io --merge tmp.yaml
Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ <h1 class="text-blue text-uppercase text-xl">Ambassador</h1>
</div>
<div class="text-center text-md text-black">
<div class="version-number">
0.35.2
0.35.3
</div>
<div>
<!-- <strong class="font-bold ">Ambassador 0.33 correctly supports <a href="reference/shadowing">shadowing</a></strong> -->
Expand Down
7 changes: 7 additions & 0 deletions releng/travis-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,10 @@ mv kubectl ~/bin/kubectl
pip install -q -r dev-requirements.txt
pip install -q -r ambassador/requirements.txt
npm install gitbook-cli netlify-cli

if [[ `which helm` == "" ]]; then
curl https://storage.googleapis.com/kubernetes-helm/helm-v2.9.1-linux-amd64.tar.gz | tar xz
chmod +x linux-amd64/helm
sudo mv linux-amd64/helm /usr/local/bin/
rm -rf linux-amd64
fi

0 comments on commit 8ecabbe

Please sign in to comment.