-
Notifications
You must be signed in to change notification settings - Fork 183
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Start pushing alpha helm chart releases with every alpha build #269
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
one question, rest lgtm
@@ -143,7 +143,7 @@ if [ -n "$DOCKER_PASSWORD" ] && [ -n "$TRAVIS_TAG" ] && [[ $TRAVIS_TAG != *alpha | |||
# Push new helm release | |||
git checkout -- . | |||
sudo helm init --client-only | |||
sudo helm package deploy/helm/sumologic --version=$VERSION | |||
sudo helm package deploy/helm/sumologic --version=$VERSION --app-version=$VERSION |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why do we need to change this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Helm seems to be doing this already, but it makes me nervous relying on that undocumented behavior that could change. So to be explicit I added this.
It's working well
I updated our helm_repo_url with the thanks @rvmiller89 |
@djsly I'll be deleting this |
@djsly we just set up the CI to generate an alpha helm chart release for every alpha build. They're hosted at the same URL as before (the /alpha URL will be going away soon). To use an alpha helm chart release (and alpha image), you can do:
The first version available is |
Perfect.
Thanks for the ends up.
… On Nov 1, 2019, at 4:36 PM, Ryan Miller ***@***.***> wrote:
@djsly we just set up the CI to generate an alpha helm chart release for every alpha build. They're hosted at the same URL as before (the /alpha URL will be going away soon).
To use an alpha helm chart release (and alpha image), you can do:
$ helm repo update
$ helm install sumologic/sumologic --name collection --namespace sumologic -f values.yaml --set=image.tag=0.10.10-alpha --version=0.10.10-alpha
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
@djsly just wanted to let you know we put together a small doc on the alpha releases, please let us know if you think of anything worth adding: https://github.com/SumoLogic/sumologic-kubernetes-collection/blob/master/deploy/docs/Alpha_Release_Guide.md |
I think it’s looking good.
One thing though. I’m using a alpha chart release with an official docker image. But I guess it’s simpler to ask users to always aligned since this is what you tested.
I just think that in some cases of a chart change only. A users might be interrelated in picking up the chart release only.
… On Nov 26, 2019, at 5:18 PM, Ryan Miller ***@***.***> wrote:
@djsly just wanted to let you know we put together a small doc on the alpha releases, please let us know if you think of anything worth adding: https://github.com/SumoLogic/sumologic-kubernetes-collection/blob/master/deploy/docs/Alpha_Release_Guide.md
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
Description
This will start generating alpha helm chart releases in our Github Pages-hosted chart: https://github.com/SumoLogic/sumologic-kubernetes-collection/tree/gh-pages
Will need to merge to test this on Travis CI
Testing performed