mirror of https://github.com/portainer/portainer
59 lines
2.4 KiB
Go
59 lines
2.4 KiB
Go
package helm
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/portainer/portainer/pkg/libhelm/options"
|
|
_ "github.com/portainer/portainer/pkg/libhelm/release"
|
|
httperror "github.com/portainer/portainer/pkg/libhttp/error"
|
|
"github.com/portainer/portainer/pkg/libhttp/request"
|
|
"github.com/portainer/portainer/pkg/libhttp/response"
|
|
)
|
|
|
|
// @id HelmGetHistory
|
|
// @summary Get a historical list of releases
|
|
// @description Get a historical list of releases by release name
|
|
// @description **Access policy**: authenticated
|
|
// @tags helm
|
|
// @security ApiKeyAuth || jwt
|
|
// @produce json
|
|
// @param id path int true "Environment(Endpoint) identifier"
|
|
// @param name path string true "Helm release name"
|
|
// @param namespace query string false "specify an optional namespace"
|
|
// @success 200 {array} release.Release "Success"
|
|
// @failure 400 "Invalid request payload, such as missing required fields or fields not meeting validation criteria."
|
|
// @failure 401 "Unauthorized access - the user is not authenticated or does not have the necessary permissions. Ensure that you have provided a valid API key or JWT token, and that you have the required permissions."
|
|
// @failure 403 "Permission denied - the user is authenticated but does not have the necessary permissions to access the requested resource or perform the specified operation. Check your user roles and permissions."
|
|
// @failure 404 "Unable to find an environment with the specified identifier."
|
|
// @failure 500 "Server error occurred while attempting to retrieve the historical list of releases."
|
|
// @router /endpoints/{id}/kubernetes/helm/{release}/history [get]
|
|
func (handler *Handler) helmGetHistory(w http.ResponseWriter, r *http.Request) *httperror.HandlerError {
|
|
release, err := request.RetrieveRouteVariableValue(r, "release")
|
|
if err != nil {
|
|
return httperror.BadRequest("No release specified", err)
|
|
}
|
|
|
|
clusterAccess, httperr := handler.getHelmClusterAccess(r)
|
|
if httperr != nil {
|
|
return httperr
|
|
}
|
|
|
|
historyOptions := options.HistoryOptions{
|
|
KubernetesClusterAccess: clusterAccess,
|
|
Name: release,
|
|
}
|
|
|
|
// optional namespace. The library defaults to "default"
|
|
namespace, _ := request.RetrieveQueryParameter(r, "namespace", true)
|
|
if namespace != "" {
|
|
historyOptions.Namespace = namespace
|
|
}
|
|
|
|
releases, err := handler.helmPackageManager.GetHistory(historyOptions)
|
|
if err != nil {
|
|
return httperror.InternalServerError("Helm returned an error", err)
|
|
}
|
|
|
|
return response.JSON(w, releases)
|
|
}
|