-
Notifications
You must be signed in to change notification settings - Fork 2
Use /v1/charts/list
in CLI
#1943
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
Conversation
3433af0
to
9344919
Compare
cd85130
to
c3de052
Compare
c3de052
to
31ede5c
Compare
@@ -773,6 +773,7 @@ message RepositoryChart { | |||
// This is the available versions in reverse semver order. | |||
repeated string versions = 2; | |||
string layer = 3; | |||
RepositoryRef repository = 4; |
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.
Don't need this I don't think?
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 added it at first because it was needed in add.go when calling GetProfile
🤔
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.
Gotcha! Yeah I stripped that bit actually 👍
pkg/services/profiles/add.go
Outdated
@@ -38,7 +38,13 @@ func (s *ProfilesSvc) Add(ctx context.Context, r ProfilesRetriever, gitProvider | |||
return fmt.Errorf("failed to get default branch: %w", err) | |||
} | |||
|
|||
helmRepo, version, err := s.discoverHelmRepository(ctx, r, GetOptions{ | |||
// FIXME: should come from flags |
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.
Lets add some flags to fix this too!
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.
🔥 !
Closes #1907
What changed?
Why was this change made?
How was this change implemented?
How did you validate the change?
Release notes
Documentation Changes