1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
//go:build !remote
package server
import (
"net/http"
"github.com/containers/podman/v5/pkg/api/handlers/compat"
"github.com/gorilla/mux"
)
func (s *APIServer) registerPingHandlers(r *mux.Router) error {
r.Handle("/_ping", s.APIHandler(compat.Ping)).Methods(http.MethodGet, http.MethodHead)
r.Handle(VersionedPath("/_ping"), s.APIHandler(compat.Ping)).Methods(http.MethodGet, http.MethodHead)
// swagger:operation GET /libpod/_ping libpod SystemPing
// ---
// summary: Ping service
// description: |
// Return protocol information in response headers.
// `HEAD /libpod/_ping` is also supported.
// `/_ping` is available for compatibility with other engines.
// The '_ping' endpoints are not versioned.
// tags:
// - system (compat)
// - system
// produces:
// - text/plain
// responses:
// 200:
// description: Success
// schema:
// description: OK
// type: string
// example: "OK"
// headers:
// API-Version:
// type: string
// description: Max compatibility API Version the server supports
// BuildKit-Version:
// type: string
// description: Default version of docker image builder
// Docker-Experimental:
// type: boolean
// description: If the server is running with experimental mode enabled, always true
// Cache-Control:
// type: string
// description: always no-cache
// Pragma:
// type: string
// description: always no-cache
// Libpod-API-Version:
// type: string
// description: |
// Max Podman API Version the server supports.
// Available if service is backed by Podman, therefore may be used to
// determine if talking to Podman engine or another engine
// Libpod-Buildah-Version:
// type: string
// description: |
// Default version of libpod image builder.
// Available if service is backed by Podman, therefore may be used to
// determine if talking to Podman engine or another engine
// 500:
// $ref: "#/responses/internalError"
r.Handle("/libpod/_ping", s.APIHandler(compat.Ping)).Methods(http.MethodGet, http.MethodHead)
r.Handle(VersionedPath("/libpod/_ping"), s.APIHandler(compat.Ping)).Methods(http.MethodGet, http.MethodHead)
return nil
}
|