summaryrefslogtreecommitdiff
path: root/pkg/api/handlers/ping.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-02-03 13:49:07 -0800
committerGitHub <noreply@github.com>2020-02-03 13:49:07 -0800
commit234e8382e59c566330e023fd11f4b590aa1129da (patch)
tree1f78b3b4d59f661947fc012de503622c44bb556e /pkg/api/handlers/ping.go
parent23f795786224c27f737e9043e9d513f54fa35ba8 (diff)
parent4d301c8c4f3301bc99a55752b387ef4f7be9de5f (diff)
downloadpodman-234e8382e59c566330e023fd11f4b590aa1129da.tar.gz
podman-234e8382e59c566330e023fd11f4b590aa1129da.tar.bz2
podman-234e8382e59c566330e023fd11f4b590aa1129da.zip
Merge pull request #5067 from jwhonce/wip/ping
[CI:DOCS] Update /_ping support
Diffstat (limited to 'pkg/api/handlers/ping.go')
-rw-r--r--pkg/api/handlers/ping.go30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkg/api/handlers/ping.go b/pkg/api/handlers/ping.go
new file mode 100644
index 000000000..d41da60f3
--- /dev/null
+++ b/pkg/api/handlers/ping.go
@@ -0,0 +1,30 @@
+package handlers
+
+import (
+ "fmt"
+ "net/http"
+
+ "github.com/containers/buildah"
+)
+
+// Ping returns headers to client about the service
+//
+// This handler must always be the same for the compatibility and libpod URL trees!
+// Clients will use the Header availability to test which backend engine is in use.
+func Ping(w http.ResponseWriter, r *http.Request) {
+ w.Header().Set("API-Version", DefaultApiVersion)
+ w.Header().Set("BuildKit-Version", "")
+ w.Header().Set("Docker-Experimental", "true")
+ w.Header().Set("Cache-Control", "no-cache")
+ w.Header().Set("Pragma", "no-cache")
+
+ // API-Version and Libpod-API-Version may not always be equal
+ w.Header().Set("Libpod-API-Version", DefaultApiVersion)
+ w.Header().Set("Libpod-Buildha-Version", buildah.Version)
+ w.WriteHeader(http.StatusOK)
+
+ if r.Method == http.MethodGet {
+ fmt.Fprint(w, "OK")
+ }
+ fmt.Fprint(w, "\n")
+}