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] (#747)

This commit is contained in:
Cara Ryan 2025-05-26 14:10:38 +12:00 committed by GitHub
parent b96328e098
commit a80b185e10
6 changed files with 153 additions and 51 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"`
}