Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions pkg/api/server/register_quadlets.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,15 +84,22 @@ func (s *APIServer) registerQuadletHandlers(r *mux.Router) error {
// summary: Install quadlet files
// description: |
// Install one or more files for a quadlet application. Each request should contain a single quadlet file
// and optionally more files such as containerfile, kube yaml or configuration files. Supports both tar
// archives and multipart form data uploads.
// and optionally more files such as containerfile, kube yaml or configuration files. When additional
// files are passed, the application query parameter should be specified. Supports both tar archives and
Comment thread
l0rd marked this conversation as resolved.
// multipart form data uploads.
// consumes:
// - application/x-tar
// - multipart/form-data
// produces:
// - application/json
// parameters:
// - in: query
// name: application
// type: string
// description: |
// Group quadlet and associated files in a directory with the application name.
// Required when additional files are passed.
// - in: query
// name: replace
// type: boolean
// default: false
Expand Down
Loading