Files
nomad/command/agent/task_group_host_volume_claim_endpoint.go
Piotr Kazmierczak 73a193f6d9 stateful deployments: task group host volume claims CLI (#25116)
CLI for interacting with task group host volume claims.
2025-02-27 17:04:48 +01:00

65 lines
1.9 KiB
Go

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package agent
import (
"net/http"
"strings"
"github.com/hashicorp/nomad/nomad/structs"
)
func (s *HTTPServer) TaskGroupHostVolumeClaimRequest(resp http.ResponseWriter, req *http.Request) (any, error) {
// Tokenize the suffix of the path to get the volume id, tolerating a
// present or missing trailing slash
reqSuffix := strings.TrimPrefix(req.URL.Path, "/v1/volumes/claim/")
tokens := strings.FieldsFunc(reqSuffix, func(c rune) bool { return c == '/' })
if len(tokens) == 0 {
return nil, CodedError(404, resourceNotFoundErr)
}
switch req.Method {
// DELETE /v1/volume/claim/:id
case http.MethodDelete:
return s.taskGroupHostVolumeClaimDelete(tokens[0], resp, req)
default:
return nil, CodedError(405, ErrInvalidMethod)
}
}
func (s *HTTPServer) TaskGroupHostVolumeClaimListRequest(resp http.ResponseWriter, req *http.Request) (any, error) {
args := structs.TaskGroupVolumeClaimListRequest{}
if s.parse(resp, req, &args.Region, &args.QueryOptions) {
return nil, nil
}
query := req.URL.Query()
args.Prefix = query.Get("prefix")
args.JobID = query.Get("job_id")
args.TaskGroup = query.Get("task_group")
args.VolumeName = query.Get("volume_name")
var out structs.TaskGroupVolumeClaimListResponse
if err := s.agent.RPC(structs.TaskGroupHostVolumeClaimListRPCMethod, &args, &out); err != nil {
return nil, err
}
setMeta(resp, &out.QueryMeta)
return out.Claims, nil
}
func (s *HTTPServer) taskGroupHostVolumeClaimDelete(id string, resp http.ResponseWriter, req *http.Request) (any, error) {
args := structs.TaskGroupVolumeClaimDeleteRequest{ClaimID: id}
s.parseWriteRequest(req, &args.WriteRequest)
var out structs.TaskGroupVolumeClaimDeleteResponse
if err := s.agent.RPC(structs.TaskGroupHostVolumeClaimDeleteRPCMethod, &args, &out); err != nil {
return nil, err
}
setIndex(resp, out.Index)
return nil, nil
}