1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-24 15:59:41 +02:00

feat(helm): filter on chart versions at API level [R8S-324] (#754)

This commit is contained in:
Cara Ryan 2025-05-27 15:20:28 +12:00 committed by GitHub
parent 07dfd981a2
commit 731afbee46
6 changed files with 159 additions and 56 deletions

View file

@ -3,6 +3,8 @@ package options
import "net/http"
type SearchRepoOptions struct {
Repo string `example:"https://charts.gitlab.io/"`
Client *http.Client `example:"&http.Client{Timeout: time.Second * 10}"`
Repo string `example:"https://charts.gitlab.io/"`
Client *http.Client `example:"&http.Client{Timeout: time.Second * 10}"`
Chart string `example:"my-chart"`
UseCache bool `example:"false"`
}