Skip to content

Commit

Permalink
added release-notes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Sami Alajrami committed Nov 25, 2017
1 parent 24b0920 commit eb59aab
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .circleci/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ if [ $? -eq 0 ]; then
rm hello.world hello.world1 helmsman
git clean -fd
echo "releasing ..."
goreleaser | tee /dev/tty | grep -o "error"
goreleaser --release-notes release_notes.md | tee /dev/tty | grep -o "error"
if [ $? -eq 0 ]; then
echo "goreleaser experienced an error and no new releases made. That is Ok!"
else
Expand Down
7 changes: 7 additions & 0 deletions release-notes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# v0.1.3

- Bug fixes.
- Support for passing user input values to charts from environment variables. Such values either override values from values.yaml or add to them. This is particularily useful for passing secrets from environment variables to helm charts.
- Tests no longer run on upgrade and rollback operations. This is because some charts does not use unique generated names for the tests and Helm does not manage the tests. In some cases, tests would fail due to having k8s resources with the same names existing from a previous run.
- Support for use of certificates and keys for cluster connection from the local file system. YOU SHOULD NEVER commit your certificates to git! This update is useful while testing on a local machine.
- The key 'env' for release namespaces in the desired state file is now changed to the more sensible 'namespace'.

0 comments on commit eb59aab

Please sign in to comment.