-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
commands,pkg/scaffold,hack,pkg/helm: run and migrate command support for helm #897
commands,pkg/scaffold,hack,pkg/helm: run and migrate command support for helm #897
Conversation
…command support for helm
name = "github.com/operator-framework/operator-sdk" | ||
# The version rule is used for a specific release and the master branch for in between releases. | ||
branch = "master" #osdk_branch_annotation | ||
# version = "=v0.3.0" #osdk_version_annotation |
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.
I just remembered that we need to update this scaffold for each release as well now.
@joelanford Can you please update the release guide section for the version update as well.
We need to bump both pkg/scaffold/ansible/gopkgtoml.go
and this file pkg/scaffold/helm/gopkgtoml.go
@estroz We just need to add checks for these two files in the release.sh script to ensure the versions are set correctly at release time as well right? Similar to the existing checks:
https://github.com/operator-framework/operator-sdk/blob/master/release.sh#L38-L41
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.
@estroz scratch that. I just saw @joelanford already added the check for this file down in release.sh.
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.
LGTM after nit.
Description of the change:
Adding support for the
operator-sdk run helm
command andoperator-sdk migrate
command in the context of an existing helm operator (see #887 for similar work done for ansible)Motivation for the change:
See #860